2018-04-24 18:13:06 +09:00
|
|
|
import $ from 'cafy'; import ID from '../../../../../cafy-id';
|
2018-04-08 02:30:37 +09:00
|
|
|
import Note from '../../../../../models/note';
|
|
|
|
import create from '../../../../../services/note/reaction/create';
|
2018-04-23 15:27:01 +09:00
|
|
|
import { validateReaction } from '../../../../../models/note-reaction';
|
2018-06-18 09:54:53 +09:00
|
|
|
import { ILocalUser } from '../../../../../models/user';
|
2018-07-06 23:19:47 +09:00
|
|
|
import getParams from '../../../get-params';
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
name: 'notes/reactions/create',
|
|
|
|
|
|
|
|
desc: {
|
|
|
|
ja: '投稿にリアクションします。'
|
|
|
|
},
|
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: $.type(ID).note({
|
|
|
|
desc: {
|
|
|
|
ja: '対象の投稿'
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
reaction: $.str.pipe(validateReaction.ok).note({
|
|
|
|
desc: {
|
|
|
|
ja: 'リアクションの種類'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
};
|
2016-12-29 07:49:51 +09:00
|
|
|
|
|
|
|
/**
|
2018-04-08 02:30:37 +09:00
|
|
|
* React to a note
|
2016-12-29 07:49:51 +09:00
|
|
|
*/
|
2018-07-06 02:58:29 +09:00
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2018-07-06 23:19:47 +09:00
|
|
|
const [ps, psErr] = getParams(meta, params);
|
|
|
|
if (psErr) return rej(psErr);
|
2017-03-20 04:24:19 +09:00
|
|
|
|
|
|
|
// Fetch reactee
|
2018-04-08 02:30:37 +09:00
|
|
|
const note = await Note.findOne({
|
2018-07-06 23:19:47 +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
|
|
|
|
2018-04-07 17:05:14 +09:00
|
|
|
try {
|
2018-07-06 23:19:47 +09:00
|
|
|
await create(user, note, ps.reaction);
|
2018-04-07 17:05:14 +09:00
|
|
|
} catch (e) {
|
|
|
|
rej(e);
|
2017-03-04 04:28:38 +09:00
|
|
|
}
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2017-03-04 04:28:38 +09:00
|
|
|
res();
|
|
|
|
});
|