a1b490afa7
Closes #1411
60 lines
1.1 KiB
TypeScript
60 lines
1.1 KiB
TypeScript
/**
|
|
* Module dependencies
|
|
*/
|
|
import $ from 'cafy';
|
|
import Reaction from '../../../../../models/note-reaction';
|
|
import Note from '../../../../../models/note';
|
|
// import event from '../../../publishers/stream';
|
|
|
|
/**
|
|
* Unreact to a note
|
|
*
|
|
* @param {any} params
|
|
* @param {any} user
|
|
* @return {Promise<any>}
|
|
*/
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
|
// Get 'noteId' parameter
|
|
const [noteId, noteIdErr] = $(params.noteId).id().$;
|
|
if (noteIdErr) return rej('invalid noteId param');
|
|
|
|
// Fetch unreactee
|
|
const note = await Note.findOne({
|
|
_id: noteId
|
|
});
|
|
|
|
if (note === null) {
|
|
return rej('note not found');
|
|
}
|
|
|
|
// if already unreacted
|
|
const exist = await Reaction.findOne({
|
|
noteId: note._id,
|
|
userId: user._id,
|
|
deletedAt: { $exists: false }
|
|
});
|
|
|
|
if (exist === null) {
|
|
return rej('never reacted');
|
|
}
|
|
|
|
// Delete reaction
|
|
await Reaction.update({
|
|
_id: exist._id
|
|
}, {
|
|
$set: {
|
|
deletedAt: new Date()
|
|
}
|
|
});
|
|
|
|
// Send response
|
|
res();
|
|
|
|
const dec = {};
|
|
dec[`reactionCounts.${exist.reaction}`] = -1;
|
|
|
|
// Decrement reactions count
|
|
Note.update({ _id: note._id }, {
|
|
$inc: dec
|
|
});
|
|
});
|