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