jormungandr-bite/src/server/api/endpoints/notes/reactions/delete.ts

56 lines
1 KiB
TypeScript
Raw Normal View History

2016-12-28 15:49:51 -07:00
/**
* Module dependencies
*/
2018-04-24 03:13:06 -06:00
import $ from 'cafy'; import ID from '../../../../../cafy-id';
2018-04-07 11:30:37 -06:00
import Reaction from '../../../../../models/note-reaction';
import Note from '../../../../../models/note';
2016-12-28 15:49:51 -07:00
/**
2018-04-07 11:30:37 -06:00
* Unreact to a note
2016-12-28 15:49:51 -07:00
*/
2017-03-03 12:28:38 -07:00
module.exports = (params, user) => new Promise(async (res, rej) => {
2018-04-07 11:30:37 -06:00
// Get 'noteId' parameter
2018-04-27 04:12:15 -06:00
const [noteId, noteIdErr] = $(params.noteId).type(ID).get();
2018-04-07 11:30:37 -06:00
if (noteIdErr) return rej('invalid noteId param');
2016-12-28 15:49:51 -07:00
2017-03-19 13:24:19 -06:00
// Fetch unreactee
2018-04-07 11:30:37 -06:00
const note = await Note.findOne({
_id: noteId
2017-03-03 12:28:38 -07:00
});
2016-12-28 15:49:51 -07:00
2018-04-07 11:30:37 -06:00
if (note === null) {
return rej('note not found');
2017-03-03 12:28:38 -07:00
}
2016-12-28 15:49:51 -07:00
2017-03-19 13:24:19 -06:00
// if already unreacted
const exist = await Reaction.findOne({
2018-04-07 11:30:37 -06:00
noteId: note._id,
2018-03-28 23:48:47 -06:00
userId: user._id,
deletedAt: { $exists: false }
2017-03-03 12:28:38 -07:00
});
2016-12-28 15:49:51 -07:00
2017-03-03 12:28:38 -07:00
if (exist === null) {
2017-03-19 13:24:19 -06:00
return rej('never reacted');
2017-03-03 12:28:38 -07:00
}
2016-12-28 15:49:51 -07:00
2017-03-19 13:24:19 -06:00
// Delete reaction
await Reaction.update({
2017-03-03 12:28:38 -07:00
_id: exist._id
}, {
2017-04-14 05:45:37 -06:00
$set: {
2018-03-28 23:48:47 -06:00
deletedAt: new Date()
2017-04-14 05:45:37 -06:00
}
});
2016-12-28 15:49:51 -07:00
2017-03-03 12:28:38 -07:00
// Send response
res();
2017-02-27 00:50:36 -07:00
2017-03-19 13:24:19 -06:00
const dec = {};
2018-03-28 23:48:47 -06:00
dec[`reactionCounts.${exist.reaction}`] = -1;
2017-03-03 12:28:38 -07:00
2017-03-19 13:24:19 -06:00
// Decrement reactions count
2018-04-07 11:30:37 -06:00
Note.update({ _id: note._id }, {
2017-03-19 13:24:19 -06:00
$inc: dec
2016-12-28 15:49:51 -07:00
});
2017-03-03 12:28:38 -07:00
});