2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-05 04:00:39 +01:00
|
|
|
import it from 'cafy';
|
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
|
|
|
*/
|
2017-03-03 20:28:38 +01:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
2016-12-28 23:49:51 +01:00
|
|
|
// Get 'post_id' parameter
|
2017-03-05 04:09:34 +01:00
|
|
|
const [postId, postIdErr] = it(params.post_id, 'id!').get();
|
2017-03-02 22:48:26 +01:00
|
|
|
if (postIdErr) return rej('invalid post_id param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get 'limit' parameter
|
2017-03-05 04:00:39 +01:00
|
|
|
const [limit = 10, limitErr] = it(params.limit).expect.number().range(1, 100).get();
|
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-05 04:00:39 +01:00
|
|
|
const [offset = 0, offsetErr] = it(params.offset).expect.number().min(0).get();
|
2017-03-02 22:48:26 +01:00
|
|
|
if (offsetErr) return rej('invalid offset param');
|
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))));
|
|
|
|
});
|