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

46 lines
917 B
TypeScript
Raw Normal View History

2016-12-28 22:49:51 +00:00
'use strict';
/**
* Module dependencies
*/
2017-03-02 23:24:48 +00:00
import it from '../../it';
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
*/
module.exports = (params, user) =>
new Promise(async (res, rej) =>
{
// Get 'limit' parameter
2017-03-02 23:24:48 +00:00
const [limit, limitErr] = it(params.limit).expect.number().range(1, 100).default(10).qed();
if (limitErr) return rej('invalid limit param');
2016-12-28 22:49:51 +00:00
// Get 'offset' parameter
2017-03-02 23:24:48 +00:00
const [offset, offsetErr] = it(params.offset).expect.number().min(0).default(0).qed();
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))));
});