2016-12-29 00:49:51 +02:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-03 01:00:10 +02:00
|
|
|
import it from '../../../it';
|
|
|
|
import Favorite from '../../../models/favorite';
|
|
|
|
import Post from '../../../models/post';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Favorite a post
|
|
|
|
*
|
2017-03-01 10:37:01 +02:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
2016-12-29 00:49:51 +02:00
|
|
|
*/
|
2017-03-03 21:28:38 +02:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
|
|
|
// Get 'post_id' parameter
|
|
|
|
const [postId, postIdErr] = it(params.post_id, 'id', true);
|
|
|
|
if (postIdErr) return rej('invalid post_id param');
|
|
|
|
|
|
|
|
// Get favoritee
|
|
|
|
const post = await Post.findOne({
|
|
|
|
_id: postId
|
|
|
|
});
|
2017-02-27 09:50:36 +02:00
|
|
|
|
2017-03-03 21:28:38 +02:00
|
|
|
if (post === null) {
|
|
|
|
return rej('post not found');
|
|
|
|
}
|
2017-02-27 09:50:36 +02:00
|
|
|
|
2017-03-03 21:28:38 +02:00
|
|
|
// if already favorited
|
|
|
|
const exist = await Favorite.findOne({
|
|
|
|
post_id: post._id,
|
|
|
|
user_id: user._id
|
|
|
|
});
|
2017-02-27 09:50:36 +02:00
|
|
|
|
2017-03-03 21:28:38 +02:00
|
|
|
if (exist !== null) {
|
|
|
|
return rej('already favorited');
|
|
|
|
}
|
2017-02-27 09:50:36 +02:00
|
|
|
|
2017-03-03 21:28:38 +02:00
|
|
|
// Create favorite
|
|
|
|
await Favorite.insert({
|
|
|
|
created_at: new Date(),
|
|
|
|
post_id: post._id,
|
|
|
|
user_id: user._id
|
2016-12-29 00:49:51 +02:00
|
|
|
});
|
2017-03-03 21:28:38 +02:00
|
|
|
|
|
|
|
// Send response
|
|
|
|
res();
|
|
|
|
});
|