rudeshark.net/src/server/api/endpoints/channels/posts.ts

79 lines
1.7 KiB
TypeScript
Raw Normal View History

2017-10-31 16:10:30 +01:00
/**
* Module dependencies
*/
import $ from 'cafy';
2018-03-29 13:32:18 +02:00
import { default as Channel, IChannel } from '../../../../models/channel';
import Post, { pack } from '../../../../models/post';
2017-10-31 16:10:30 +01:00
/**
* Show a posts of a channel
*
* @param {any} params
* @param {any} user
* @return {Promise<any>}
*/
module.exports = (params, user) => new Promise(async (res, rej) => {
// Get 'limit' parameter
const [limit = 1000, limitErr] = $(params.limit).optional.number().range(1, 1000).$;
if (limitErr) return rej('invalid limit param');
2018-03-29 07:48:47 +02:00
// Get 'sinceId' parameter
const [sinceId, sinceIdErr] = $(params.sinceId).optional.id().$;
if (sinceIdErr) return rej('invalid sinceId param');
2017-10-31 16:10:30 +01:00
2018-03-29 07:48:47 +02:00
// Get 'untilId' parameter
const [untilId, untilIdErr] = $(params.untilId).optional.id().$;
if (untilIdErr) return rej('invalid untilId param');
2017-10-31 16:10:30 +01:00
2018-03-29 07:48:47 +02:00
// Check if both of sinceId and untilId is specified
2017-12-20 18:20:02 +01:00
if (sinceId && untilId) {
2018-03-29 07:48:47 +02:00
return rej('cannot set sinceId and untilId');
2017-10-31 16:10:30 +01:00
}
2018-03-29 07:48:47 +02:00
// Get 'channelId' parameter
const [channelId, channelIdErr] = $(params.channelId).id().$;
if (channelIdErr) return rej('invalid channelId param');
2017-10-31 16:10:30 +01:00
// Fetch channel
const channel: IChannel = await Channel.findOne({
_id: channelId
});
if (channel === null) {
return rej('channel not found');
}
//#region Construct query
const sort = {
_id: -1
};
const query = {
2018-03-29 07:48:47 +02:00
channelId: channel._id
2017-10-31 16:10:30 +01:00
} as any;
if (sinceId) {
sort._id = 1;
query._id = {
$gt: sinceId
};
2017-12-20 18:20:02 +01:00
} else if (untilId) {
2017-10-31 16:10:30 +01:00
query._id = {
2017-12-20 18:20:02 +01:00
$lt: untilId
2017-10-31 16:10:30 +01:00
};
}
//#endregion Construct query
// Issue query
const posts = await Post
.find(query, {
limit: limit,
sort: sort
});
// Serialize
res(await Promise.all(posts.map(async (post) =>
2018-02-02 00:21:30 +01:00
await pack(post, user)
2017-10-31 16:10:30 +01:00
)));
});