2016-12-28 23:49:51 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import * as mongo from 'mongodb';
|
|
|
|
import Post from '../../models/post';
|
|
|
|
import serialize from '../../serializers/post';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show 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
|
|
|
|
const postId = params.post_id;
|
|
|
|
if (postId === undefined || postId === null) {
|
|
|
|
return rej('post_id is required');
|
|
|
|
}
|
|
|
|
|
2017-01-20 23:46:43 +01:00
|
|
|
// Validate id
|
|
|
|
if (!mongo.ObjectID.isValid(postId)) {
|
|
|
|
return rej('incorrect post_id');
|
|
|
|
}
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
// Get post
|
|
|
|
const post = await Post.findOne({
|
|
|
|
_id: new mongo.ObjectID(postId)
|
|
|
|
});
|
|
|
|
|
|
|
|
if (post === null) {
|
|
|
|
return rej('post not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Serialize
|
|
|
|
res(await serialize(post, user, {
|
2017-02-14 05:59:26 +01:00
|
|
|
detail: true
|
2016-12-28 23:49:51 +01:00
|
|
|
}));
|
|
|
|
});
|