2018-07-07 12:19:00 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../../misc/cafy-id';
|
2018-04-07 19:30:37 +02:00
|
|
|
import Note from '../../../../../models/note';
|
|
|
|
import create from '../../../../../services/note/reaction/create';
|
2018-04-23 08:27:01 +02:00
|
|
|
import { validateReaction } from '../../../../../models/note-reaction';
|
2018-06-18 02:54:53 +02:00
|
|
|
import { ILocalUser } from '../../../../../models/user';
|
2018-07-06 16:19:47 +02:00
|
|
|
import getParams from '../../../get-params';
|
|
|
|
|
|
|
|
export const meta = {
|
2018-10-21 22:16:27 +02:00
|
|
|
stability: 'stable',
|
|
|
|
|
2018-07-06 16:19:47 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '指定した投稿にリアクションします。',
|
|
|
|
'en-US': 'React to a note.'
|
2018-07-06 16:19:47 +02:00
|
|
|
},
|
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
kind: 'reaction-write',
|
|
|
|
|
2018-07-06 16:19:47 +02:00
|
|
|
params: {
|
|
|
|
noteId: $.type(ID).note({
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '対象の投稿'
|
2018-07-06 16:19:47 +02:00
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
reaction: $.str.pipe(validateReaction.ok).note({
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': 'リアクションの種類'
|
2018-07-06 16:19:47 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
};
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-05 19:58:29 +02:00
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2018-07-06 16:19:47 +02:00
|
|
|
const [ps, psErr] = getParams(meta, params);
|
|
|
|
if (psErr) return rej(psErr);
|
2017-03-19 20:24:19 +01:00
|
|
|
|
|
|
|
// Fetch reactee
|
2018-04-07 19:30:37 +02:00
|
|
|
const note = await Note.findOne({
|
2018-07-06 16:19:47 +02: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
|
|
|
|
2018-09-09 18:55:14 +02:00
|
|
|
if (note.deletedAt != null) {
|
|
|
|
return rej('this not is already deleted');
|
|
|
|
}
|
|
|
|
|
2018-04-07 10:05:14 +02:00
|
|
|
try {
|
2018-07-06 16:19:47 +02:00
|
|
|
await create(user, note, ps.reaction);
|
2018-04-07 10:05:14 +02:00
|
|
|
} catch (e) {
|
|
|
|
rej(e);
|
2017-03-03 20:28:38 +01:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
res();
|
|
|
|
});
|