2016-12-28 23:49:51 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-02 18:42:17 +01:00
|
|
|
import it from '../../it';
|
2016-12-28 23:49:51 +01:00
|
|
|
import Post from '../../models/post';
|
|
|
|
import serialize from '../../serializers/post';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a context of a post
|
|
|
|
*
|
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
|
|
|
*/
|
|
|
|
module.exports = (params, user) =>
|
|
|
|
new Promise(async (res, rej) =>
|
|
|
|
{
|
|
|
|
// Get 'post_id' parameter
|
2017-03-02 18:42:17 +01:00
|
|
|
const [postId, postIdErr] = it(params.post_id, 'id', true);
|
2017-03-02 09:08:09 +01:00
|
|
|
if (postIdErr) return rej('invalid post_id');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get 'limit' parameter
|
2017-03-02 18:42:17 +01:00
|
|
|
const [limit, limitErr] = it(params.limit).expect.number().range(1, 100).default(10).qed();
|
2017-03-02 09:08:09 +01:00
|
|
|
if (limitErr) return rej('invalid limit');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get 'offset' parameter
|
2017-03-02 18:42:17 +01:00
|
|
|
const [offset, offsetErr] = it(params.limit).expect.number().min(0).default(0).qed();
|
|
|
|
if (offsetErr) return rej('invalid offset');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Lookup post
|
|
|
|
const post = await Post.findOne({
|
2017-03-02 18:42:17 +01:00
|
|
|
_id: postId
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (post === null) {
|
2017-03-02 18:42:17 +01:00
|
|
|
return rej('post not found');
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const context = [];
|
|
|
|
let i = 0;
|
|
|
|
|
|
|
|
async function get(id) {
|
|
|
|
i++;
|
|
|
|
const p = await Post.findOne({ _id: id });
|
|
|
|
|
|
|
|
if (i > offset) {
|
|
|
|
context.push(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (context.length == limit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p.reply_to_id) {
|
|
|
|
await get(p.reply_to_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (post.reply_to_id) {
|
|
|
|
await get(post.reply_to_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Serialize
|
|
|
|
res(await Promise.all(context.map(async post =>
|
|
|
|
await serialize(post, user))));
|
|
|
|
});
|