source: imaps-frontend/node_modules/ajv/lib/dotjs/pattern.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.5 KB
Line 
1'use strict';
2module.exports = function generate_pattern(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 $isData = it.opts.$data && $schema && $schema.$data,
12 $schemaValue;
13 if ($isData) {
14 out += ' var schema' + ($lvl) + ' = ' + (it.util.getData($schema.$data, $dataLvl, it.dataPathArr)) + '; ';
15 $schemaValue = 'schema' + $lvl;
16 } else {
17 $schemaValue = $schema;
18 }
19 var $regexp = $isData ? '(new RegExp(' + $schemaValue + '))' : it.usePattern($schema);
20 out += 'if ( ';
21 if ($isData) {
22 out += ' (' + ($schemaValue) + ' !== undefined && typeof ' + ($schemaValue) + ' != \'string\') || ';
23 }
24 out += ' !' + ($regexp) + '.test(' + ($data) + ') ) { ';
25 var $$outStack = $$outStack || [];
26 $$outStack.push(out);
27 out = ''; /* istanbul ignore else */
28 if (it.createErrors !== false) {
29 out += ' { keyword: \'' + ('pattern') + '\' , dataPath: (dataPath || \'\') + ' + (it.errorPath) + ' , schemaPath: ' + (it.util.toQuotedString($errSchemaPath)) + ' , params: { pattern: ';
30 if ($isData) {
31 out += '' + ($schemaValue);
32 } else {
33 out += '' + (it.util.toQuotedString($schema));
34 }
35 out += ' } ';
36 if (it.opts.messages !== false) {
37 out += ' , message: \'should match pattern "';
38 if ($isData) {
39 out += '\' + ' + ($schemaValue) + ' + \'';
40 } else {
41 out += '' + (it.util.escapeQuotes($schema));
42 }
43 out += '"\' ';
44 }
45 if (it.opts.verbose) {
46 out += ' , schema: ';
47 if ($isData) {
48 out += 'validate.schema' + ($schemaPath);
49 } else {
50 out += '' + (it.util.toQuotedString($schema));
51 }
52 out += ' , parentSchema: validate.schema' + (it.schemaPath) + ' , data: ' + ($data) + ' ';
53 }
54 out += ' } ';
55 } else {
56 out += ' {} ';
57 }
58 var __err = out;
59 out = $$outStack.pop();
60 if (!it.compositeRule && $breakOnError) {
61 /* istanbul ignore if */
62 if (it.async) {
63 out += ' throw new ValidationError([' + (__err) + ']); ';
64 } else {
65 out += ' validate.errors = [' + (__err) + ']; return false; ';
66 }
67 } else {
68 out += ' var err = ' + (__err) + '; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ';
69 }
70 out += '} ';
71 if ($breakOnError) {
72 out += ' else { ';
73 }
74 return out;
75}
Note: See TracBrowser for help on using the repository browser.