Ohm-Management - Projektarbeit B-ME
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.

anyOf.js 2.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. 'use strict';
  2. module.exports = function generate_anyOf(it, $keyword, $ruleType) {
  3. var out = ' ';
  4. var $lvl = it.level;
  5. var $dataLvl = it.dataLevel;
  6. var $schema = it.schema[$keyword];
  7. var $schemaPath = it.schemaPath + it.util.getProperty($keyword);
  8. var $errSchemaPath = it.errSchemaPath + '/' + $keyword;
  9. var $breakOnError = !it.opts.allErrors;
  10. var $data = 'data' + ($dataLvl || '');
  11. var $valid = 'valid' + $lvl;
  12. var $errs = 'errs__' + $lvl;
  13. var $it = it.util.copy(it);
  14. var $closingBraces = '';
  15. $it.level++;
  16. var $nextValid = 'valid' + $it.level;
  17. var $noEmptySchema = $schema.every(function($sch) {
  18. return it.util.schemaHasRules($sch, it.RULES.all);
  19. });
  20. if ($noEmptySchema) {
  21. var $currentBaseId = $it.baseId;
  22. out += ' var ' + ($errs) + ' = errors; var ' + ($valid) + ' = false; ';
  23. var $wasComposite = it.compositeRule;
  24. it.compositeRule = $it.compositeRule = true;
  25. var arr1 = $schema;
  26. if (arr1) {
  27. var $sch, $i = -1,
  28. l1 = arr1.length - 1;
  29. while ($i < l1) {
  30. $sch = arr1[$i += 1];
  31. $it.schema = $sch;
  32. $it.schemaPath = $schemaPath + '[' + $i + ']';
  33. $it.errSchemaPath = $errSchemaPath + '/' + $i;
  34. out += ' ' + (it.validate($it)) + ' ';
  35. $it.baseId = $currentBaseId;
  36. out += ' ' + ($valid) + ' = ' + ($valid) + ' || ' + ($nextValid) + '; if (!' + ($valid) + ') { ';
  37. $closingBraces += '}';
  38. }
  39. }
  40. it.compositeRule = $it.compositeRule = $wasComposite;
  41. out += ' ' + ($closingBraces) + ' if (!' + ($valid) + ') { var err = '; /* istanbul ignore else */
  42. if (it.createErrors !== false) {
  43. out += ' { keyword: \'' + ('anyOf') + '\' , dataPath: (dataPath || \'\') + ' + (it.errorPath) + ' , schemaPath: ' + (it.util.toQuotedString($errSchemaPath)) + ' , params: {} ';
  44. if (it.opts.messages !== false) {
  45. out += ' , message: \'should match some schema in anyOf\' ';
  46. }
  47. if (it.opts.verbose) {
  48. out += ' , schema: validate.schema' + ($schemaPath) + ' , parentSchema: validate.schema' + (it.schemaPath) + ' , data: ' + ($data) + ' ';
  49. }
  50. out += ' } ';
  51. } else {
  52. out += ' {} ';
  53. }
  54. out += '; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ';
  55. if (!it.compositeRule && $breakOnError) { /* istanbul ignore if */
  56. if (it.async) {
  57. out += ' throw new ValidationError(vErrors); ';
  58. } else {
  59. out += ' validate.errors = vErrors; return false; ';
  60. }
  61. }
  62. out += ' } else { errors = ' + ($errs) + '; if (vErrors !== null) { if (' + ($errs) + ') vErrors.length = ' + ($errs) + '; else vErrors = null; } ';
  63. if (it.opts.allErrors) {
  64. out += ' } ';
  65. }
  66. out = it.util.cleanUpCode(out);
  67. } else {
  68. if ($breakOnError) {
  69. out += ' if (true) { ';
  70. }
  71. }
  72. return out;
  73. }