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