misskey/src/api/serializers/post.ts

175 lines
3.3 KiB
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Module dependencies
*/
import * as mongo from 'mongodb';
2017-03-18 12:05:11 +01:00
import deepcopy = require('deepcopy');
2017-09-08 10:24:11 +02:00
import { default as Post, IPost } from '../models/post';
2017-03-19 20:24:19 +01:00
import Reaction from '../models/post-reaction';
2017-09-08 10:24:11 +02:00
import { IUser } from '../models/user';
2017-02-14 05:59:26 +01:00
import Vote from '../models/poll-vote';
2017-02-08 15:37:37 +01:00
import serializeApp from './app';
2017-10-31 17:38:19 +01:00
import serializeChannel from './channel';
2016-12-28 23:49:51 +01:00
import serializeUser from './user';
import serializeDriveFile from './drive-file';
2017-03-18 12:05:11 +01:00
import parse from '../common/text';
2016-12-28 23:49:51 +01:00
/**
* Serialize a post
*
2017-09-08 10:24:11 +02:00
* @param post target
* @param me? serializee
* @param options? serialize options
* @return response
2016-12-28 23:49:51 +01:00
*/
const self = (
2017-09-08 10:24:11 +02:00
post: string | mongo.ObjectID | IPost,
me?: string | mongo.ObjectID | IUser,
2016-12-28 23:49:51 +01:00
options?: {
2017-02-14 05:59:26 +01:00
detail: boolean
2016-12-28 23:49:51 +01:00
}
2017-03-01 09:37:01 +01:00
) => new Promise<any>(async (resolve, reject) => {
2016-12-28 23:49:51 +01:00
const opts = options || {
2017-02-14 05:59:26 +01:00
detail: true,
2016-12-28 23:49:51 +01:00
};
2017-09-08 10:24:11 +02:00
// Me
const meId: mongo.ObjectID = me
2017-09-08 13:49:53 +02:00
? mongo.ObjectID.prototype.isPrototypeOf(me)
? me as mongo.ObjectID
: typeof me === 'string'
? new mongo.ObjectID(me)
: (me as IUser)._id
: null;
2017-09-08 10:24:11 +02:00
2016-12-28 23:49:51 +01:00
let _post: any;
// Populate the post if 'post' is ID
if (mongo.ObjectID.prototype.isPrototypeOf(post)) {
_post = await Post.findOne({
_id: post
});
} else if (typeof post === 'string') {
_post = await Post.findOne({
_id: new mongo.ObjectID(post)
});
} else {
_post = deepcopy(post);
}
const id = _post._id;
// Rename _id to id
_post.id = _post._id;
delete _post._id;
delete _post.mentions;
2017-03-18 12:05:11 +01:00
// Parse text
if (_post.text) {
_post.ast = parse(_post.text);
}
2016-12-28 23:49:51 +01:00
// Populate user
2017-09-08 10:24:11 +02:00
_post.user = await serializeUser(_post.user_id, meId);
2016-12-28 23:49:51 +01:00
2017-02-08 15:37:37 +01:00
// Populate app
if (_post.app_id) {
_post.app = await serializeApp(_post.app_id);
}
2017-10-31 17:38:19 +01:00
// Populate channel
if (_post.channel_id) {
_post.channel = await serializeChannel(_post.channel_id);
}
// Populate media
2016-12-28 23:49:51 +01:00
if (_post.media_ids) {
_post.media = await Promise.all(_post.media_ids.map(async fileId =>
await serializeDriveFile(fileId)
));
}
2017-08-27 17:03:57 +02:00
// When requested a detailed post data
if (opts.detail) {
// Get previous post info
const prev = await Post.findOne({
user_id: _post.user_id,
_id: {
$lt: id
}
}, {
fields: {
_id: true
},
sort: {
_id: -1
}
2016-12-28 23:49:51 +01:00
});
2017-08-27 17:03:57 +02:00
_post.prev = prev ? prev._id : null;
// Get next post info
const next = await Post.findOne({
user_id: _post.user_id,
_id: {
$gt: id
}
}, {
fields: {
_id: true
},
sort: {
_id: 1
}
2016-12-28 23:49:51 +01:00
});
2017-08-27 17:03:57 +02:00
_post.next = next ? next._id : null;
2016-12-28 23:49:51 +01:00
2017-11-01 02:22:40 +01:00
if (_post.reply_id) {
2017-08-27 17:03:57 +02:00
// Populate reply to post
2017-11-01 02:22:40 +01:00
_post.reply = await self(_post.reply_id, meId, {
2017-08-27 17:03:57 +02:00
detail: false
2017-02-14 05:59:26 +01:00
});
}
2017-08-27 17:03:57 +02:00
if (_post.repost_id) {
// Populate repost
2017-09-08 10:24:11 +02:00
_post.repost = await self(_post.repost_id, meId, {
2017-08-27 17:03:57 +02:00
detail: _post.text == null
2016-12-28 23:49:51 +01:00
});
2017-08-27 17:03:57 +02:00
}
// Poll
2017-09-08 10:24:11 +02:00
if (meId && _post.poll) {
2017-08-27 17:03:57 +02:00
const vote = await Vote
.findOne({
2017-09-08 10:24:11 +02:00
user_id: meId,
2017-08-27 17:03:57 +02:00
post_id: id
});
if (vote != null) {
2017-09-08 13:49:53 +02:00
const myChoice = _post.poll.choices
.filter(c => c.id == vote.choice)[0];
myChoice.is_voted = true;
2017-08-27 17:03:57 +02:00
}
}
2016-12-28 23:49:51 +01:00
2017-08-27 17:03:57 +02:00
// Fetch my reaction
2017-09-08 10:24:11 +02:00
if (meId) {
2017-08-27 17:03:57 +02:00
const reaction = await Reaction
.findOne({
2017-09-08 10:24:11 +02:00
user_id: meId,
2017-08-27 17:03:57 +02:00
post_id: id,
deleted_at: { $exists: false }
});
if (reaction) {
_post.my_reaction = reaction.reaction;
}
2017-03-19 20:24:19 +01:00
}
2016-12-28 23:49:51 +01:00
}
resolve(_post);
});
export default self;