yumechi-no-kuni/src/server/api/endpoints/posts/reactions/create.ts

48 lines
939 B
TypeScript
Raw Normal View History

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