sharkey/src/server/api/endpoints/notes/replies.ts

34 lines
936 B
TypeScript
Raw Normal View History

2018-04-24 18:13:06 +09:00
import $ from 'cafy'; import ID from '../../../../cafy-id';
2018-04-08 02:30:37 +09:00
import Note, { pack } from '../../../../models/note';
2016-12-29 07:49:51 +09:00
/**
2018-05-29 00:36:52 +09:00
* GEt replies of 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
2018-05-02 18:06:16 +09:00
const [noteId, noteIdErr] = $.type(ID).get(params.noteId);
2018-04-08 02:30:37 +09:00
if (noteIdErr) return rej('invalid noteId param');
2016-12-29 07:49:51 +09:00
// Get 'limit' parameter
2018-05-02 18:06:16 +09:00
const [limit = 10, limitErr] = $.num.optional().range(1, 100).get(params.limit);
2017-03-03 06:48:26 +09:00
if (limitErr) return rej('invalid limit param');
2016-12-29 07:49:51 +09:00
// Get 'offset' parameter
2018-05-02 18:06:16 +09:00
const [offset = 0, offsetErr] = $.num.optional().min(0).get(params.offset);
2017-03-03 06:48:26 +09:00
if (offsetErr) return rej('invalid offset param');
2016-12-29 07:49:51 +09:00
2018-04-08 02:30:37 +09:00
// Lookup note
const note = await Note.findOne({
_id: noteId
2016-12-29 07:49:51 +09:00
});
2018-04-08 02:30:37 +09:00
if (note === null) {
return rej('note not found');
2016-12-29 07:49:51 +09:00
}
2018-05-29 00:36:52 +09:00
const ids = note._replyIds.slice(offset, offset + limit);
2016-12-29 07:49:51 +09:00
// Serialize
2018-05-29 00:36:52 +09:00
res(await Promise.all(ids.map(id => pack(id, user))));
2016-12-29 07:49:51 +09:00
});