2018-11-01 19:32:24 +01:00
|
|
|
import $ from 'cafy'; import ID, { transform } from '../../../../../misc/cafy-id';
|
2018-04-07 19:30:37 +02:00
|
|
|
import Reaction from '../../../../../models/note-reaction';
|
|
|
|
import Note from '../../../../../models/note';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../../define';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '指定した投稿へのリアクションを取り消します。',
|
|
|
|
'en-US': 'Unreact to a note.'
|
2018-07-16 21:36:44 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
kind: 'reaction-write',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
2018-11-03 14:49:36 +01:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象の投稿のID',
|
|
|
|
'en-US': 'Target note ID'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
|
|
|
}
|
2018-07-16 21:36:44 +02:00
|
|
|
};
|
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
2017-03-19 20:24:19 +01:00
|
|
|
// Fetch unreactee
|
2018-04-07 19:30:37 +02:00
|
|
|
const note = await Note.findOne({
|
2018-11-01 19:32:24 +01:00
|
|
|
_id: ps.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
|
|
|
res();
|
2017-02-27 08:50:36 +01:00
|
|
|
|
2018-06-18 02:54:53 +02:00
|
|
|
const dec: any = {};
|
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
|
|
|
});
|
2018-11-02 05:47:44 +01:00
|
|
|
}));
|