Sharkey/src/api/endpoints/my/apps.ts

42 lines
876 B
TypeScript
Raw Normal View History

2016-12-28 22:49:51 +00:00
/**
* Module dependencies
*/
2017-03-08 18:50:09 +00:00
import $ from 'cafy';
2016-12-28 22:49:51 +00:00
import App from '../../models/app';
import serialize from '../../serializers/app';
/**
* Get my apps
*
2017-03-01 08:37:01 +00:00
* @param {any} params
* @param {any} user
* @return {Promise<any>}
2016-12-28 22:49:51 +00:00
*/
2017-03-03 19:28:38 +00:00
module.exports = (params, user) => new Promise(async (res, rej) => {
2016-12-28 22:49:51 +00:00
// Get 'limit' parameter
2017-03-08 18:50:09 +00:00
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$;
2017-03-02 23:24:48 +00:00
if (limitErr) return rej('invalid limit param');
2016-12-28 22:49:51 +00:00
// Get 'offset' parameter
2017-03-08 18:50:09 +00:00
const [offset = 0, offsetErr] = $(params.offset).optional.number().min(0).$;
2017-03-02 23:24:48 +00:00
if (offsetErr) return rej('invalid offset param');
2016-12-28 22:49:51 +00:00
const query = {
user_id: user._id
};
// Execute query
const apps = await App
2017-01-17 02:11:22 +00:00
.find(query, {
2016-12-28 22:49:51 +00:00
limit: limit,
skip: offset,
sort: {
2017-01-23 05:53:46 +00:00
_id: -1
2016-12-28 22:49:51 +00:00
}
2017-01-17 02:11:22 +00:00
});
2016-12-28 22:49:51 +00:00
// Reply
res(await Promise.all(apps.map(async app =>
await serialize(app))));
});