iceshrimp-legacy/src/api/endpoints/posts.ts

74 lines
1.7 KiB
TypeScript
Raw Normal View History

2017-03-03 00:06:34 +01:00
/**
* Module dependencies
*/
2017-03-08 19:50:09 +01:00
import $ from 'cafy';
2017-03-03 00:06:34 +01:00
import Post from '../models/post';
import serialize from '../serializers/post';
/**
* Lists all posts
*
* @param {any} params
* @return {Promise<any>}
*/
2017-03-03 20:28:38 +01:00
module.exports = (params) => new Promise(async (res, rej) => {
// Get 'include_replies' parameter
2017-03-08 19:50:09 +01:00
const [includeReplies = true, includeRepliesErr] = $(params.include_replies).optional.boolean().$;
2017-03-03 20:28:38 +01:00
if (includeRepliesErr) return rej('invalid include_replies param');
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
// Get 'include_reposts' parameter
2017-03-08 19:50:09 +01:00
const [includeReposts = true, includeRepostsErr] = $(params.include_reposts).optional.boolean().$;
2017-03-03 20:28:38 +01:00
if (includeRepostsErr) return rej('invalid include_reposts param');
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
// Get 'limit' parameter
2017-03-08 19:50:09 +01:00
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$;
2017-03-03 20:28:38 +01:00
if (limitErr) return rej('invalid limit param');
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
// Get 'since_id' parameter
2017-03-08 19:50:09 +01:00
const [sinceId, sinceIdErr] = $(params.since_id).optional.id().$;
2017-03-03 20:28:38 +01:00
if (sinceIdErr) return rej('invalid since_id param');
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
// Get 'max_id' parameter
2017-03-08 19:50:09 +01:00
const [maxId, maxIdErr] = $(params.max_id).optional.id().$;
2017-03-03 20:28:38 +01:00
if (maxIdErr) return rej('invalid max_id param');
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
// Check if both of since_id and max_id is specified
if (sinceId && maxId) {
return rej('cannot set since_id and max_id');
}
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
// Construct query
const sort = {
_id: -1
};
const query = {} as any;
if (sinceId) {
sort._id = 1;
query._id = {
$gt: sinceId
};
} else if (maxId) {
query._id = {
$lt: maxId
2017-03-03 00:06:34 +01:00
};
2017-03-03 20:28:38 +01:00
}
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
if (!includeReplies) {
query.reply_to_id = null;
}
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
if (!includeReposts) {
query.repost_id = null;
}
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
// Issue query
const posts = await Post
.find(query, {
limit: limit,
sort: sort
});
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
// Serialize
res(await Promise.all(posts.map(async post => await serialize(post))));
});