2020-04-08 22:45:21 +02:00
|
|
|
import {parseInteger} from "../utils/strings";
|
|
|
|
import Logger from "../logger";
|
2022-07-28 13:49:22 +02:00
|
|
|
import {isBoolean, isNumber, isObject, isOptional, isRegExp, isString, toIsArray} from "../types";
|
2020-04-08 22:45:21 +02:00
|
|
|
|
2020-04-09 01:41:45 +02:00
|
|
|
export interface Constraint {
|
2020-04-08 22:45:21 +02:00
|
|
|
type: string,
|
|
|
|
|
2020-04-09 01:41:45 +02:00
|
|
|
default?: any,
|
|
|
|
|
2020-04-08 22:45:21 +02:00
|
|
|
optional?: boolean,
|
|
|
|
|
|
|
|
allowed?: string[],
|
|
|
|
|
|
|
|
min?: number,
|
|
|
|
max?: number,
|
|
|
|
|
|
|
|
regex?: RegExp,
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:16:13 +02:00
|
|
|
export type Constraints = { [key: string]: Constraint };
|
|
|
|
export type Values = { [key: string]: any };
|
2020-04-09 01:41:45 +02:00
|
|
|
|
2022-07-28 13:49:22 +02:00
|
|
|
export function isConstraint(arg: unknown): arg is Constraint {
|
|
|
|
if (!isObject(arg)) {
|
2020-04-09 01:41:45 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:49:22 +02:00
|
|
|
const constraint = arg as Constraint;
|
|
|
|
return (
|
|
|
|
isString(constraint.type) &&
|
|
|
|
// default?: any
|
|
|
|
isOptional(constraint.optional, isBoolean) &&
|
|
|
|
isOptional(constraint.allowed, toIsArray(isString)) &&
|
|
|
|
isOptional(constraint.min, isNumber) &&
|
|
|
|
isOptional(constraint.max, isNumber) &&
|
|
|
|
isOptional(constraint.regex, isRegExp)
|
|
|
|
);
|
2020-04-09 01:41:45 +02:00
|
|
|
}
|
|
|
|
|
2022-07-28 13:49:22 +02:00
|
|
|
export function isConstraints(constraints: unknown): constraints is Constraints {
|
2022-07-28 13:16:13 +02:00
|
|
|
if (!isObject(constraints)) {
|
2020-04-09 01:41:45 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:16:13 +02:00
|
|
|
return Object.entries(constraints).every(([key, constraint]) => isString(key) && isConstraint(constraint));
|
2020-04-09 01:41:45 +02:00
|
|
|
}
|
2020-04-08 22:45:21 +02:00
|
|
|
|
|
|
|
// TODO: sanitize input for further processing as specified by constraints (correct types, trimming, etc.)
|
|
|
|
|
2022-07-28 13:49:22 +02:00
|
|
|
function isValidBoolean(value: unknown): boolean {
|
2022-07-28 13:16:13 +02:00
|
|
|
return isBoolean(value) || value === 'true' || value === 'false';
|
2020-04-08 22:45:21 +02:00
|
|
|
}
|
|
|
|
|
2022-07-28 13:49:22 +02:00
|
|
|
function isValidNumber(constraint: Constraint, value: unknown): boolean {
|
2022-07-28 13:16:13 +02:00
|
|
|
if (isString(value)) {
|
2020-04-08 22:45:21 +02:00
|
|
|
value = parseInteger(value);
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:16:13 +02:00
|
|
|
if (!isNumber(value)) {
|
2020-04-08 22:45:21 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:16:13 +02:00
|
|
|
if (isNaN(value) || !isFinite(value)) {
|
2020-04-08 22:45:21 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:16:13 +02:00
|
|
|
if (isNumber(constraint.min) && value < constraint.min) {
|
2020-04-08 22:45:21 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// noinspection RedundantIfStatementJS
|
2022-07-28 13:16:13 +02:00
|
|
|
if (isNumber(constraint.max) && value > constraint.max) {
|
2020-04-08 22:45:21 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:49:22 +02:00
|
|
|
function isValidEnum(constraint: Constraint, value: unknown): boolean {
|
2022-07-28 13:16:13 +02:00
|
|
|
if (!isString(value)) {
|
2020-04-08 22:45:21 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:16:13 +02:00
|
|
|
const allowed = constraint.allowed || [];
|
|
|
|
return allowed.indexOf(value) >= 0;
|
2020-04-08 22:45:21 +02:00
|
|
|
}
|
|
|
|
|
2022-07-28 13:49:22 +02:00
|
|
|
function isValidString(constraint: Constraint, value: unknown): boolean {
|
2020-04-08 22:45:21 +02:00
|
|
|
if (!constraint.regex) {
|
|
|
|
throw new Error("String constraints must have regex set: " + constraint);
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:16:13 +02:00
|
|
|
if (!isString(value)) {
|
2020-04-08 22:45:21 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const trimmed = value.trim();
|
|
|
|
return (trimmed === '' && constraint.optional) || constraint.regex.test(trimmed);
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:49:22 +02:00
|
|
|
function isValid(constraint: Constraint, acceptUndefined: boolean, value: unknown): boolean {
|
2020-04-08 22:45:21 +02:00
|
|
|
if (value === undefined) {
|
|
|
|
return acceptUndefined || constraint.optional === true;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (constraint.type) {
|
|
|
|
case 'boolean':
|
|
|
|
return isValidBoolean(value);
|
|
|
|
|
|
|
|
case 'number':
|
|
|
|
return isValidNumber(constraint, value);
|
|
|
|
|
|
|
|
case 'enum':
|
|
|
|
return isValidEnum(constraint, value);
|
|
|
|
|
|
|
|
case 'string':
|
|
|
|
return isValidString(constraint, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
Logger.tag('validation').error('No validation method for constraint type: {}', constraint.type);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function areValid(constraints: Constraints, acceptUndefined: boolean, values: Values): boolean {
|
|
|
|
const fields = new Set(Object.keys(constraints));
|
|
|
|
for (const field of fields) {
|
|
|
|
if (!isValid(constraints[field], acceptUndefined, values[field])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const field of Object.keys(values)) {
|
|
|
|
if (!fields.has(field)) {
|
|
|
|
Logger.tag('validation').error('Validation failed: No constraint for field: {}', field);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:49:22 +02:00
|
|
|
export function forConstraint(constraint: Constraint, acceptUndefined: boolean): (value: unknown) => boolean {
|
|
|
|
return ((value: unknown): boolean => isValid(constraint, acceptUndefined, value));
|
2020-04-08 22:45:21 +02:00
|
|
|
}
|
|
|
|
|
2022-07-28 13:16:13 +02:00
|
|
|
export function forConstraints(constraints: Constraints, acceptUndefined: boolean): (values: Values) => boolean {
|
2020-04-08 22:45:21 +02:00
|
|
|
return ((values: Values): boolean => areValid(constraints, acceptUndefined, values));
|
|
|
|
}
|