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