2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-08 12:50:09 -06:00
|
|
|
import $ from 'cafy';
|
2017-03-02 17:00:10 -06:00
|
|
|
import Favorite from '../../../models/favorite';
|
|
|
|
import Post from '../../../models/post';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unfavorite a post
|
|
|
|
*
|
2017-03-01 02:37:01 -06:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
2016-12-28 16:49:51 -06:00
|
|
|
*/
|
2017-03-03 13:28:38 -06:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
2018-03-29 00:48:47 -05:00
|
|
|
// Get 'postId' parameter
|
|
|
|
const [postId, postIdErr] = $(params.postId).id().$;
|
|
|
|
if (postIdErr) return rej('invalid postId param');
|
2017-03-03 13:28:38 -06:00
|
|
|
|
|
|
|
// Get favoritee
|
|
|
|
const post = await Post.findOne({
|
|
|
|
_id: postId
|
|
|
|
});
|
2017-02-27 01:50:36 -06:00
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
if (post === null) {
|
|
|
|
return rej('post not found');
|
|
|
|
}
|
2017-02-27 01:50:36 -06:00
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
// if already favorited
|
|
|
|
const exist = await Favorite.findOne({
|
2018-03-29 00:48:47 -05:00
|
|
|
postId: post._id,
|
|
|
|
userId: user._id
|
2017-03-03 13:28:38 -06:00
|
|
|
});
|
2017-02-27 01:50:36 -06:00
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
if (exist === null) {
|
|
|
|
return rej('already not favorited');
|
|
|
|
}
|
2017-02-27 01:50:36 -06:00
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
// Delete favorite
|
2018-03-29 00:48:47 -05:00
|
|
|
await Favorite.remove({
|
2017-03-03 13:28:38 -06:00
|
|
|
_id: exist._id
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
2017-03-03 13:28:38 -06:00
|
|
|
|
|
|
|
// Send response
|
|
|
|
res();
|
|
|
|
});
|