60 lines
1.3 KiB
TypeScript
60 lines
1.3 KiB
TypeScript
|
/**
|
||
|
* Module dependencies
|
||
|
*/
|
||
|
import $ from 'cafy';
|
||
|
import Channel from '../models/channel';
|
||
|
import serialize from '../serializers/channel';
|
||
|
|
||
|
/**
|
||
|
* Get all channels
|
||
|
*
|
||
|
* @param {any} params
|
||
|
* @param {any} me
|
||
|
* @return {Promise<any>}
|
||
|
*/
|
||
|
module.exports = (params, me) => new Promise(async (res, rej) => {
|
||
|
// Get 'limit' parameter
|
||
|
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$;
|
||
|
if (limitErr) return rej('invalid limit param');
|
||
|
|
||
|
// Get 'since_id' parameter
|
||
|
const [sinceId, sinceIdErr] = $(params.since_id).optional.id().$;
|
||
|
if (sinceIdErr) return rej('invalid since_id param');
|
||
|
|
||
|
// Get 'max_id' parameter
|
||
|
const [maxId, maxIdErr] = $(params.max_id).optional.id().$;
|
||
|
if (maxIdErr) return rej('invalid max_id param');
|
||
|
|
||
|
// Check if both of since_id and max_id is specified
|
||
|
if (sinceId && maxId) {
|
||
|
return rej('cannot set since_id and max_id');
|
||
|
}
|
||
|
|
||
|
// 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
|
||
|
};
|
||
|
}
|
||
|
|
||
|
// Issue query
|
||
|
const channels = await Channel
|
||
|
.find(query, {
|
||
|
limit: limit,
|
||
|
sort: sort
|
||
|
});
|
||
|
|
||
|
// Serialize
|
||
|
res(await Promise.all(channels.map(async channel =>
|
||
|
await serialize(channel, me))));
|
||
|
});
|