2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-08 12:50:09 -06:00
|
|
|
import $ from 'cafy';
|
2018-04-07 12:30:37 -05:00
|
|
|
import Note, { pack } from '../../../../models/note';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
2018-04-07 12:30:37 -05:00
|
|
|
* Show a replies of a note
|
2016-12-28 16:49:51 -06:00
|
|
|
*
|
2017-03-01 02:37:01 -06:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
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
|
|
|
|
const [noteId, noteIdErr] = $(params.noteId).id().$;
|
|
|
|
if (noteIdErr) return rej('invalid noteId param');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
// Get 'limit' parameter
|
2017-03-08 12:50:09 -06:00
|
|
|
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$;
|
2017-03-02 15:48:26 -06:00
|
|
|
if (limitErr) return rej('invalid limit param');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
// Get 'offset' parameter
|
2017-03-08 12:50:09 -06:00
|
|
|
const [offset = 0, offsetErr] = $(params.offset).optional.number().min(0).$;
|
2017-03-02 15:48:26 -06:00
|
|
|
if (offsetErr) return rej('invalid offset param');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
// Get 'sort' parameter
|
2017-03-08 12:50:09 -06:00
|
|
|
const [sort = 'desc', sortError] = $(params.sort).optional.string().or('desc asc').$;
|
2017-03-02 15:48:26 -06:00
|
|
|
if (sortError) return rej('invalid sort param');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
// Lookup note
|
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: noteId
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Issue query
|
2018-04-07 12:30:37 -05:00
|
|
|
const replies = await Note
|
|
|
|
.find({ replyId: note._id }, {
|
2016-12-28 16:49:51 -06:00
|
|
|
limit: limit,
|
|
|
|
skip: offset,
|
|
|
|
sort: {
|
|
|
|
_id: sort == 'asc' ? 1 : -1
|
|
|
|
}
|
2017-01-16 20:11:22 -06:00
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
// Serialize
|
2018-04-07 12:30:37 -05:00
|
|
|
res(await Promise.all(replies.map(async note =>
|
|
|
|
await pack(note, user))));
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|