rudeshark.net/src/server/api/endpoints/notes/reactions/delete.ts

77 lines
1.5 KiB
TypeScript
Raw Normal View History

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';
import { publishNoteStream } from '../../../../../stream';
const ms = require('ms');
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',
limit: {
duration: ms('1hour'),
max: 5,
minInterval: ms('3sec')
},
2018-11-01 19:32:24 +01:00
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
2018-11-08 19:52:03 +01:00
await Reaction.remove({
2017-03-03 20:28:38 +01:00
_id: exist._id
2018-11-08 19:52:03 +01: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
});
publishNoteStream(note._id, 'unreacted', {
reaction: exist.reaction,
userId: user._id
});
2018-11-02 05:47:44 +01:00
}));