2016-12-28 23:49:51 +01:00
|
|
|
import rndstr from 'rndstr';
|
2017-03-08 19:50:09 +01:00
|
|
|
import $ from 'cafy';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { Apps } from '../../../../models';
|
|
|
|
import { genId } from '../../../../misc/gen-id';
|
2019-04-14 20:48:54 +02:00
|
|
|
import { unique } from '../../../../prelude/array';
|
2019-04-23 15:35:26 +02:00
|
|
|
import { types, bool } from '../../../../misc/schema';
|
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'],
|
|
|
|
|
2018-11-02 04:49:08 +01:00
|
|
|
requireCredential: false,
|
2019-04-23 15:35:26 +02:00
|
|
|
|
2019-04-15 16:26:20 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'アプリを作成します。',
|
|
|
|
'en-US': 'Create a application.'
|
|
|
|
},
|
2018-11-02 04:49:08 +01:00
|
|
|
|
|
|
|
params: {
|
|
|
|
name: {
|
2019-04-15 16:26:20 +02:00
|
|
|
validator: $.str,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'アプリの名前',
|
|
|
|
'en-US': 'Name of application'
|
|
|
|
}
|
2018-11-02 04:49:08 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
description: {
|
2019-04-15 16:26:20 +02:00
|
|
|
validator: $.str,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'アプリの説明',
|
|
|
|
'en-US': 'Description of application'
|
|
|
|
}
|
2018-11-02 04:49:08 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
permission: {
|
2019-04-15 16:26:20 +02:00
|
|
|
validator: $.arr($.str).unique(),
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'このアプリに割り当てる権限(権限については"Permissions"を参照)',
|
|
|
|
'en-US': 'Permissions assigned to this app (see "Permissions" for the permissions)'
|
|
|
|
}
|
2018-11-02 04:49:08 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// TODO: Check it is valid url
|
|
|
|
callbackUrl: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.nullable.str,
|
2019-04-15 16:26:20 +02:00
|
|
|
default: null as any,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'アプリ認証時にコールバックするURL',
|
|
|
|
'en-US': 'URL to call back at app authentication'
|
|
|
|
}
|
2018-11-02 04:49:08 +01:00
|
|
|
},
|
2019-04-15 16:26:20 +02:00
|
|
|
},
|
2019-04-23 15:35:26 +02:00
|
|
|
|
2019-04-15 16:26:20 +02:00
|
|
|
res: {
|
2019-04-23 15:35:26 +02:00
|
|
|
type: types.object,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
|
|
|
ref: 'App',
|
|
|
|
},
|
2018-07-16 21:36:44 +02:00
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2016-12-28 23:49:51 +01:00
|
|
|
// Generate secret
|
|
|
|
const secret = rndstr('a-zA-Z0-9', 32);
|
|
|
|
|
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
|
2019-04-07 14:50:36 +02:00
|
|
|
const app = await Apps.save({
|
|
|
|
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,
|
2016-12-28 23:49:51 +01:00
|
|
|
secret: secret
|
|
|
|
});
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await Apps.pack(app, null, {
|
2018-11-01 01:19:22 +01:00
|
|
|
detail: true,
|
2018-08-19 11:38:02 +02:00
|
|
|
includeSecret: true
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|
|
|
|
});
|