2016-12-29 07:49:51 +09:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-09 03:50:09 +09:00
|
|
|
import $ from 'cafy';
|
2018-03-29 20:32:18 +09:00
|
|
|
import Reaction from '../../../../../models/post-reaction';
|
2018-04-07 17:05:14 +09:00
|
|
|
import Post from '../../../../../models/post';
|
|
|
|
import create from '../../../../../services/post/reaction/create';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
|
|
|
/**
|
2017-03-20 04:24:19 +09:00
|
|
|
* React to a post
|
2016-12-29 07:49:51 +09:00
|
|
|
*/
|
2017-03-04 04:28:38 +09:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
2018-03-29 14:48:47 +09:00
|
|
|
// Get 'postId' parameter
|
|
|
|
const [postId, postIdErr] = $(params.postId).id().$;
|
|
|
|
if (postIdErr) return rej('invalid postId param');
|
2017-01-20 17:51:31 +09:00
|
|
|
|
2017-03-20 04:24:19 +09:00
|
|
|
// Get 'reaction' parameter
|
|
|
|
const [reaction, reactionErr] = $(params.reaction).string().or([
|
|
|
|
'like',
|
|
|
|
'love',
|
|
|
|
'laugh',
|
|
|
|
'hmm',
|
|
|
|
'surprise',
|
2017-05-28 20:12:22 +09:00
|
|
|
'congrats',
|
|
|
|
'angry',
|
|
|
|
'confused',
|
|
|
|
'pudding'
|
2017-03-20 04:24:19 +09:00
|
|
|
]).$;
|
|
|
|
if (reactionErr) return rej('invalid reaction param');
|
|
|
|
|
|
|
|
// Fetch reactee
|
2017-03-04 04:28:38 +09:00
|
|
|
const post = await Post.findOne({
|
|
|
|
_id: postId
|
|
|
|
});
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2017-03-04 04:28:38 +09:00
|
|
|
if (post === null) {
|
|
|
|
return rej('post not found');
|
|
|
|
}
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-04-07 17:05:14 +09:00
|
|
|
try {
|
|
|
|
await create(user, post, reaction);
|
|
|
|
} catch (e) {
|
|
|
|
rej(e);
|
2017-03-04 04:28:38 +09:00
|
|
|
}
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2017-03-04 04:28:38 +09:00
|
|
|
res();
|
|
|
|
});
|