rudeshark.net/src/api/endpoints/posts/reactions/delete.ts

61 lines
1.1 KiB
TypeScript
Raw Normal View History

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