iceshrimp-legacy/src/api/endpoints/i/authorized_apps.ts

44 lines
1.1 KiB
TypeScript
Raw Normal View History

2017-02-08 16:11:16 +01:00
/**
* Module dependencies
*/
2017-03-05 04:00:39 +01:00
import it from 'cafy';
2017-02-08 16:11:16 +01:00
import AccessToken from '../../models/access-token';
import serialize from '../../serializers/app';
/**
* Get authorized apps of my account
*
2017-03-01 09:37:01 +01:00
* @param {any} params
* @param {any} user
* @return {Promise<any>}
2017-02-08 16:11:16 +01:00
*/
2017-03-03 20:28:38 +01:00
module.exports = (params, user) => new Promise(async (res, rej) => {
2017-02-08 16:11:16 +01:00
// Get 'limit' parameter
2017-03-05 04:00:39 +01:00
const [limit = 10, limitErr] = it(params.limit).expect.number().range(1, 100).get();
2017-03-03 00:56:07 +01:00
if (limitErr) return rej('invalid limit param');
2017-02-08 16:11:16 +01:00
// Get 'offset' parameter
2017-03-05 04:00:39 +01:00
const [offset = 0, offsetErr] = it(params.offset).expect.number().min(0).get();
2017-03-03 00:56:07 +01:00
if (offsetErr) return rej('invalid offset param');
2017-02-08 16:11:16 +01:00
// Get 'sort' parameter
2017-03-05 04:00:39 +01:00
const [sort = 'desc', sortError] = it(params.sort).expect.string().or('desc asc').get();
2017-03-03 00:56:07 +01:00
if (sortError) return rej('invalid sort param');
2017-02-08 16:11:16 +01:00
// Get tokens
const tokens = await AccessToken
.find({
user_id: user._id
}, {
limit: limit,
skip: offset,
sort: {
_id: sort == 'asc' ? 1 : -1
}
});
// Serialize
res(await Promise.all(tokens.map(async token =>
await serialize(token.app_id))));
});