2019-01-19 18:07:12 +00:00
|
|
|
import * as mongo from 'mongodb';
|
2019-02-05 02:48:08 +00:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../../misc/cafy-id';
|
2019-01-19 18:07:12 +00:00
|
|
|
import createReaction from '../../../../../services/note/reaction/create';
|
2018-04-23 06:27:01 +00:00
|
|
|
import { validateReaction } from '../../../../../models/note-reaction';
|
2018-11-02 04:47:44 +00:00
|
|
|
import define from '../../../define';
|
2019-01-19 18:07:12 +00:00
|
|
|
import { IUser } from '../../../../../models/user';
|
|
|
|
import { getValiedNote } from '../../../common/getters';
|
2018-07-06 14:19:47 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2018-10-21 20:16:27 +00:00
|
|
|
stability: 'stable',
|
|
|
|
|
2018-07-06 14:19:47 +00:00
|
|
|
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: {
|
2018-11-01 18:32:24 +00:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
2018-07-06 14:19:47 +00:00
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': '対象の投稿'
|
2018-07-06 14:19:47 +00:00
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-06 14:19:47 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
reaction: {
|
|
|
|
validator: $.str.pipe(validateReaction.ok),
|
2018-07-06 14:19:47 +00:00
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': 'リアクションの種類'
|
2018-07-06 14:19:47 +00:00
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
}
|
2018-07-06 14:19:47 +00:00
|
|
|
}
|
|
|
|
};
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2019-01-19 18:07:12 +00:00
|
|
|
export default define(meta, (ps, user) => new Promise((res, rej) => {
|
|
|
|
createReactionById(user, ps.noteId, ps.reaction)
|
|
|
|
.then(r => res(r)).catch(e => rej(e));
|
2018-11-02 04:47:44 +00:00
|
|
|
}));
|
2019-01-19 18:07:12 +00:00
|
|
|
|
|
|
|
async function createReactionById(user: IUser, noteId: mongo.ObjectID, reaction: string) {
|
|
|
|
const note = await getValiedNote(noteId);
|
|
|
|
await createReaction(user, note, reaction);
|
|
|
|
}
|