paricafe/src/server/api/endpoints/app/create.ts

51 lines
926 B
TypeScript
Raw Normal View History

2016-12-28 16:49:51 -06:00
import rndstr from 'rndstr';
2017-03-08 12:50:09 -06:00
import $ from 'cafy';
import App, { pack } from '../../../../models/app';
2018-11-01 23:47:44 -05:00
import define from '../../define';
2016-12-28 16:49:51 -06:00
2018-07-16 14:36:44 -05:00
export const meta = {
2018-11-01 22:49:08 -05: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 01:33:07 -06:00
validator: $.optional.nullable.str,
2018-11-01 22:49:08 -05:00
default: null as any
},
}
2018-07-16 14:36:44 -05:00
};
2018-11-01 23:47:44 -05:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
2016-12-28 16:49:51 -06:00
// Generate secret
const secret = rndstr('a-zA-Z0-9', 32);
// Create account
2017-01-20 02:38:05 -06:00
const app = await App.insert({
2018-03-29 00:48:47 -05:00
createdAt: new Date(),
userId: user && user._id,
2018-11-05 10:51:42 -06:00
name: ps.name,
2018-11-01 22:49:08 -05:00
description: ps.description,
permission: ps.permission,
callbackUrl: ps.callbackUrl,
2016-12-28 16:49:51 -06:00
secret: secret
});
// Response
res(await pack(app, null, {
2018-10-31 19:19:22 -05:00
detail: true,
includeSecret: true
}));
2018-11-01 23:47:44 -05:00
}));