2018-04-24 11:13:06 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../../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 = {
|
|
|
|
name: 'notes/reactions/create',
|
|
|
|
|
|
|
|
desc: {
|
|
|
|
ja: '投稿にリアクションします。'
|
|
|
|
},
|
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: $.type(ID).note({
|
|
|
|
desc: {
|
|
|
|
ja: '対象の投稿'
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
reaction: $.str.pipe(validateReaction.ok).note({
|
|
|
|
desc: {
|
|
|
|
ja: 'リアクションの種類'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
};
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
2018-04-07 19:30:37 +02:00
|
|
|
* React to a note
|
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-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();
|
|
|
|
});
|