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