2021-08-19 12:55:45 +00:00
|
|
|
import define from '../../define';
|
|
|
|
import { Apps } from '@/models/index';
|
|
|
|
import { genId } from '@/misc/gen-id';
|
2021-08-19 13:04:15 +00:00
|
|
|
import { unique } from '@/prelude/array';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { secureRndstr } from '@/misc/secure-rndstr';
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-07-16 19:36:44 +00:00
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['app'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: false,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
2019-04-15 14:26:20 +00:00
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'App',
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-07-16 19:36:44 +00:00
|
|
|
|
2022-02-19 05:05:32 +00:00
|
|
|
const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
name: { type: 'string' },
|
|
|
|
description: { type: 'string' },
|
|
|
|
permission: { type: 'array', uniqueItems: true, items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
|
|
|
callbackUrl: { type: 'string', nullable: true },
|
|
|
|
},
|
|
|
|
required: ['name', 'description', 'permission'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2016-12-28 22:49:51 +00:00
|
|
|
// Generate secret
|
2020-03-29 14:16:36 +00:00
|
|
|
const secret = secureRndstr(32, true);
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2019-04-14 18:48:54 +00:00
|
|
|
// for backward compatibility
|
|
|
|
const permission = unique(ps.permission.map(v => v.replace(/^(.+)(\/|-)(read|write)$/, '$3:$1')));
|
|
|
|
|
2016-12-28 22:49:51 +00:00
|
|
|
// Create account
|
2022-01-25 15:51:26 +00:00
|
|
|
const app = await Apps.insert({
|
2019-04-07 12:50:36 +00:00
|
|
|
id: genId(),
|
2018-03-29 05:48:47 +00:00
|
|
|
createdAt: new Date(),
|
2019-04-13 10:36:57 +00:00
|
|
|
userId: user ? user.id : null,
|
2018-11-05 16:51:42 +00:00
|
|
|
name: ps.name,
|
2018-11-02 03:49:08 +00:00
|
|
|
description: ps.description,
|
2019-04-14 18:48:54 +00:00
|
|
|
permission,
|
2018-11-02 03:49:08 +00:00
|
|
|
callbackUrl: ps.callbackUrl,
|
2021-12-09 14:58:30 +00:00
|
|
|
secret: secret,
|
2022-01-25 15:51:26 +00:00
|
|
|
}).then(x => Apps.findOneOrFail(x.identifiers[0]));
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
return await Apps.pack(app, null, {
|
2018-11-01 00:19:22 +00:00
|
|
|
detail: true,
|
2021-12-09 14:58:30 +00:00
|
|
|
includeSecret: true,
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|
|
|
|
});
|