2018-07-07 04:19:00 -06:00
|
|
|
import $ from 'cafy'; import ID from '../../../../../misc/cafy-id';
|
2018-04-07 11:30:37 -06:00
|
|
|
import Reaction from '../../../../../models/note-reaction';
|
|
|
|
import Note from '../../../../../models/note';
|
2018-06-17 18:54:53 -06:00
|
|
|
import { ILocalUser } from '../../../../../models/user';
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-07-16 13:36:44 -06:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 15:59:43 -06:00
|
|
|
'ja-JP': '指定した投稿へのリアクションを取り消します。',
|
|
|
|
'en-US': 'Unreact to a note.'
|
2018-07-16 13:36:44 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
kind: 'reaction-write'
|
|
|
|
};
|
|
|
|
|
2018-07-05 11:58:29 -06:00
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2018-04-07 11:30:37 -06:00
|
|
|
// Get 'noteId' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [noteId, noteIdErr] = $.type(ID).get(params.noteId);
|
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
|
|
|
|
2018-06-17 18:54:53 -06:00
|
|
|
const dec: any = {};
|
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
|
|
|
});
|