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

61 lines
1.1 KiB
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';
2017-03-19 14:24:19 -05:00
import Reaction from '../../../models/post-reaction';
2016-12-28 16:49:51 -06:00
import Post from '../../../models/post';
// import event from '../../../event';
/**
2017-03-19 14:24:19 -05:00
* Unreact to a post
2016-12-28 16:49:51 -06:00
*
2017-03-01 02:37:01 -06:00
* @param {any} params
* @param {any} user
* @return {Promise<any>}
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) => {
// Get 'post_id' parameter
2017-03-08 12:50:09 -06:00
const [postId, postIdErr] = $(params.post_id).id().$;
2017-03-03 13:28:38 -06:00
if (postIdErr) return rej('invalid post_id param');
2016-12-28 16:49:51 -06:00
2017-03-19 14:24:19 -05:00
// Fetch unreactee
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
2017-03-19 14:24:19 -05:00
// if already unreacted
const exist = await Reaction.findOne({
2017-03-03 13:28:38 -06:00
post_id: post._id,
user_id: user._id,
deleted_at: { $exists: false }
});
2016-12-28 16:49:51 -06:00
2017-03-03 13:28:38 -06:00
if (exist === null) {
2017-03-19 14:24:19 -05:00
return rej('never reacted');
2017-03-03 13:28:38 -06:00
}
2016-12-28 16:49:51 -06:00
2017-03-19 14:24:19 -05:00
// Delete reaction
await Reaction.update({
2017-03-03 13:28:38 -06:00
_id: exist._id
}, {
2017-03-19 14:24:19 -05:00
$set: {
deleted_at: new Date()
}
});
2016-12-28 16:49:51 -06:00
2017-03-03 13:28:38 -06:00
// Send response
res();
2017-02-27 01:50:36 -06:00
2017-03-19 14:24:19 -05:00
const dec = {};
dec['reaction_counts.' + exist.reaction] = -1;
2017-03-03 13:28:38 -06:00
2017-03-19 14:24:19 -05:00
// Decrement reactions count
Post.update({ _id: post._id }, {
$inc: dec
2016-12-28 16:49:51 -06:00
});
2017-03-03 13:28:38 -06:00
});