2016-12-28 15:49:51 -07:00
|
|
|
import rndstr from 'rndstr';
|
2017-03-08 11:50:09 -07:00
|
|
|
import $ from 'cafy';
|
2018-03-29 05:32:18 -06:00
|
|
|
import App, { isValidNameId, pack } from '../../../../models/app';
|
2018-06-17 18:54:53 -06:00
|
|
|
import { ILocalUser } from '../../../../models/user';
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2017-01-06 02:33:03 -07:00
|
|
|
/**
|
|
|
|
* @swagger
|
|
|
|
* /app/create:
|
2018-04-07 11:30:37 -06:00
|
|
|
* note:
|
2017-01-06 02:33:03 -07:00
|
|
|
* summary: Create an application
|
|
|
|
* parameters:
|
|
|
|
* - $ref: "#/parameters/AccessToken"
|
|
|
|
* -
|
2018-03-28 23:48:47 -06:00
|
|
|
* name: nameId
|
2017-01-06 02:33:03 -07:00
|
|
|
* description: Application unique name
|
|
|
|
* in: formData
|
|
|
|
* required: true
|
|
|
|
* type: string
|
|
|
|
* -
|
|
|
|
* name: name
|
|
|
|
* description: Application name
|
|
|
|
* in: formData
|
|
|
|
* required: true
|
|
|
|
* type: string
|
|
|
|
* -
|
|
|
|
* name: description
|
|
|
|
* description: Application description
|
|
|
|
* in: formData
|
|
|
|
* required: true
|
|
|
|
* type: string
|
|
|
|
* -
|
|
|
|
* name: permission
|
|
|
|
* description: Permissions that application has
|
|
|
|
* in: formData
|
|
|
|
* required: true
|
|
|
|
* type: array
|
|
|
|
* items:
|
|
|
|
* type: string
|
|
|
|
* collectionFormat: csv
|
|
|
|
* -
|
2018-03-28 23:48:47 -06:00
|
|
|
* name: callbackUrl
|
2017-01-06 02:33:03 -07:00
|
|
|
* description: URL called back after authentication
|
|
|
|
* in: formData
|
|
|
|
* required: false
|
|
|
|
* type: string
|
2017-03-01 01:37:01 -07:00
|
|
|
*
|
2017-01-06 02:33:03 -07:00
|
|
|
* responses:
|
|
|
|
* 200:
|
|
|
|
* description: Created application's information
|
|
|
|
* schema:
|
|
|
|
* $ref: "#/definitions/Application"
|
2017-03-01 01:37:01 -07:00
|
|
|
*
|
2017-01-06 02:33:03 -07:00
|
|
|
* default:
|
|
|
|
* description: Failed
|
|
|
|
* schema:
|
|
|
|
* $ref: "#/definitions/Error"
|
|
|
|
*/
|
|
|
|
|
2016-12-28 15:49:51 -07:00
|
|
|
/**
|
|
|
|
* Create an app
|
|
|
|
*/
|
2018-07-05 11:58:29 -06:00
|
|
|
export default async (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2018-03-28 23:48:47 -06:00
|
|
|
// Get 'nameId' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [nameId, nameIdErr] = $.str.pipe(isValidNameId).get(params.nameId);
|
2018-03-28 23:48:47 -06:00
|
|
|
if (nameIdErr) return rej('invalid nameId param');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
// Get 'name' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [name, nameErr] = $.str.get(params.name);
|
2017-03-03 03:48:00 -07:00
|
|
|
if (nameErr) return rej('invalid name param');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
// Get 'description' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [description, descriptionErr] = $.str.get(params.description);
|
2017-03-03 03:48:00 -07:00
|
|
|
if (descriptionErr) return rej('invalid description param');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
// Get 'permission' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [permission, permissionErr] = $.arr($.str).unique().get(params.permission);
|
2017-03-03 03:48:00 -07:00
|
|
|
if (permissionErr) return rej('invalid permission param');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-03-28 23:48:47 -06:00
|
|
|
// Get 'callbackUrl' parameter
|
2017-11-18 09:47:50 -07:00
|
|
|
// TODO: Check it is valid url
|
2018-07-05 08:36:07 -06:00
|
|
|
const [callbackUrl = null, callbackUrlErr] = $.str.optional.nullable.get(params.callbackUrl);
|
2018-03-28 23:48:47 -06:00
|
|
|
if (callbackUrlErr) return rej('invalid callbackUrl param');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
// Generate secret
|
|
|
|
const secret = rndstr('a-zA-Z0-9', 32);
|
|
|
|
|
|
|
|
// Create account
|
2017-01-20 01:38:05 -07:00
|
|
|
const app = await App.insert({
|
2018-03-28 23:48:47 -06:00
|
|
|
createdAt: new Date(),
|
|
|
|
userId: user._id,
|
2016-12-28 15:49:51 -07:00
|
|
|
name: name,
|
2018-03-28 23:48:47 -06:00
|
|
|
nameId: nameId,
|
|
|
|
nameIdLower: nameId.toLowerCase(),
|
2016-12-28 15:49:51 -07:00
|
|
|
description: description,
|
2017-03-03 03:48:00 -07:00
|
|
|
permission: permission,
|
2018-03-28 23:48:47 -06:00
|
|
|
callbackUrl: callbackUrl,
|
2016-12-28 15:49:51 -07:00
|
|
|
secret: secret
|
|
|
|
});
|
|
|
|
|
|
|
|
// Response
|
2018-02-01 16:21:30 -07:00
|
|
|
res(await pack(app));
|
2016-12-28 15:49:51 -07:00
|
|
|
});
|