2017-03-09 03:50:09 +09:00
|
|
|
import $ from 'cafy';
|
2018-11-02 13:47:44 +09:00
|
|
|
import define from '../../define';
|
2019-04-07 21:50:36 +09:00
|
|
|
import { Apps } from '../../../../models';
|
2021-03-23 17:43:07 +09:00
|
|
|
import { genId } from '@/misc/gen-id';
|
2019-04-15 03:48:54 +09:00
|
|
|
import { unique } from '../../../../prelude/array';
|
2021-03-23 17:43:07 +09:00
|
|
|
import { secureRndstr } from '@/misc/secure-rndstr';
|
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: ['app'],
|
|
|
|
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: false as const,
|
2019-04-23 22:35:26 +09:00
|
|
|
|
2018-11-02 12:49:08 +09:00
|
|
|
params: {
|
|
|
|
name: {
|
2019-04-15 23:26:20 +09:00
|
|
|
validator: $.str,
|
2018-11-02 12:49:08 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
description: {
|
2019-04-15 23:26:20 +09:00
|
|
|
validator: $.str,
|
2018-11-02 12:49:08 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
permission: {
|
2019-04-15 23:26:20 +09:00
|
|
|
validator: $.arr($.str).unique(),
|
2018-11-02 12:49:08 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
// TODO: Check it is valid url
|
|
|
|
callbackUrl: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.nullable.str,
|
2019-04-15 23:26:20 +09:00
|
|
|
default: null as any,
|
2018-11-02 12:49:08 +09:00
|
|
|
},
|
2019-04-15 23:26:20 +09:00
|
|
|
},
|
2019-04-23 22:35:26 +09:00
|
|
|
|
2019-04-15 23:26:20 +09:00
|
|
|
res: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 22:35:26 +09:00
|
|
|
ref: 'App',
|
|
|
|
},
|
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
|
|
|
// Generate secret
|
2020-03-29 23:16:36 +09:00
|
|
|
const secret = secureRndstr(32, true);
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2019-04-15 03:48:54 +09:00
|
|
|
// for backward compatibility
|
|
|
|
const permission = unique(ps.permission.map(v => v.replace(/^(.+)(\/|-)(read|write)$/, '$3:$1')));
|
|
|
|
|
2016-12-29 07:49:51 +09:00
|
|
|
// Create account
|
2019-04-07 21:50:36 +09:00
|
|
|
const app = await Apps.save({
|
|
|
|
id: genId(),
|
2018-03-29 14:48:47 +09:00
|
|
|
createdAt: new Date(),
|
2019-04-13 19:36:57 +09:00
|
|
|
userId: user ? user.id : null,
|
2018-11-06 01:51:42 +09:00
|
|
|
name: ps.name,
|
2018-11-02 12:49:08 +09:00
|
|
|
description: ps.description,
|
2019-04-15 03:48:54 +09:00
|
|
|
permission,
|
2018-11-02 12:49:08 +09:00
|
|
|
callbackUrl: ps.callbackUrl,
|
2016-12-29 07:49:51 +09:00
|
|
|
secret: secret
|
|
|
|
});
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
return await Apps.pack(app, null, {
|
2018-11-01 09:19:22 +09:00
|
|
|
detail: true,
|
2018-08-19 18:38:02 +09:00
|
|
|
includeSecret: true
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|
|
|
|
});
|