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';
|
2018-04-07 10:05:14 +02:00
|
|
|
import Post from '../../../../../models/post';
|
|
|
|
import create from '../../../../../services/post/reaction/create';
|
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-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
|
|
|
|
2018-04-07 10:05:14 +02:00
|
|
|
try {
|
|
|
|
await create(user, post, reaction);
|
|
|
|
} catch (e) {
|
|
|
|
rej(e);
|
2017-03-03 20:28:38 +01:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
res();
|
|
|
|
});
|