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';
|
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-04-07 19:30:37 +02:00
|
|
|
// Get 'noteId' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [noteId, noteIdErr] = $.type(ID).get(params.noteId);
|
2018-04-07 19:30:37 +02:00
|
|
|
if (noteIdErr) return rej('invalid noteId param');
|
2017-01-20 09:51:31 +01:00
|
|
|
|
2017-03-19 20:24:19 +01:00
|
|
|
// Get 'reaction' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [reaction, reactionErr] = $.str.pipe(validateReaction.ok).get(params.reaction);
|
2017-03-19 20:24:19 +01:00
|
|
|
if (reactionErr) return rej('invalid reaction param');
|
|
|
|
|
|
|
|
// Fetch reactee
|
2018-04-07 19:30:37 +02:00
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: 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-04-07 19:30:37 +02:00
|
|
|
await create(user, note, 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();
|
|
|
|
});
|