wip
This commit is contained in:
parent
d1557bcae8
commit
f11bdf36b9
|
@ -4,7 +4,9 @@
|
||||||
* Module dependencies
|
* Module dependencies
|
||||||
*/
|
*/
|
||||||
import rndstr from 'rndstr';
|
import rndstr from 'rndstr';
|
||||||
|
import it from '../../it';
|
||||||
import App from '../../models/app';
|
import App from '../../models/app';
|
||||||
|
import { isValidNameId } from '../../models/app';
|
||||||
import serialize from '../../serializers/app';
|
import serialize from '../../serializers/app';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -71,41 +73,25 @@ module.exports = async (params, user) =>
|
||||||
new Promise(async (res, rej) =>
|
new Promise(async (res, rej) =>
|
||||||
{
|
{
|
||||||
// Get 'name_id' parameter
|
// Get 'name_id' parameter
|
||||||
const nameId = params.name_id;
|
const [nameId, nameIdErr] = it(params.name_id).expect.string().required().validate(isValidNameId).qed();
|
||||||
if (nameId == null) {
|
if (nameIdErr) return rej('invalid name_id param');
|
||||||
return rej('name_id is required');
|
|
||||||
} else if (typeof nameId != 'string') {
|
|
||||||
return rej('name_id must be a string');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Validate name_id
|
|
||||||
if (!/^[a-zA-Z0-9\-]{3,30}$/.test(nameId)) {
|
|
||||||
return rej('invalid name_id');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get 'name' parameter
|
// Get 'name' parameter
|
||||||
const name = params.name;
|
const [name, nameErr] = it(params.name).expect.string().required().qed();
|
||||||
if (name == null || name == '') {
|
if (nameErr) return rej('invalid name param');
|
||||||
return rej('name is required');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get 'description' parameter
|
// Get 'description' parameter
|
||||||
const description = params.description;
|
const [description, descriptionErr] = it(params.description).expect.string().required().qed();
|
||||||
if (description == null || description == '') {
|
if (descriptionErr) return rej('invalid description param');
|
||||||
return rej('description is required');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get 'permission' parameter
|
// Get 'permission' parameter
|
||||||
const permission = params.permission;
|
const [permission, permissionErr] = it(params.permission).expect.array().unique().allString().required().qed();
|
||||||
if (permission == null || permission == '') {
|
if (permissionErr) return rej('invalid permission param');
|
||||||
return rej('permission is required');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get 'callback_url' parameter
|
// Get 'callback_url' parameter
|
||||||
let callback = params.callback_url;
|
// TODO: Check it is valid url
|
||||||
if (callback === '') {
|
const [callbackUrl, callbackUrlErr] = it(params.callback_url).expect.nullable.string().default(null).qed();
|
||||||
callback = null;
|
if (callbackUrlErr) return rej('invalid callback_url param');
|
||||||
}
|
|
||||||
|
|
||||||
// Generate secret
|
// Generate secret
|
||||||
const secret = rndstr('a-zA-Z0-9', 32);
|
const secret = rndstr('a-zA-Z0-9', 32);
|
||||||
|
@ -118,8 +104,8 @@ module.exports = async (params, user) =>
|
||||||
name_id: nameId,
|
name_id: nameId,
|
||||||
name_id_lower: nameId.toLowerCase(),
|
name_id_lower: nameId.toLowerCase(),
|
||||||
description: description,
|
description: description,
|
||||||
permission: permission.split(','),
|
permission: permission,
|
||||||
callback_url: callback,
|
callback_url: callbackUrl,
|
||||||
secret: secret
|
secret: secret
|
||||||
});
|
});
|
||||||
|
|
|
@ -3,7 +3,9 @@
|
||||||
/**
|
/**
|
||||||
* Module dependencies
|
* Module dependencies
|
||||||
*/
|
*/
|
||||||
|
import it from '../../../it';
|
||||||
import App from '../../../models/app';
|
import App from '../../../models/app';
|
||||||
|
import { isValidNameId } from '../../../models/app';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @swagger
|
* @swagger
|
||||||
|
@ -44,15 +46,8 @@ module.exports = async (params) =>
|
||||||
new Promise(async (res, rej) =>
|
new Promise(async (res, rej) =>
|
||||||
{
|
{
|
||||||
// Get 'name_id' parameter
|
// Get 'name_id' parameter
|
||||||
const nameId = params.name_id;
|
const [nameId, nameIdErr] = it(params.name_id).expect.string().required().validate(isValidNameId).qed();
|
||||||
if (nameId == null || nameId == '') {
|
if (nameIdErr) return rej('invalid name_id param');
|
||||||
return rej('name_id is required');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Validate name_id
|
|
||||||
if (!/^[a-zA-Z0-9\-]{3,30}$/.test(nameId)) {
|
|
||||||
return rej('invalid name_id');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get exist
|
// Get exist
|
||||||
const exist = await App
|
const exist = await App
|
|
@ -3,7 +3,7 @@
|
||||||
/**
|
/**
|
||||||
* Module dependencies
|
* Module dependencies
|
||||||
*/
|
*/
|
||||||
import * as mongo from 'mongodb';
|
import it from '../../it';
|
||||||
import App from '../../models/app';
|
import App from '../../models/app';
|
||||||
import serialize from '../../serializers/app';
|
import serialize from '../../serializers/app';
|
||||||
|
|
||||||
|
@ -50,16 +50,12 @@ module.exports = (params, user, _, isSecure) =>
|
||||||
new Promise(async (res, rej) =>
|
new Promise(async (res, rej) =>
|
||||||
{
|
{
|
||||||
// Get 'app_id' parameter
|
// Get 'app_id' parameter
|
||||||
let appId = params.app_id;
|
const [appId, appIdErr] = it(params.app_id, 'id');
|
||||||
if (appId == null || appId == '') {
|
if (appIdErr) return rej('invalid app_id param');
|
||||||
appId = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get 'name_id' parameter
|
// Get 'name_id' parameter
|
||||||
let nameId = params.name_id;
|
const [nameId, nameIdErr] = it(params.name_id, 'string');
|
||||||
if (nameId == null || nameId == '') {
|
if (nameIdErr) return rej('invalid name_id param');
|
||||||
nameId = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (appId === null && nameId === null) {
|
if (appId === null && nameId === null) {
|
||||||
return rej('app_id or name_id is required');
|
return rej('app_id or name_id is required');
|
||||||
|
@ -67,7 +63,7 @@ module.exports = (params, user, _, isSecure) =>
|
||||||
|
|
||||||
// Lookup app
|
// Lookup app
|
||||||
const app = appId !== null
|
const app = appId !== null
|
||||||
? await App.findOne({ _id: new mongo.ObjectID(appId) })
|
? await App.findOne({ _id: appId })
|
||||||
: await App.findOne({ name_id_lower: nameId.toLowerCase() });
|
: await App.findOne({ name_id_lower: nameId.toLowerCase() });
|
||||||
|
|
||||||
if (app === null) {
|
if (app === null) {
|
|
@ -7,3 +7,7 @@ const collection = db.get('apps');
|
||||||
(collection as any).index('secret'); // fuck type definition
|
(collection as any).index('secret'); // fuck type definition
|
||||||
|
|
||||||
export default collection as any; // fuck type definition
|
export default collection as any; // fuck type definition
|
||||||
|
|
||||||
|
export function isValidNameId(nameId: string): boolean {
|
||||||
|
return typeof nameId == 'string' && /^[a-zA-Z0-9\-]{3,30}$/.test(nameId);
|
||||||
|
}
|
||||||
|
|
|
@ -21,8 +21,8 @@ export default (
|
||||||
app: any,
|
app: any,
|
||||||
me?: any,
|
me?: any,
|
||||||
options?: {
|
options?: {
|
||||||
includeSecret: boolean,
|
includeSecret?: boolean,
|
||||||
includeProfileImageIds: boolean
|
includeProfileImageIds?: boolean
|
||||||
}
|
}
|
||||||
) => new Promise<any>(async (resolve, reject) => {
|
) => new Promise<any>(async (resolve, reject) => {
|
||||||
const opts = options || {
|
const opts = options || {
|
||||||
|
|
Loading…
Reference in New Issue