misskey/src/api/endpoints/posts.js

88 lines
1.7 KiB
JavaScript
Raw Normal View History

2016-12-28 22:49:51 +00:00
'use strict';
/**
* Module dependencies
*/
import Post from '../models/post';
import serialize from '../serializers/post';
/**
* Lists all posts
*
2017-03-01 08:37:01 +00:00
* @param {any} params
* @return {Promise<any>}
2016-12-28 22:49:51 +00:00
*/
module.exports = (params) =>
2017-03-01 08:37:01 +00:00
new Promise(async (res, rej) => {
// Get 'include_replies' parameter
let includeReplies = params.include_replies;
if (includeReplies === true) {
includeReplies = true;
} else {
includeReplies = false;
}
2017-02-27 07:51:08 +00:00
2017-03-01 08:37:01 +00:00
// Get 'include_reposts' parameter
let includeReposts = params.include_reposts;
if (includeReposts === true) {
includeReposts = true;
} else {
includeReposts = false;
}
2017-02-27 07:51:08 +00:00
2017-03-01 08:37:01 +00:00
// Get 'limit' parameter
let limit = params.limit;
if (limit !== undefined && limit !== null) {
limit = parseInt(limit, 10);
2016-12-28 22:49:51 +00:00
2017-03-01 08:37:01 +00:00
// From 1 to 100
if (!(1 <= limit && limit <= 100)) {
return rej('invalid limit range');
}
} else {
limit = 10;
2016-12-28 22:49:51 +00:00
}
2017-03-01 08:37:01 +00:00
const since = params.since_id || null;
const max = params.max_id || null;
2016-12-28 22:49:51 +00:00
2017-03-01 08:37:01 +00:00
// Check if both of since_id and max_id is specified
if (since !== null && max !== null) {
return rej('cannot set since_id and max_id');
}
2016-12-28 22:49:51 +00:00
2017-03-01 08:37:01 +00:00
// Construct query
const sort = {
_id: -1
2016-12-28 22:49:51 +00:00
};
2017-03-01 08:37:01 +00:00
const query = {};
if (since !== null) {
sort._id = 1;
query._id = {
$gt: new mongo.ObjectID(since)
};
} else if (max !== null) {
query._id = {
$lt: new mongo.ObjectID(max)
};
}
2016-12-28 22:49:51 +00:00
2017-03-01 08:37:01 +00:00
if (!includeReplies) {
query.reply_to_id = null;
}
2017-02-27 07:51:08 +00:00
2017-03-01 08:37:01 +00:00
if (!includeReposts) {
query.repost_id = null;
}
2017-02-27 07:51:08 +00:00
2017-03-01 08:37:01 +00:00
// Issue query
const posts = await Post
.find(query, {
limit: limit,
sort: sort
});
2016-12-28 22:49:51 +00:00
2017-03-01 08:37:01 +00:00
// Serialize
res(await Promise.all(posts.map(async post => await serialize(post))));
});