2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-08 19:50:09 +01:00
|
|
|
import $ from 'cafy';
|
2017-03-19 20:24:19 +01:00
|
|
|
import Reaction from '../../../models/post-reaction';
|
2016-12-28 23:49:51 +01:00
|
|
|
import Post from '../../../models/post';
|
|
|
|
import notify from '../../../common/notify';
|
2017-03-20 05:54:59 +01:00
|
|
|
import { publishPostStream } from '../../../event';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
2017-03-19 20:24:19 +01:00
|
|
|
* React to a post
|
2016-12-28 23:49:51 +01:00
|
|
|
*
|
2017-03-01 09:37:01 +01:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2017-03-03 20:28:38 +01:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
|
|
|
// Get 'post_id' parameter
|
2017-03-08 19:50:09 +01:00
|
|
|
const [postId, postIdErr] = $(params.post_id).id().$;
|
2017-03-03 20:28:38 +01:00
|
|
|
if (postIdErr) return rej('invalid post_id param');
|
2017-01-20 09:51:31 +01:00
|
|
|
|
2017-03-19 20:24:19 +01:00
|
|
|
// Get 'reaction' parameter
|
|
|
|
const [reaction, reactionErr] = $(params.reaction).string().or([
|
|
|
|
'like',
|
|
|
|
'love',
|
|
|
|
'laugh',
|
|
|
|
'hmm',
|
|
|
|
'surprise',
|
|
|
|
'congrats'
|
|
|
|
]).$;
|
|
|
|
if (reactionErr) return rej('invalid reaction param');
|
|
|
|
|
|
|
|
// Fetch reactee
|
2017-03-03 20:28:38 +01:00
|
|
|
const post = await Post.findOne({
|
|
|
|
_id: postId
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
if (post === null) {
|
|
|
|
return rej('post not found');
|
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
// Myself
|
|
|
|
if (post.user_id.equals(user._id)) {
|
2017-03-19 20:24:19 +01:00
|
|
|
return rej('cannot react to my post');
|
2017-03-03 20:28:38 +01:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-19 20:24:19 +01:00
|
|
|
// if already reacted
|
|
|
|
const exist = await Reaction.findOne({
|
2017-03-03 20:28:38 +01:00
|
|
|
post_id: post._id,
|
|
|
|
user_id: user._id,
|
|
|
|
deleted_at: { $exists: false }
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
if (exist !== null) {
|
2017-03-19 20:24:19 +01:00
|
|
|
return rej('already reacted');
|
2017-03-03 20:28:38 +01:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-19 20:24:19 +01:00
|
|
|
// Create reaction
|
|
|
|
await Reaction.insert({
|
2017-03-03 20:28:38 +01:00
|
|
|
created_at: new Date(),
|
|
|
|
post_id: post._id,
|
2017-03-19 20:24:19 +01:00
|
|
|
user_id: user._id,
|
|
|
|
reaction: reaction
|
2017-03-03 20:28:38 +01:00
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
// Send response
|
|
|
|
res();
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-19 20:24:19 +01:00
|
|
|
const inc = {};
|
|
|
|
inc['reaction_counts.' + reaction] = 1;
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-19 20:24:19 +01:00
|
|
|
// Increment reactions count
|
2017-03-20 05:54:59 +01:00
|
|
|
await Post.update({ _id: post._id }, {
|
2017-03-19 20:24:19 +01:00
|
|
|
$inc: inc
|
2017-03-03 20:28:38 +01:00
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-20 05:54:59 +01:00
|
|
|
publishPostStream(post._id, 'reacted');
|
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
// Notify
|
2017-03-19 20:24:19 +01:00
|
|
|
notify(post.user_id, user._id, 'reaction', {
|
|
|
|
post_id: post._id,
|
|
|
|
reaction: reaction
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
2017-03-03 20:28:38 +01:00
|
|
|
});
|