mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-19 15:46:28 +01:00
40 lines
745 B
JavaScript
40 lines
745 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Module dependencies
|
|
*/
|
|
import * as mongo from 'mongodb';
|
|
import Post from '../../models/post';
|
|
import serialize from '../../serializers/post';
|
|
|
|
/**
|
|
* Show a post
|
|
*
|
|
* @param {Object} params
|
|
* @param {Object} user
|
|
* @return {Promise<object>}
|
|
*/
|
|
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');
|
|
}
|
|
|
|
// 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, {
|
|
serializeReplyTo: true,
|
|
includeIsLiked: true
|
|
}));
|
|
});
|