2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
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 Reaction, { pack } from '../../../../models/note-reaction';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
2018-04-07 19:30:37 +02:00
|
|
|
* Show reactions of a note
|
2016-12-28 23:49:51 +01:00
|
|
|
*
|
2017-03-01 09:37:01 +01:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2017-03-03 20:28:38 +01:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
2018-04-07 19:30:37 +02:00
|
|
|
// Get 'noteId' parameter
|
2018-04-24 11:13:06 +02:00
|
|
|
const [noteId, noteIdErr] = $(params.noteId).type(ID).$;
|
2018-04-07 19:30:37 +02:00
|
|
|
if (noteIdErr) return rej('invalid noteId param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get 'limit' parameter
|
2017-03-08 19:50:09 +01:00
|
|
|
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$;
|
2017-03-02 22:48:26 +01:00
|
|
|
if (limitErr) return rej('invalid limit param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get 'offset' parameter
|
2017-03-08 19:50:09 +01:00
|
|
|
const [offset = 0, offsetErr] = $(params.offset).optional.number().min(0).$;
|
2017-03-02 22:48:26 +01:00
|
|
|
if (offsetErr) return rej('invalid offset param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get 'sort' parameter
|
2017-03-08 19:50:09 +01:00
|
|
|
const [sort = 'desc', sortError] = $(params.sort).optional.string().or('desc asc').$;
|
2017-03-02 22:48:26 +01:00
|
|
|
if (sortError) return rej('invalid sort param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
// Lookup note
|
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: noteId
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Issue query
|
2017-03-19 20:24:19 +01:00
|
|
|
const reactions = await Reaction
|
2016-12-28 23:49:51 +01:00
|
|
|
.find({
|
2018-04-07 19:30:37 +02:00
|
|
|
noteId: note._id,
|
2018-03-29 07:48:47 +02:00
|
|
|
deletedAt: { $exists: false }
|
2017-01-17 03:11:22 +01:00
|
|
|
}, {
|
2016-12-28 23:49:51 +01:00
|
|
|
limit: limit,
|
|
|
|
skip: offset,
|
|
|
|
sort: {
|
|
|
|
_id: sort == 'asc' ? 1 : -1
|
|
|
|
}
|
2017-01-17 03:11:22 +01:00
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Serialize
|
2017-03-19 20:24:19 +01:00
|
|
|
res(await Promise.all(reactions.map(async reaction =>
|
2018-02-02 00:21:30 +01:00
|
|
|
await pack(reaction, user))));
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|