sharkey/src/server/api/endpoints/my/apps.ts

41 lines
839 B
TypeScript
Raw Normal View History

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