sharkey/src/server/api/endpoints/notes/reactions/delete.ts

54 lines
1.1 KiB
TypeScript
Raw Normal View History

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