2017-03-01 10:06:16 -06:00
|
|
|
import * as mongo from 'mongodb';
|
2017-03-01 14:31:30 -06:00
|
|
|
import hasDuplicates from '../common/has-duplicates';
|
2017-03-01 10:06:16 -06:00
|
|
|
|
2017-03-01 14:31:30 -06:00
|
|
|
type Type = 'id' | 'string' | 'number' | 'boolean' | 'array' | 'set' | 'object';
|
2017-03-01 10:06:16 -06:00
|
|
|
|
2017-03-01 12:16:39 -06:00
|
|
|
type Validator<T> = ((x: T) => boolean | string) | ((x: T) => boolean | string)[];
|
|
|
|
|
|
|
|
function validate(value: any, type: 'id', isRequired?: boolean): [mongo.ObjectID, string];
|
|
|
|
function validate(value: any, type: 'string', isRequired?: boolean, validator?: Validator<string>): [string, string];
|
|
|
|
function validate(value: any, type: 'number', isRequired?: boolean, validator?: Validator<number>): [number, string];
|
|
|
|
function validate(value: any, type: 'boolean', isRequired?: boolean): [boolean, string];
|
|
|
|
function validate(value: any, type: 'array', isRequired?: boolean, validator?: Validator<any[]>): [any[], string];
|
2017-03-01 14:31:30 -06:00
|
|
|
function validate(value: any, type: 'set', isRequired?: boolean, validator?: Validator<Set<any>>): [Set<any>, string];
|
2017-03-01 12:16:39 -06:00
|
|
|
function validate(value: any, type: 'object', isRequired?: boolean, validator?: Validator<Object>): [Object, string];
|
|
|
|
function validate<T>(value: any, type: Type, isRequired?: boolean, validator?: Validator<T>): [T, string] {
|
2017-03-01 10:06:16 -06:00
|
|
|
if (value === undefined || value === null) {
|
|
|
|
if (isRequired) {
|
|
|
|
return [null, 'is-required']
|
|
|
|
} else {
|
|
|
|
return [null, null]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case 'id':
|
|
|
|
if (typeof value != 'string' || !mongo.ObjectID.isValid(value)) {
|
|
|
|
return [null, 'incorrect-id'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'string':
|
|
|
|
if (typeof value != 'string') {
|
|
|
|
return [null, 'must-be-a-string'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'number':
|
|
|
|
if (!Number.isFinite(value)) {
|
|
|
|
return [null, 'must-be-a-number'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'boolean':
|
|
|
|
if (typeof value != 'boolean') {
|
2017-03-01 15:25:05 -06:00
|
|
|
return [null, 'must-be-a-boolean'];
|
2017-03-01 10:06:16 -06:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'array':
|
|
|
|
if (!Array.isArray(value)) {
|
|
|
|
return [null, 'must-be-an-array'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2017-03-01 14:31:30 -06:00
|
|
|
case 'set':
|
|
|
|
if (!Array.isArray(value)) {
|
|
|
|
return [null, 'must-be-an-array'];
|
|
|
|
} else if (hasDuplicates(value)) {
|
|
|
|
return [null, 'duplicated-contents'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2017-03-01 10:06:16 -06:00
|
|
|
case 'object':
|
|
|
|
if (typeof value != 'object') {
|
2017-03-01 15:25:05 -06:00
|
|
|
return [null, 'must-be-an-object'];
|
2017-03-01 10:06:16 -06:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-03-01 12:16:39 -06:00
|
|
|
if (type == 'id') value = new mongo.ObjectID(value);
|
|
|
|
|
2017-03-01 10:11:30 -06:00
|
|
|
if (validator) {
|
2017-03-01 12:16:39 -06:00
|
|
|
const validators = Array.isArray(validator) ? validator : [validator];
|
|
|
|
for (let i = 0; i < validators.length; i++) {
|
|
|
|
const result = validators[i](value);
|
|
|
|
if (result === false) {
|
|
|
|
return [null, 'invalid-format'];
|
|
|
|
} else if (typeof result == 'string') {
|
|
|
|
return [null, result];
|
|
|
|
}
|
2017-03-01 10:11:30 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-01 10:06:16 -06:00
|
|
|
return [value, null];
|
2017-03-01 12:16:39 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
export default validate;
|