2016-12-29 07:49:51 +09:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-09 03:50:09 +09:00
|
|
|
import $ from 'cafy';
|
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';
|
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
|
|
|
*/
|
2017-03-04 04:28:38 +09:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
2018-04-08 02:30:37 +09:00
|
|
|
// Get 'noteId' parameter
|
|
|
|
const [noteId, noteIdErr] = $(params.noteId).id().$;
|
|
|
|
if (noteIdErr) return rej('invalid noteId param');
|
2017-01-20 17:51:31 +09:00
|
|
|
|
2017-03-20 04:24:19 +09:00
|
|
|
// Get 'reaction' parameter
|
2018-04-23 15:27:01 +09:00
|
|
|
const [reaction, reactionErr] = $(params.reaction).string().pipe(validateReaction.ok).$;
|
2017-03-20 04:24:19 +09:00
|
|
|
if (reactionErr) return rej('invalid reaction param');
|
|
|
|
|
|
|
|
// Fetch reactee
|
2018-04-08 02:30:37 +09:00
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: 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-04-08 02:30:37 +09:00
|
|
|
await create(user, note, 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();
|
|
|
|
});
|