mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 16:03:09 +02:00
40 lines
940 B
TypeScript
40 lines
940 B
TypeScript
import $ from 'cafy';
|
|
import App, { pack } from '../../../../models/app';
|
|
import { ILocalUser } from '../../../../models/user';
|
|
|
|
export const meta = {
|
|
desc: {
|
|
'ja-JP': '自分のアプリケーション一覧を取得します。',
|
|
'en-US': 'Get my apps'
|
|
},
|
|
|
|
requireCredential: true
|
|
};
|
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
|
// Get 'limit' parameter
|
|
const [limit = 10, limitErr] = $.num.optional.range(1, 100).get(params.limit);
|
|
if (limitErr) return rej('invalid limit param');
|
|
|
|
// Get 'offset' parameter
|
|
const [offset = 0, offsetErr] = $.num.optional.min(0).get(params.offset);
|
|
if (offsetErr) return rej('invalid offset param');
|
|
|
|
const query = {
|
|
userId: user._id
|
|
};
|
|
|
|
// Execute query
|
|
const apps = await App
|
|
.find(query, {
|
|
limit: limit,
|
|
skip: offset,
|
|
sort: {
|
|
_id: -1
|
|
}
|
|
});
|
|
|
|
// Reply
|
|
res(await Promise.all(apps.map(async app =>
|
|
await pack(app))));
|
|
});
|