2018-04-24 11:13:06 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-06-18 02:54:53 +02:00
|
|
|
import Note, { pack, INote } from '../../../../models/note';
|
|
|
|
import { ILocalUser } from '../../../../models/user';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
2018-05-25 14:05:16 +02:00
|
|
|
* Show conversation of a note
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2018-06-18 02:54:53 +02:00
|
|
|
module.exports = (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');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get 'limit' parameter
|
2018-07-05 16:36:07 +02:00
|
|
|
const [limit = 10, limitErr] = $.num.optional.range(1, 100).get(params.limit);
|
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
|
2018-07-05 16:36:07 +02:00
|
|
|
const [offset = 0, offsetErr] = $.num.optional.min(0).get(params.offset);
|
2017-03-02 22:48:26 +01:00
|
|
|
if (offsetErr) return rej('invalid offset 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
|
|
|
}
|
|
|
|
|
2018-06-18 02:54:53 +02:00
|
|
|
const conversation: INote[] = [];
|
2016-12-28 23:49:51 +01:00
|
|
|
let i = 0;
|
|
|
|
|
2018-06-18 02:54:53 +02:00
|
|
|
async function get(id: any) {
|
2016-12-28 23:49:51 +01:00
|
|
|
i++;
|
2018-04-07 19:30:37 +02:00
|
|
|
const p = await Note.findOne({ _id: id });
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
if (i > offset) {
|
2018-05-25 14:05:16 +02:00
|
|
|
conversation.push(p);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2018-05-25 14:05:16 +02:00
|
|
|
if (conversation.length == limit) {
|
2016-12-28 23:49:51 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
if (p.replyId) {
|
|
|
|
await get(p.replyId);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
if (note.replyId) {
|
|
|
|
await get(note.replyId);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Serialize
|
2018-05-25 14:05:16 +02:00
|
|
|
res(await Promise.all(conversation.map(note => pack(note, user))));
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|