2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-08 12:50:09 -06:00
|
|
|
import $ from 'cafy';
|
2018-03-29 06:32:18 -05:00
|
|
|
import Reaction from '../../../../../models/post-reaction';
|
|
|
|
import Post, { pack as packPost } from '../../../../../models/post';
|
|
|
|
import { pack as packUser } from '../../../../../models/user';
|
|
|
|
import Watching from '../../../../../models/post-watching';
|
2017-06-06 10:44:26 -05:00
|
|
|
import watch from '../../../common/watch-post';
|
2018-04-01 22:58:53 -05:00
|
|
|
import { publishPostStream, pushSw } from '../../../../../event';
|
|
|
|
import notify from '../../../../../notify';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
2017-03-19 14:24:19 -05:00
|
|
|
* React to a post
|
2016-12-28 16:49:51 -06:00
|
|
|
*
|
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-01-20 02:51:31 -06:00
|
|
|
|
2017-03-19 14:24:19 -05:00
|
|
|
// Get 'reaction' parameter
|
|
|
|
const [reaction, reactionErr] = $(params.reaction).string().or([
|
|
|
|
'like',
|
|
|
|
'love',
|
|
|
|
'laugh',
|
|
|
|
'hmm',
|
|
|
|
'surprise',
|
2017-05-28 06:12:22 -05:00
|
|
|
'congrats',
|
|
|
|
'angry',
|
|
|
|
'confused',
|
|
|
|
'pudding'
|
2017-03-19 14:24:19 -05:00
|
|
|
]).$;
|
|
|
|
if (reactionErr) return rej('invalid reaction param');
|
|
|
|
|
|
|
|
// Fetch reactee
|
2017-03-03 13:28:38 -06:00
|
|
|
const post = await Post.findOne({
|
|
|
|
_id: postId
|
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
if (post === null) {
|
|
|
|
return rej('post not found');
|
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
// Myself
|
2018-03-29 00:48:47 -05:00
|
|
|
if (post.userId.equals(user._id)) {
|
2017-03-19 14:24:19 -05:00
|
|
|
return rej('cannot react to my post');
|
2017-03-03 13:28:38 -06:00
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-03-19 14:24:19 -05:00
|
|
|
// if already reacted
|
|
|
|
const exist = await Reaction.findOne({
|
2018-03-29 00:48:47 -05:00
|
|
|
postId: post._id,
|
|
|
|
userId: user._id,
|
|
|
|
deletedAt: { $exists: false }
|
2017-03-03 13:28:38 -06:00
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
if (exist !== null) {
|
2017-03-19 14:24:19 -05:00
|
|
|
return rej('already reacted');
|
2017-03-03 13:28:38 -06:00
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-03-19 14:24:19 -05:00
|
|
|
// Create reaction
|
|
|
|
await Reaction.insert({
|
2018-03-29 00:48:47 -05:00
|
|
|
createdAt: new Date(),
|
|
|
|
postId: post._id,
|
|
|
|
userId: user._id,
|
2017-03-19 14:24:19 -05:00
|
|
|
reaction: reaction
|
2017-03-03 13:28:38 -06:00
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
// Send response
|
|
|
|
res();
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-03-19 14:24:19 -05:00
|
|
|
const inc = {};
|
2018-03-29 00:48:47 -05:00
|
|
|
inc[`reactionCounts.${reaction}`] = 1;
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-03-19 14:24:19 -05:00
|
|
|
// Increment reactions count
|
2017-03-19 23:54:59 -05:00
|
|
|
await Post.update({ _id: post._id }, {
|
2017-03-19 14:24:19 -05:00
|
|
|
$inc: inc
|
2017-03-03 13:28:38 -06:00
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-03-19 23:54:59 -05:00
|
|
|
publishPostStream(post._id, 'reacted');
|
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
// Notify
|
2018-03-29 00:48:47 -05:00
|
|
|
notify(post.userId, user._id, 'reaction', {
|
|
|
|
postId: post._id,
|
2017-03-19 14:24:19 -05:00
|
|
|
reaction: reaction
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
2017-06-06 10:44:26 -05:00
|
|
|
|
2018-03-29 00:48:47 -05:00
|
|
|
pushSw(post.userId, 'reaction', {
|
|
|
|
user: await packUser(user, post.userId),
|
|
|
|
post: await packPost(post, post.userId),
|
2017-11-22 15:03:54 -06:00
|
|
|
reaction: reaction
|
|
|
|
});
|
|
|
|
|
2017-06-06 10:44:26 -05:00
|
|
|
// Fetch watchers
|
|
|
|
Watching
|
|
|
|
.find({
|
2018-03-29 00:48:47 -05:00
|
|
|
postId: post._id,
|
|
|
|
userId: { $ne: user._id },
|
2017-06-06 10:44:26 -05:00
|
|
|
// 削除されたドキュメントは除く
|
2018-03-29 00:48:47 -05:00
|
|
|
deletedAt: { $exists: false }
|
2017-06-06 10:44:26 -05:00
|
|
|
}, {
|
|
|
|
fields: {
|
2018-03-29 00:48:47 -05:00
|
|
|
userId: true
|
2017-06-06 10:44:26 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.then(watchers => {
|
|
|
|
watchers.forEach(watcher => {
|
2018-03-29 00:48:47 -05:00
|
|
|
notify(watcher.userId, user._id, 'reaction', {
|
|
|
|
postId: post._id,
|
2017-06-06 10:44:26 -05:00
|
|
|
reaction: reaction
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// この投稿をWatchする
|
2018-03-29 00:48:47 -05:00
|
|
|
if (user.account.settings.autoWatch !== false) {
|
2018-03-04 17:07:09 -06:00
|
|
|
watch(user._id, post);
|
|
|
|
}
|
2017-03-03 13:28:38 -06:00
|
|
|
});
|