2016-12-29 00:49:51 +02:00
|
|
|
import rndstr from 'rndstr';
|
2017-03-08 20:50:09 +02:00
|
|
|
import $ from 'cafy';
|
2018-08-19 12:38:02 +03:00
|
|
|
import App, { pack } from '../../../../models/app';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../../define';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-07-16 22:36:44 +03:00
|
|
|
export const meta = {
|
2018-11-02 05:49:08 +02:00
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
name: {
|
|
|
|
validator: $.str
|
|
|
|
},
|
|
|
|
|
|
|
|
description: {
|
|
|
|
validator: $.str
|
|
|
|
},
|
|
|
|
|
|
|
|
permission: {
|
|
|
|
validator: $.arr($.str).unique()
|
|
|
|
},
|
|
|
|
|
|
|
|
// TODO: Check it is valid url
|
|
|
|
callbackUrl: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-02 05:49:08 +02:00
|
|
|
default: null as any
|
|
|
|
},
|
|
|
|
}
|
2018-07-16 22:36:44 +03:00
|
|
|
};
|
|
|
|
|
2018-11-02 06:47:44 +02:00
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
2016-12-29 00:49:51 +02:00
|
|
|
// Generate secret
|
|
|
|
const secret = rndstr('a-zA-Z0-9', 32);
|
|
|
|
|
|
|
|
// Create account
|
2017-01-20 10:38:05 +02:00
|
|
|
const app = await App.insert({
|
2018-03-29 08:48:47 +03:00
|
|
|
createdAt: new Date(),
|
2018-08-13 06:30:32 +03:00
|
|
|
userId: user && user._id,
|
2018-11-05 18:51:42 +02:00
|
|
|
name: ps.name,
|
2018-11-02 05:49:08 +02:00
|
|
|
description: ps.description,
|
|
|
|
permission: ps.permission,
|
|
|
|
callbackUrl: ps.callbackUrl,
|
2016-12-29 00:49:51 +02:00
|
|
|
secret: secret
|
|
|
|
});
|
|
|
|
|
|
|
|
// Response
|
2018-08-19 12:38:02 +03:00
|
|
|
res(await pack(app, null, {
|
2018-11-01 02:19:22 +02:00
|
|
|
detail: true,
|
2018-08-19 12:38:02 +03:00
|
|
|
includeSecret: true
|
|
|
|
}));
|
2018-11-02 06:47:44 +02:00
|
|
|
}));
|