rudeshark.net/src/server/api/endpoints/posts/reactions/create.ts

123 lines
2.5 KiB
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Module dependencies
*/
2017-03-08 19:50:09 +01:00
import $ from 'cafy';
2018-03-29 13:32:18 +02: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 17:44:26 +02:00
import watch from '../../../common/watch-post';
2018-04-02 05:58:53 +02:00
import { publishPostStream, pushSw } from '../../../../../event';
import notify from '../../../../../notify';
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) => {
2018-03-29 07:48:47 +02:00
// Get 'postId' parameter
const [postId, postIdErr] = $(params.postId).id().$;
if (postIdErr) return rej('invalid postId 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',
2017-05-28 13:12:22 +02:00
'congrats',
'angry',
'confused',
'pudding'
2017-03-19 20:24:19 +01:00
]).$;
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
2018-03-29 07:48:47 +02:00
if (post.userId.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({
2018-03-29 07:48:47 +02:00
postId: post._id,
userId: user._id,
deletedAt: { $exists: false }
2017-03-03 20:28:38 +01:00
});
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({
2018-03-29 07:48:47 +02:00
createdAt: new Date(),
postId: post._id,
userId: user._id,
2017-03-19 20:24:19 +01:00
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 = {};
2018-03-29 07:48:47 +02:00
inc[`reactionCounts.${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
2018-03-29 07:48:47 +02:00
notify(post.userId, user._id, 'reaction', {
postId: post._id,
2017-03-19 20:24:19 +01:00
reaction: reaction
2016-12-28 23:49:51 +01:00
});
2017-06-06 17:44:26 +02:00
2018-03-29 07:48:47 +02:00
pushSw(post.userId, 'reaction', {
user: await packUser(user, post.userId),
post: await packPost(post, post.userId),
reaction: reaction
});
2017-06-06 17:44:26 +02:00
// Fetch watchers
Watching
.find({
2018-03-29 07:48:47 +02:00
postId: post._id,
userId: { $ne: user._id },
2017-06-06 17:44:26 +02:00
// 削除されたドキュメントは除く
2018-03-29 07:48:47 +02:00
deletedAt: { $exists: false }
2017-06-06 17:44:26 +02:00
}, {
fields: {
2018-03-29 07:48:47 +02:00
userId: true
2017-06-06 17:44:26 +02:00
}
})
.then(watchers => {
watchers.forEach(watcher => {
2018-03-29 07:48:47 +02:00
notify(watcher.userId, user._id, 'reaction', {
postId: post._id,
2017-06-06 17:44:26 +02:00
reaction: reaction
});
});
});
// この投稿をWatchする
2018-03-29 07:48:47 +02:00
if (user.account.settings.autoWatch !== false) {
2018-03-05 00:07:09 +01:00
watch(user._id, post);
}
2017-03-03 20:28:38 +01:00
});