2016-12-28 16:49:51 -06:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-02 17:00:10 -06:00
|
|
|
import it from '../../../it';
|
|
|
|
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
|
|
|
*/
|
|
|
|
module.exports = (params, user) =>
|
2017-02-27 01:50:36 -06:00
|
|
|
new Promise(async (res, rej) => {
|
|
|
|
// Get 'post_id' parameter
|
2017-03-02 17:00:10 -06:00
|
|
|
const [postId, postIdErr] = it(params.post_id, 'id', true);
|
|
|
|
if (postIdErr) return rej('invalid post_id param');
|
2017-02-27 01:50:36 -06:00
|
|
|
|
|
|
|
// Get favoritee
|
|
|
|
const post = await Post.findOne({
|
2017-03-02 17:06:34 -06:00
|
|
|
_id: postId
|
2017-02-27 01:50:36 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
if (post === null) {
|
|
|
|
return rej('post not found');
|
|
|
|
}
|
|
|
|
|
2017-02-27 02:44:31 -06:00
|
|
|
// if already favorited
|
2017-02-27 01:50:36 -06:00
|
|
|
const exist = await Favorite.findOne({
|
|
|
|
post_id: post._id,
|
|
|
|
user_id: user._id
|
|
|
|
});
|
|
|
|
|
|
|
|
if (exist === null) {
|
|
|
|
return rej('already not favorited');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete favorite
|
|
|
|
await Favorite.deleteOne({
|
|
|
|
_id: exist._id
|
|
|
|
});
|
|
|
|
|
|
|
|
// Send response
|
|
|
|
res();
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|