You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
316 lines
17 KiB
316 lines
17 KiB
'use strict';
|
|
module.exports = function generate_errorMessage(it, $keyword, $ruleType) {
|
|
var out = ' ';
|
|
var $lvl = it.level;
|
|
var $dataLvl = it.dataLevel;
|
|
var $schema = it.schema[$keyword];
|
|
var $schemaPath = it.schemaPath + it.util.getProperty($keyword);
|
|
var $errSchemaPath = it.errSchemaPath + '/' + $keyword;
|
|
var $breakOnError = !it.opts.allErrors;
|
|
var $data = 'data' + ($dataLvl || '');
|
|
if (it.createErrors !== false) {
|
|
var INTERPOLATION = /\$\{[^\}]+\}/;
|
|
var INTERPOLATION_REPLACE = /\$\{([^\}]+)\}/g;
|
|
var EMPTY_STR = /^\'\'\s*\+\s*|\s*\+\s*\'\'$/g;
|
|
var $config = it.self.getKeyword($keyword).config,
|
|
$dataPath = '_em_dataPath' + $lvl,
|
|
$i = '_em_i' + $lvl,
|
|
$key = '_em_key' + $lvl,
|
|
$keyProp = '_em_keyProp' + $lvl,
|
|
$err = '_em_err' + $lvl,
|
|
$child = '_em_child' + $lvl,
|
|
$childKeyword = '_em_childKeyword' + $lvl,
|
|
$matches = '_em_matches' + $lvl,
|
|
$isArray = '_em_isArray' + $lvl,
|
|
$errors = '_em_errors' + $lvl,
|
|
$message = '_em_message' + $lvl,
|
|
$paramsErrors = '_em_paramsErrors' + $lvl,
|
|
$propParam = '_em_propParam' + $lvl,
|
|
$keywordPropParams = '_em_keywordPropParams' + $lvl,
|
|
$templates = '_em_templates' + $lvl,
|
|
$errSchemaPathString = it.util.toQuotedString(it.errSchemaPath);
|
|
out += ' if (errors > 0) { var ' + ($dataPath) + ' = (dataPath || \'\') + ' + (it.errorPath) + '; var ' + ($i) + ', ' + ($err) + ', ' + ($errors) + '; ';
|
|
if (typeof $schema == 'object') {
|
|
var $keywordErrors = {},
|
|
$keywordPropErrors = {},
|
|
$childErrors = {
|
|
properties: {},
|
|
items: {}
|
|
},
|
|
$hasKeywordProps = false,
|
|
$hasProperties = false,
|
|
$hasItems = false;
|
|
for (var $k in $schema) {
|
|
switch ($k) {
|
|
case 'properties':
|
|
for (var $prop in $schema.properties) {
|
|
$hasProperties = true;
|
|
$childErrors.properties[$prop] = [];
|
|
}
|
|
break;
|
|
case 'items':
|
|
for (var $item = 0; $item < $schema.items.length; $item++) {
|
|
$hasItems = true;
|
|
$childErrors.items[$item] = [];
|
|
}
|
|
break;
|
|
default:
|
|
if (typeof $schema[$k] == 'object') {
|
|
$hasKeywordProps = true;
|
|
$keywordPropErrors[$k] = {};
|
|
for (var $prop in $schema[$k]) {
|
|
$keywordPropErrors[$k][$prop] = [];
|
|
}
|
|
} else {
|
|
$keywordErrors[$k] = [];
|
|
}
|
|
}
|
|
}
|
|
var $keywordErrorsArr = Object.keys($keywordErrors);
|
|
if ($keywordErrorsArr.length) {
|
|
out += ' ' + ($i) + ' = 0; ' + ($errors) + ' = ' + (JSON.stringify($keywordErrors)) + '; var ' + ($templates) + ' = { ';
|
|
var $comma = false;
|
|
var arr1 = $keywordErrorsArr;
|
|
if (arr1) {
|
|
var $k, i1 = -1,
|
|
l1 = arr1.length - 1;
|
|
while (i1 < l1) {
|
|
$k = arr1[i1 += 1];
|
|
if (INTERPOLATION.test($schema[$k])) {
|
|
if ($comma) {
|
|
out += ',';
|
|
}
|
|
out += '' + (it.util.toQuotedString($k)) + ': ' + (templateFunc($schema[$k])) + ' ';
|
|
$comma = true;
|
|
}
|
|
}
|
|
}
|
|
out += ' }; while (' + ($i) + ' < errors) { ' + ($err) + ' = vErrors[' + ($i) + ']; if ( ' + ($err) + '.keyword != \'' + ($keyword) + '\' ';
|
|
if ($config.options.keepErrors) {
|
|
out += ' && !' + ($err) + '.emUsed ';
|
|
}
|
|
out += ' && ' + ($err) + '.keyword in ' + ($errors) + ' && ' + ($err) + '.dataPath == ' + ($dataPath) + ' && ' + ($err) + '.schemaPath.indexOf(' + ($errSchemaPathString) + ') == 0 && /^\\/[^\\/]*$/.test(' + ($err) + '.schemaPath.slice(' + (it.errSchemaPath.length) + '))) { ' + ($errors) + '[' + ($err) + '.keyword].push(' + ($err) + '); ';
|
|
if ($config.options.keepErrors) {
|
|
out += ' ' + ($err) + '.emUsed = true; ';
|
|
} else {
|
|
out += ' vErrors.splice(' + ($i) + ', 1); errors--; ';
|
|
}
|
|
out += ' } else { ' + ($i) + '++; } } ';
|
|
if ($config.options.singleError) {
|
|
out += ' var ' + ($message) + ' = \'\'; var ' + ($paramsErrors) + ' = []; ';
|
|
}
|
|
out += ' for (var ' + ($key) + ' in ' + ($errors) + ') { if (' + ($errors) + '[' + ($key) + '].length) { ';
|
|
if ($config.options.singleError) {
|
|
out += ' if (' + ($message) + ') { ' + ($message) + ' += ';
|
|
if (typeof $config.options.singleError == 'string') {
|
|
out += ' ' + (it.util.toQuotedString($config.options.singleError)) + ' ';
|
|
} else {
|
|
out += ' \'; \' ';
|
|
}
|
|
out += '; } ' + ($message) + ' += ' + ($key) + ' in ' + ($templates) + ' ? ' + ($templates) + '[' + ($key) + '] () : validate.schema' + ($schemaPath) + '[' + ($key) + ']; ' + ($paramsErrors) + ' = ' + ($paramsErrors) + '.concat(' + ($errors) + '[' + ($key) + ']); } } ';
|
|
} else {
|
|
out += ' var ' + ($message) + ' = ' + ($key) + ' in ' + ($templates) + ' ? ' + ($templates) + '[' + ($key) + '] () : validate.schema' + ($schemaPath) + '[' + ($key) + ']; var ' + ($paramsErrors) + ' = ' + ($errors) + '[' + ($key) + ']; ';
|
|
}
|
|
out += ' var err = { keyword: \'' + ($keyword) + '\' , dataPath: ' + ($dataPath) + ' , schemaPath: ' + ($errSchemaPathString) + ' + \'/' + ($keyword) + '\' , params: { errors: ' + ($paramsErrors) + ' } , message: ' + ($message) + ' ';
|
|
if (it.opts.verbose) {
|
|
out += ' , schema: validate.schema' + ($schemaPath) + ' , parentSchema: validate.schema' + (it.schemaPath) + ' , data: ' + ($data) + ' ';
|
|
}
|
|
out += ' }; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ';
|
|
if (!$config.options.singleError) {
|
|
out += ' } } ';
|
|
}
|
|
}
|
|
if ($hasKeywordProps) {
|
|
out += ' ' + ($i) + ' = 0; ' + ($errors) + ' = ' + (JSON.stringify($keywordPropErrors)) + '; var ' + ($paramsErrors) + ', ' + ($propParam) + '; var ' + ($keywordPropParams) + ' = ' + (JSON.stringify($config.KEYWORD_PROPERTY_PARAMS)) + '; var ' + ($templates) + ' = { ';
|
|
var $comma = false;
|
|
var arr2 = Object.keys($keywordPropErrors);
|
|
if (arr2) {
|
|
var $k, i2 = -1,
|
|
l2 = arr2.length - 1;
|
|
while (i2 < l2) {
|
|
$k = arr2[i2 += 1];
|
|
var $keywordMsgs = $schema[$k];
|
|
if ($comma) {
|
|
out += ',';
|
|
}
|
|
out += '' + (it.util.toQuotedString($k)) + ': { ';
|
|
$comma = true;
|
|
var $innerComma = false;
|
|
var arr3 = Object.keys($keywordMsgs);
|
|
if (arr3) {
|
|
var $prop, i3 = -1,
|
|
l3 = arr3.length - 1;
|
|
while (i3 < l3) {
|
|
$prop = arr3[i3 += 1];
|
|
if (INTERPOLATION.test($keywordMsgs[$prop])) {
|
|
if ($innerComma) {
|
|
out += ',';
|
|
}
|
|
out += '' + (it.util.toQuotedString($prop)) + ': ' + (templateFunc($keywordMsgs[$prop])) + ' ';
|
|
$innerComma = true;
|
|
}
|
|
}
|
|
}
|
|
out += ' } ';
|
|
}
|
|
}
|
|
out += ' }; while (' + ($i) + ' < errors) { ' + ($err) + ' = vErrors[' + ($i) + ']; if ( ' + ($err) + '.keyword != \'' + ($keyword) + '\' ';
|
|
if ($config.options.keepErrors) {
|
|
out += ' && !' + ($err) + '.emUsed ';
|
|
}
|
|
out += ' && ' + ($err) + '.keyword in ' + ($errors) + ' && ' + ($err) + '.dataPath == ' + ($dataPath) + ' && ' + ($err) + '.schemaPath.indexOf(' + ($errSchemaPathString) + ') == 0 && /^\\/[^\\/]*$/.test(' + ($err) + '.schemaPath.slice(' + (it.errSchemaPath.length) + '))) { ' + ($propParam) + ' = ' + ($keywordPropParams) + '[' + ($err) + '.keyword]; ' + ($paramsErrors) + ' = ' + ($errors) + '[' + ($err) + '.keyword][' + ($err) + '.params[' + ($propParam) + ']]; if (' + ($paramsErrors) + ') { ' + ($paramsErrors) + '.push(' + ($err) + '); ';
|
|
if ($config.options.keepErrors) {
|
|
out += ' ' + ($err) + '.emUsed = true; ';
|
|
} else {
|
|
out += ' vErrors.splice(' + ($i) + ', 1); errors--; ';
|
|
}
|
|
out += ' } else { ' + ($i) + '++; } } else { ' + ($i) + '++; } } for (var ' + ($key) + ' in ' + ($errors) + ') { for (var ' + ($keyProp) + ' in ' + ($errors) + '[' + ($key) + ']) { ' + ($paramsErrors) + ' = ' + ($errors) + '[' + ($key) + '][' + ($keyProp) + ']; if (' + ($paramsErrors) + '.length) { var ' + ($message) + ' = ' + ($key) + ' in ' + ($templates) + ' && ' + ($keyProp) + ' in ' + ($templates) + '[' + ($key) + '] ? ' + ($templates) + '[' + ($key) + '][' + ($keyProp) + '] () : validate.schema' + ($schemaPath) + '[' + ($key) + '][' + ($keyProp) + ']; var err = { keyword: \'' + ($keyword) + '\' , dataPath: ' + ($dataPath) + ' , schemaPath: ' + ($errSchemaPathString) + ' + \'/' + ($keyword) + '\' , params: { errors: ' + ($paramsErrors) + ' } , message: ' + ($message) + ' ';
|
|
if (it.opts.verbose) {
|
|
out += ' , schema: validate.schema' + ($schemaPath) + ' , parentSchema: validate.schema' + (it.schemaPath) + ' , data: ' + ($data) + ' ';
|
|
}
|
|
out += ' }; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; } } } ';
|
|
}
|
|
if ($hasProperties || $hasItems) {
|
|
out += ' var ' + ($isArray) + ' = Array.isArray(' + ($data) + '); if ';
|
|
if ($hasProperties && $hasItems) {
|
|
out += ' (typeof ' + ($data) + ' == \'object\') { ';
|
|
var $childProp = '[' + $childKeyword + ']';
|
|
out += ' ' + ($i) + ' = 0; if (' + ($isArray) + ') { var ' + ($childKeyword) + ' = \'items\'; ' + ($errors) + ' = ' + (JSON.stringify($childErrors.items)) + '; ';
|
|
var _keysArray = Object.keys($childErrors.items);
|
|
out += ' var ' + ($templates) + ' = { ';
|
|
var $comma = false;
|
|
var arr4 = _keysArray;
|
|
if (arr4) {
|
|
var $k, i4 = -1,
|
|
l4 = arr4.length - 1;
|
|
while (i4 < l4) {
|
|
$k = arr4[i4 += 1];
|
|
if (INTERPOLATION.test($schema.items[$k])) {
|
|
if ($comma) {
|
|
out += ',';
|
|
}
|
|
out += '' + (it.util.toQuotedString($k)) + ': ' + (templateFunc($schema.items[$k])) + ' ';
|
|
$comma = true;
|
|
}
|
|
}
|
|
}
|
|
out += ' }; } else { var ' + ($childKeyword) + ' = \'properties\'; ' + ($errors) + ' = ' + (JSON.stringify($childErrors.properties)) + '; ';
|
|
var _keysArray = Object.keys($childErrors.properties);
|
|
out += ' var ' + ($templates) + ' = { ';
|
|
var $comma = false;
|
|
var arr5 = _keysArray;
|
|
if (arr5) {
|
|
var $k, i5 = -1,
|
|
l5 = arr5.length - 1;
|
|
while (i5 < l5) {
|
|
$k = arr5[i5 += 1];
|
|
if (INTERPOLATION.test($schema.properties[$k])) {
|
|
if ($comma) {
|
|
out += ',';
|
|
}
|
|
out += '' + (it.util.toQuotedString($k)) + ': ' + (templateFunc($schema.properties[$k])) + ' ';
|
|
$comma = true;
|
|
}
|
|
}
|
|
}
|
|
out += ' }; } ';
|
|
} else if ($hasProperties) {
|
|
out += ' (typeof ' + ($data) + ' == \'object\' && !' + ($isArray) + ') { ';
|
|
var $childProp = '.properties';
|
|
out += ' ' + ($i) + ' = 0; ' + ($errors) + ' = ' + (JSON.stringify($childErrors.properties)) + '; ';
|
|
var _keysArray = Object.keys($childErrors.properties);
|
|
out += ' var ' + ($templates) + ' = { ';
|
|
var $comma = false;
|
|
var arr6 = _keysArray;
|
|
if (arr6) {
|
|
var $k, i6 = -1,
|
|
l6 = arr6.length - 1;
|
|
while (i6 < l6) {
|
|
$k = arr6[i6 += 1];
|
|
if (INTERPOLATION.test($schema.properties[$k])) {
|
|
if ($comma) {
|
|
out += ',';
|
|
}
|
|
out += '' + (it.util.toQuotedString($k)) + ': ' + (templateFunc($schema.properties[$k])) + ' ';
|
|
$comma = true;
|
|
}
|
|
}
|
|
}
|
|
out += ' }; ';
|
|
} else {
|
|
out += ' (' + ($isArray) + ') { ';
|
|
var $childProp = '.items';
|
|
out += ' ' + ($i) + ' = 0; ' + ($errors) + ' = ' + (JSON.stringify($childErrors.items)) + '; ';
|
|
var _keysArray = Object.keys($childErrors.items);
|
|
out += ' var ' + ($templates) + ' = { ';
|
|
var $comma = false;
|
|
var arr7 = _keysArray;
|
|
if (arr7) {
|
|
var $k, i7 = -1,
|
|
l7 = arr7.length - 1;
|
|
while (i7 < l7) {
|
|
$k = arr7[i7 += 1];
|
|
if (INTERPOLATION.test($schema.items[$k])) {
|
|
if ($comma) {
|
|
out += ',';
|
|
}
|
|
out += '' + (it.util.toQuotedString($k)) + ': ' + (templateFunc($schema.items[$k])) + ' ';
|
|
$comma = true;
|
|
}
|
|
}
|
|
}
|
|
out += ' }; ';
|
|
}
|
|
out += ' var ' + ($child) + ', ' + ($matches) + '; while (' + ($i) + ' < errors) { ' + ($err) + ' = vErrors[' + ($i) + ']; if ( ' + ($err) + '.keyword != \'' + ($keyword) + '\' ';
|
|
if ($config.options.keepErrors) {
|
|
out += ' && !' + ($err) + '.emUsed ';
|
|
}
|
|
out += ' && ' + ($err) + '.dataPath.indexOf(' + ($dataPath) + ') == 0 && (' + ($matches) + ' = ' + ($err) + '.dataPath.slice(' + ($dataPath) + '.length).match(/^\\/([^\\/]*)(?:\\/|$)/), ' + ($child) + ' = ' + ($matches) + ' && ' + ($matches) + '[1].replace(/~1/g, \'/\').replace(/~0/g, \'~\') ) !== undefined && ' + ($child) + ' in ' + ($errors) + ') { ' + ($errors) + '[' + ($child) + '].push(' + ($err) + '); ';
|
|
if ($config.options.keepErrors) {
|
|
out += ' ' + ($err) + '.emUsed = true; ';
|
|
} else {
|
|
out += ' vErrors.splice(' + ($i) + ', 1); errors--; ';
|
|
}
|
|
out += ' } else { ' + ($i) + '++; } } for (var ' + ($key) + ' in ' + ($errors) + ') { if (' + ($errors) + '[' + ($key) + '].length) { var err = { keyword: \'' + ($keyword) + '\' , dataPath: ' + ($dataPath) + ' + \'/\' + ' + ($key) + '.replace(/~/g, \'~0\').replace(/\\//g, \'~1\') , schemaPath: ' + ($errSchemaPathString) + ' + \'/' + ($keyword) + '\' , params: { errors: ' + ($errors) + '[' + ($key) + '] } , message: ' + ($key) + ' in ' + ($templates) + ' ? ' + ($templates) + '[' + ($key) + '] () : validate.schema' + ($schemaPath) + ($childProp) + '[' + ($key) + '] ';
|
|
if (it.opts.verbose) {
|
|
out += ' , schema: validate.schema' + ($schemaPath) + ' , parentSchema: validate.schema' + (it.schemaPath) + ' , data: ' + ($data) + ' ';
|
|
}
|
|
out += ' }; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; } } } ';
|
|
}
|
|
}
|
|
var $schemaMessage = typeof $schema == 'string' ? $schema : $schema._;
|
|
if ($schemaMessage) {
|
|
out += ' ' + ($i) + ' = 0; ' + ($errors) + ' = []; while (' + ($i) + ' < errors) { ' + ($err) + ' = vErrors[' + ($i) + ']; if ( ' + ($err) + '.keyword != \'' + ($keyword) + '\' ';
|
|
if ($config.options.keepErrors) {
|
|
out += ' && !' + ($err) + '.emUsed ';
|
|
}
|
|
out += ' && (' + ($err) + '.dataPath == ' + ($dataPath) + ' || (' + ($err) + '.dataPath.indexOf(' + ($dataPath) + ') == 0 && ' + ($err) + '.dataPath[' + ($dataPath) + '.length] == \'/\')) && ' + ($err) + '.schemaPath.indexOf(' + ($errSchemaPathString) + ') == 0 && ' + ($err) + '.schemaPath[' + (it.errSchemaPath.length) + '] == \'/\') { ' + ($errors) + '.push(' + ($err) + '); ';
|
|
if ($config.options.keepErrors) {
|
|
out += ' ' + ($err) + '.emUsed = true; ';
|
|
} else {
|
|
out += ' vErrors.splice(' + ($i) + ', 1); errors--; ';
|
|
}
|
|
out += ' } else { ' + ($i) + '++; } } if (' + ($errors) + '.length) { var err = { keyword: \'' + ($keyword) + '\' , dataPath: ' + ($dataPath) + ' , schemaPath: ' + ($errSchemaPathString) + ' + \'/' + ($keyword) + '\' , params: { errors: ' + ($errors) + ' } , message: ' + (templateExpr($schemaMessage)) + ' ';
|
|
if (it.opts.verbose) {
|
|
out += ' , schema: ' + (it.util.toQuotedString($schemaMessage)) + ' , parentSchema: validate.schema' + (it.schemaPath) + ' , data: ' + ($data) + ' ';
|
|
}
|
|
out += ' }; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; } ';
|
|
}
|
|
out += ' }';
|
|
}
|
|
|
|
function templateExpr(str) {
|
|
str = it.util.escapeQuotes(str);
|
|
if (!INTERPOLATION.test(str)) return "'" + str + "'";
|
|
var expr = "'" + str.replace(INTERPOLATION_REPLACE, function($0, $1) {
|
|
return "' + JSON.stringify(" + it.util.getData($1, $dataLvl, it.dataPathArr) + ") + '";
|
|
}) + "'";
|
|
return expr.replace(EMPTY_STR, '');
|
|
}
|
|
|
|
function templateFunc(str) {
|
|
return 'function() { return ' + templateExpr(str) + '; }';
|
|
}
|
|
return out;
|
|
}
|