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

55 lines
1 KiB
TypeScript
Raw Normal View History

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