2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2018-04-24 04:13:06 -05:00
|
|
|
import $ from 'cafy'; import ID from '../../../../../cafy-id';
|
2018-04-07 12:30:37 -05:00
|
|
|
import Note from '../../../../../models/note';
|
|
|
|
import create from '../../../../../services/note/reaction/create';
|
2018-04-23 01:27:01 -05:00
|
|
|
import { validateReaction } from '../../../../../models/note-reaction';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
2018-04-07 12:30:37 -05:00
|
|
|
* React to a note
|
2016-12-28 16:49:51 -06:00
|
|
|
*/
|
2017-03-03 13:28:38 -06:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
2018-04-07 12:30:37 -05:00
|
|
|
// Get 'noteId' parameter
|
2018-04-27 05:12:15 -05:00
|
|
|
const [noteId, noteIdErr] = $(params.noteId).type(ID).get();
|
2018-04-07 12:30:37 -05:00
|
|
|
if (noteIdErr) return rej('invalid noteId param');
|
2017-01-20 02:51:31 -06:00
|
|
|
|
2017-03-19 14:24:19 -05:00
|
|
|
// Get 'reaction' parameter
|
2018-04-27 05:12:15 -05:00
|
|
|
const [reaction, reactionErr] = $(params.reaction).string().pipe(validateReaction.ok).get();
|
2017-03-19 14:24:19 -05:00
|
|
|
if (reactionErr) return rej('invalid reaction param');
|
|
|
|
|
|
|
|
// Fetch reactee
|
2018-04-07 12:30:37 -05:00
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: noteId
|
2017-03-03 13:28:38 -06:00
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
2017-03-03 13:28:38 -06:00
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-04-07 03:05:14 -05:00
|
|
|
try {
|
2018-04-07 12:30:37 -05:00
|
|
|
await create(user, note, reaction);
|
2018-04-07 03:05:14 -05:00
|
|
|
} catch (e) {
|
|
|
|
rej(e);
|
2017-03-03 13:28:38 -06:00
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
res();
|
|
|
|
});
|