summaryrefslogtreecommitdiff
path: root/src/api/endpoints/app/create.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/endpoints/app/create.ts')
-rw-r--r--src/api/endpoints/app/create.ts114
1 files changed, 114 insertions, 0 deletions
diff --git a/src/api/endpoints/app/create.ts b/src/api/endpoints/app/create.ts
new file mode 100644
index 0000000000..adbb205f62
--- /dev/null
+++ b/src/api/endpoints/app/create.ts
@@ -0,0 +1,114 @@
+'use strict';
+
+/**
+ * Module dependencies
+ */
+import rndstr from 'rndstr';
+import it from '../../it';
+import App from '../../models/app';
+import { isValidNameId } from '../../models/app';
+import serialize from '../../serializers/app';
+
+/**
+ * @swagger
+ * /app/create:
+ * post:
+ * summary: Create an application
+ * parameters:
+ * - $ref: "#/parameters/AccessToken"
+ * -
+ * name: name_id
+ * 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
+ * -
+ * name: callback_url
+ * description: URL called back after authentication
+ * in: formData
+ * required: false
+ * type: string
+ *
+ * responses:
+ * 200:
+ * description: Created application's information
+ * schema:
+ * $ref: "#/definitions/Application"
+ *
+ * default:
+ * description: Failed
+ * schema:
+ * $ref: "#/definitions/Error"
+ */
+
+/**
+ * Create an app
+ *
+ * @param {any} params
+ * @param {any} user
+ * @return {Promise<any>}
+ */
+module.exports = async (params, user) =>
+ new Promise(async (res, rej) =>
+{
+ // Get 'name_id' parameter
+ const [nameId, nameIdErr] = it(params.name_id).expect.string().required().validate(isValidNameId).qed();
+ if (nameIdErr) return rej('invalid name_id param');
+
+ // Get 'name' parameter
+ const [name, nameErr] = it(params.name).expect.string().required().qed();
+ if (nameErr) return rej('invalid name param');
+
+ // Get 'description' parameter
+ const [description, descriptionErr] = it(params.description).expect.string().required().qed();
+ if (descriptionErr) return rej('invalid description param');
+
+ // Get 'permission' parameter
+ const [permission, permissionErr] = it(params.permission).expect.array().unique().allString().required().qed();
+ if (permissionErr) return rej('invalid permission param');
+
+ // Get 'callback_url' parameter
+ // TODO: Check it is valid url
+ const [callbackUrl, callbackUrlErr] = it(params.callback_url).expect.nullable.string().default(null).qed();
+ if (callbackUrlErr) return rej('invalid callback_url param');
+
+ // Generate secret
+ const secret = rndstr('a-zA-Z0-9', 32);
+
+ // Create account
+ const app = await App.insert({
+ created_at: new Date(),
+ user_id: user._id,
+ name: name,
+ name_id: nameId,
+ name_id_lower: nameId.toLowerCase(),
+ description: description,
+ permission: permission,
+ callback_url: callbackUrl,
+ secret: secret
+ });
+
+ // Response
+ res(await serialize(app));
+});