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';
|
2018-11-01 21:49:08 -06:00
|
|
|
import getParams from '../../get-params';
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-07-16 13:36:44 -06:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 15:59:43 -06:00
|
|
|
'ja-JP': '自分のアプリケーション一覧を取得します。',
|
|
|
|
'en-US': 'Get my apps'
|
2018-07-16 13:36:44 -06:00
|
|
|
},
|
|
|
|
|
2018-11-01 21:49:08 -06:00
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
|
|
|
validator: $.num.optional.range(1, 100),
|
|
|
|
default: 10
|
|
|
|
},
|
|
|
|
|
|
|
|
offset: {
|
|
|
|
validator: $.num.optional.min(0),
|
|
|
|
default: 0
|
|
|
|
}
|
|
|
|
}
|
2018-07-16 13:36:44 -06:00
|
|
|
};
|
|
|
|
|
2018-07-05 11:58:29 -06:00
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2018-11-01 21:49:08 -06:00
|
|
|
const [ps, psErr] = getParams(meta, params);
|
|
|
|
if (psErr) return rej(psErr);
|
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, {
|
2018-11-01 21:49:08 -06:00
|
|
|
limit: ps.limit,
|
|
|
|
skip: ps.offset,
|
2016-12-28 15:49:51 -07:00
|
|
|
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
|
2018-10-31 18:19:22 -06:00
|
|
|
res(await Promise.all(apps.map(app => pack(app, user, {
|
|
|
|
detail: true
|
|
|
|
}))));
|
2016-12-28 15:49:51 -07:00
|
|
|
});
|