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

77 lines
1.5 KiB
TypeScript
Raw Normal View History

2018-11-02 03:32:24 +09:00
import $ from 'cafy'; import ID, { transform } from '../../../../../misc/cafy-id';
2018-04-08 02:30:37 +09:00
import Reaction from '../../../../../models/note-reaction';
import Note from '../../../../../models/note';
2018-11-02 13:47:44 +09:00
import define from '../../../define';
import { publishNoteStream } from '../../../../../stream';
const ms = require('ms');
2016-12-29 07:49:51 +09:00
2018-07-17 04:36:44 +09:00
export const meta = {
desc: {
2018-08-29 06:59:43 +09:00
'ja-JP': '指定した投稿へのリアクションを取り消します。',
'en-US': 'Unreact to a note.'
2018-07-17 04:36:44 +09:00
},
requireCredential: true,
2018-11-02 03:32:24 +09:00
kind: 'reaction-write',
limit: {
duration: ms('1hour'),
max: 5,
minInterval: ms('3sec')
},
2018-11-02 03:32:24 +09:00
params: {
noteId: {
validator: $.type(ID),
transform: transform,
2018-11-03 22:49:36 +09:00
desc: {
'ja-JP': '対象の投稿のID',
'en-US': 'Target note ID'
}
2018-11-02 03:32:24 +09:00
},
}
2018-07-17 04:36:44 +09:00
};
2018-11-02 13:47:44 +09:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
2017-03-20 04:24:19 +09:00
// Fetch unreactee
2018-04-08 02:30:37 +09:00
const note = await Note.findOne({
2018-11-02 03:32:24 +09:00
_id: ps.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
2018-11-09 03:52:03 +09:00
await Reaction.remove({
2017-03-04 04:28:38 +09:00
_id: exist._id
2018-11-09 03:52:03 +09:00
});
2016-12-29 07:49:51 +09:00
2017-03-04 04:28:38 +09:00
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
});
publishNoteStream(note._id, 'unreacted', {
reaction: exist.reaction,
userId: user._id
});
2018-11-02 13:47:44 +09:00
}));