Sharkey/src/server/api/endpoints/i/authorized_apps.ts

40 lines
1.1 KiB
TypeScript
Raw Normal View History

2017-03-08 20:50:09 +02:00
import $ from 'cafy';
2018-03-29 14:32:18 +03:00
import AccessToken from '../../../../models/access-token';
import { pack } from '../../../../models/app';
2018-06-18 03:54:53 +03:00
import { ILocalUser } from '../../../../models/user';
2017-02-08 17:11:16 +02:00
2018-07-16 22:36:44 +03:00
export const meta = {
requireCredential: true,
secure: true
};
2018-07-05 20:58:29 +03:00
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
2017-02-08 17:11:16 +02:00
// Get 'limit' parameter
2018-07-05 17:36:07 +03:00
const [limit = 10, limitErr] = $.num.optional.range(1, 100).get(params.limit);
2017-03-03 01:56:07 +02:00
if (limitErr) return rej('invalid limit param');
2017-02-08 17:11:16 +02:00
// Get 'offset' parameter
2018-07-05 17:36:07 +03:00
const [offset = 0, offsetErr] = $.num.optional.min(0).get(params.offset);
2017-03-03 01:56:07 +02:00
if (offsetErr) return rej('invalid offset param');
2017-02-08 17:11:16 +02:00
// Get 'sort' parameter
2018-07-05 17:36:07 +03:00
const [sort = 'desc', sortError] = $.str.optional.or('desc asc').get(params.sort);
2017-03-03 01:56:07 +02:00
if (sortError) return rej('invalid sort param');
2017-02-08 17:11:16 +02:00
// Get tokens
const tokens = await AccessToken
.find({
2018-03-29 08:48:47 +03:00
userId: user._id
2017-02-08 17:11:16 +02:00
}, {
limit: limit,
skip: offset,
sort: {
_id: sort == 'asc' ? 1 : -1
}
});
// Serialize
res(await Promise.all(tokens.map(async token =>
2018-03-29 08:48:47 +03:00
await pack(token.appId))));
2017-02-08 17:11:16 +02:00
});