2017-03-08 18:50:09 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 09:33:41 +00:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { Apps } from '@/models/index.js';
|
|
|
|
import { genId } from '@/misc/gen-id.js';
|
|
|
|
import { unique } from '../../../../prelude/array.js';
|
|
|
|
import { secureRndstr } from '@/misc/secure-rndstr.js';
|
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'],
|
|
|
|
|
2020-02-15 12:33:32 +00:00
|
|
|
requireCredential: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
2018-11-02 03:49:08 +00:00
|
|
|
params: {
|
|
|
|
name: {
|
2019-04-15 14:26:20 +00:00
|
|
|
validator: $.str,
|
2018-11-02 03:49:08 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
description: {
|
2019-04-15 14:26:20 +00:00
|
|
|
validator: $.str,
|
2018-11-02 03:49:08 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
permission: {
|
2019-04-15 14:26:20 +00:00
|
|
|
validator: $.arr($.str).unique(),
|
2018-11-02 03:49:08 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// TODO: Check it is valid url
|
|
|
|
callbackUrl: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2021-06-08 05:14:58 +00:00
|
|
|
default: null,
|
2018-11-02 03:49:08 +00:00
|
|
|
},
|
2019-04-15 14:26:20 +00:00
|
|
|
},
|
2019-04-23 13:35:26 +00:00
|
|
|
|
2019-04-15 14:26:20 +00:00
|
|
|
res: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'App',
|
|
|
|
},
|
2018-07-16 19:36:44 +00:00
|
|
|
};
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, 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
|
2019-04-07 12:50:36 +00:00
|
|
|
const app = await Apps.save({
|
|
|
|
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,
|
2016-12-28 22:49:51 +00:00
|
|
|
secret: secret
|
|
|
|
});
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
return await Apps.pack(app, null, {
|
2018-11-01 00:19:22 +00:00
|
|
|
detail: true,
|
2018-08-19 09:38:02 +00:00
|
|
|
includeSecret: true
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|
|
|
|
});
|