2017-03-08 19:50:09 +01:00
|
|
|
import $ from 'cafy';
|
2021-08-19 14:55:45 +02:00
|
|
|
import define from '../../define';
|
|
|
|
import { Apps } from '@/models/index';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['account', 'app'],
|
|
|
|
|
2020-02-15 13:33:32 +01:00
|
|
|
requireCredential: true as const,
|
2018-11-02 04:49:08 +01:00
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 15:58:30 +01:00
|
|
|
default: 10,
|
2018-11-02 04:49:08 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
offset: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.min(0),
|
2021-12-09 15:58:30 +01:00
|
|
|
default: 0,
|
|
|
|
},
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
id: {
|
|
|
|
type: 'string' as const,
|
2021-12-09 15:58:30 +01:00
|
|
|
optional: false as const, nullable: false as const,
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
name: {
|
|
|
|
type: 'string' as const,
|
2021-12-09 15:58:30 +01:00
|
|
|
optional: false as const, nullable: false as const,
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
callbackUrl: {
|
|
|
|
type: 'string' as const,
|
2021-12-09 15:58:30 +01:00
|
|
|
optional: false as const, nullable: false as const,
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
permission: {
|
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'string' as const,
|
2021-12-09 15:58:30 +01:00
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
secret: {
|
|
|
|
type: 'string' as const,
|
2021-12-09 15:58:30 +01:00
|
|
|
optional: true as const, nullable: false as const,
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
isAuthorized: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
appId: {
|
|
|
|
type: 'string' as const,
|
2021-12-09 15:58:30 +01:00
|
|
|
optional: false as const, nullable: false as const,
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
userId: {
|
|
|
|
type: 'string' as const,
|
2021-12-09 15:58:30 +01:00
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-07-16 21:36:44 +02:00
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2016-12-28 23:49:51 +01:00
|
|
|
const query = {
|
2021-12-09 15:58:30 +01:00
|
|
|
userId: user.id,
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const apps = await Apps.find({
|
|
|
|
where: query,
|
2019-04-12 18:43:22 +02:00
|
|
|
take: ps.limit!,
|
2019-04-07 14:50:36 +02:00
|
|
|
skip: ps.offset,
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await Promise.all(apps.map(app => Apps.pack(app, user, {
|
2021-12-09 15:58:30 +01:00
|
|
|
detail: true,
|
2019-02-22 03:46:58 +01:00
|
|
|
})));
|
|
|
|
});
|