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) => {
|
2018-03-29 00:48:47 -05:00
|
|
|
// Get 'postId' parameter
|
|
|
|
const [postId, postIdErr] = $(params.postId).id().$;
|
|
|
|
if (postIdErr) return rej('invalid postId 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({
|
2018-03-29 00:48:47 -05:00
|
|
|
postId: post._id,
|
|
|
|
userId: user._id,
|
|
|
|
deletedAt: { $exists: false }
|
2017-03-03 13:28:38 -06:00
|
|
|
});
|
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-04-14 06:45:37 -05:00
|
|
|
$set: {
|
2018-03-29 00:48:47 -05:00
|
|
|
deletedAt: new Date()
|
2017-04-14 06:45:37 -05:00
|
|
|
}
|
|
|
|
});
|
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 = {};
|
2018-03-29 00:48:47 -05:00
|
|
|
dec[`reactionCounts.${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
|
|
|
});
|