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