rudeshark.net/src/server/api/endpoints/notes/reactions/delete.ts

56 lines
1.0 KiB
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Module dependencies
*/
2018-04-24 11:13:06 +02:00
import $ from 'cafy'; import ID from '../../../../../cafy-id';
2018-04-07 19:30:37 +02:00
import Reaction from '../../../../../models/note-reaction';
import Note from '../../../../../models/note';
2016-12-28 23:49:51 +01:00
/**
2018-04-07 19:30:37 +02:00
* Unreact to a note
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-04-07 19:30:37 +02:00
// Get 'noteId' parameter
2018-05-02 11:06:16 +02:00
const [noteId, noteIdErr] = $.type(ID).get(params.noteId);
2018-04-07 19:30:37 +02:00
if (noteIdErr) return rej('invalid noteId param');
2016-12-28 23:49:51 +01:00
2017-03-19 20:24:19 +01:00
// Fetch unreactee
2018-04-07 19:30:37 +02:00
const note = await Note.findOne({
_id: noteId
2017-03-03 20:28:38 +01:00
});
2016-12-28 23:49:51 +01:00
2018-04-07 19:30:37 +02:00
if (note === null) {
return rej('note not found');
2017-03-03 20:28:38 +01:00
}
2016-12-28 23:49:51 +01:00
2017-03-19 20:24:19 +01:00
// if already unreacted
const exist = await Reaction.findOne({
2018-04-07 19:30:37 +02:00
noteId: note._id,
2018-03-29 07:48:47 +02:00
userId: user._id,
deletedAt: { $exists: false }
2017-03-03 20:28:38 +01:00
});
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: {
2018-03-29 07:48:47 +02:00
deletedAt: new Date()
2017-04-14 13:45:37 +02:00
}
});
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 = {};
2018-03-29 07:48:47 +02:00
dec[`reactionCounts.${exist.reaction}`] = -1;
2017-03-03 20:28:38 +01:00
2017-03-19 20:24:19 +01:00
// Decrement reactions count
2018-04-07 19:30:37 +02:00
Note.update({ _id: note._id }, {
2017-03-19 20:24:19 +01:00
$inc: dec
2016-12-28 23:49:51 +01:00
});
2017-03-03 20:28:38 +01:00
});