paricafe/src/api/endpoints/posts/show.ts

34 lines
642 B
TypeScript
Raw Normal View History

2016-12-28 16:49:51 -06:00
/**
* Module dependencies
*/
2017-03-08 12:50:09 -06:00
import $ from 'cafy';
2016-12-28 16:49:51 -06:00
import Post from '../../models/post';
import serialize from '../../serializers/post';
/**
* Show a post
*
2017-03-01 02:37:01 -06:00
* @param {any} params
* @param {any} user
* @return {Promise<any>}
2016-12-28 16:49:51 -06:00
*/
2017-03-03 13:28:38 -06:00
module.exports = (params, user) => new Promise(async (res, rej) => {
2016-12-28 16:49:51 -06:00
// Get 'post_id' parameter
2017-03-08 12:50:09 -06:00
const [postId, postIdErr] = $(params.post_id).id().$;
2017-03-02 15:48:26 -06:00
if (postIdErr) return rej('invalid post_id param');
2017-01-20 16:46:43 -06:00
2016-12-28 16:49:51 -06:00
// Get post
const post = await Post.findOne({
2017-03-02 15:48:26 -06:00
_id: postId
2016-12-28 16:49:51 -06:00
});
if (post === null) {
return rej('post not found');
}
// Serialize
res(await serialize(post, user, {
2017-02-13 22:59:26 -06:00
detail: true
2016-12-28 16:49:51 -06:00
}));
});