2016-12-28 15:49:51 -07:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import * as mongo from 'mongodb';
|
|
|
|
import Favorite from '../../models/favorite';
|
|
|
|
import Post from '../../models/post';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Favorite a post
|
|
|
|
*
|
2017-03-01 01:37:01 -07:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
2016-12-28 15:49:51 -07:00
|
|
|
*/
|
|
|
|
module.exports = (params, user) =>
|
2017-02-27 00:50:36 -07:00
|
|
|
new Promise(async (res, rej) => {
|
|
|
|
// Get 'post_id' parameter
|
|
|
|
let postId = params.post_id;
|
|
|
|
if (postId === undefined || postId === null) {
|
|
|
|
return rej('post_id is required');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get favoritee
|
|
|
|
const post = await Post.findOne({
|
|
|
|
_id: new mongo.ObjectID(postId)
|
|
|
|
});
|
|
|
|
|
|
|
|
if (post === null) {
|
|
|
|
return rej('post not found');
|
|
|
|
}
|
|
|
|
|
2017-02-27 01:44:31 -07:00
|
|
|
// if already favorited
|
2017-02-27 00:50:36 -07:00
|
|
|
const exist = await Favorite.findOne({
|
|
|
|
post_id: post._id,
|
|
|
|
user_id: user._id
|
|
|
|
});
|
|
|
|
|
|
|
|
if (exist !== null) {
|
|
|
|
return rej('already favorited');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create favorite
|
|
|
|
await Favorite.insert({
|
|
|
|
created_at: new Date(),
|
|
|
|
post_id: post._id,
|
|
|
|
user_id: user._id
|
|
|
|
});
|
|
|
|
|
|
|
|
// Send response
|
|
|
|
res();
|
2016-12-28 15:49:51 -07:00
|
|
|
});
|