luci-base: validation.js: optionally support negative prefixes
[project/luci.git] / modules / luci-base / htdocs / luci-static / resources / validation.js
1 'use strict';
2 'require baseclass';
3
4 function bytelen(x) {
5 return new Blob([x]).size;
6 }
7
8 var Validator = baseclass.extend({
9 __name__: 'Validation',
10
11 __init__: function(field, type, optional, vfunc, validatorFactory) {
12 this.field = field;
13 this.optional = optional;
14 this.vfunc = vfunc;
15 this.vstack = validatorFactory.compile(type);
16 this.factory = validatorFactory;
17 },
18
19 assert: function(condition, message) {
20 if (!condition) {
21 this.field.classList.add('cbi-input-invalid');
22 this.error = message;
23 return false;
24 }
25
26 this.field.classList.remove('cbi-input-invalid');
27 this.error = null;
28 return true;
29 },
30
31 apply: function(name, value, args) {
32 var func;
33
34 if (typeof(name) === 'function')
35 func = name;
36 else if (typeof(this.factory.types[name]) === 'function')
37 func = this.factory.types[name];
38 else
39 return false;
40
41 if (value != null)
42 this.value = value;
43
44 return func.apply(this, args);
45 },
46
47 validate: function() {
48 /* element is detached */
49 if (!findParent(this.field, 'body') && !findParent(this.field, '[data-field]'))
50 return true;
51
52 this.field.classList.remove('cbi-input-invalid');
53 this.value = (this.field.value != null) ? this.field.value : '';
54 this.error = null;
55
56 var valid;
57
58 if (this.value.length === 0)
59 valid = this.assert(this.optional, _('non-empty value'));
60 else
61 valid = this.vstack[0].apply(this, this.vstack[1]);
62
63 if (valid !== true) {
64 this.field.setAttribute('data-tooltip', _('Expecting: %s').format(this.error));
65 this.field.setAttribute('data-tooltip-style', 'error');
66 this.field.dispatchEvent(new CustomEvent('validation-failure', { bubbles: true }));
67 return false;
68 }
69
70 if (typeof(this.vfunc) == 'function')
71 valid = this.vfunc(this.value);
72
73 if (valid !== true) {
74 this.assert(false, valid);
75 this.field.setAttribute('data-tooltip', valid);
76 this.field.setAttribute('data-tooltip-style', 'error');
77 this.field.dispatchEvent(new CustomEvent('validation-failure', { bubbles: true }));
78 return false;
79 }
80
81 this.field.removeAttribute('data-tooltip');
82 this.field.removeAttribute('data-tooltip-style');
83 this.field.dispatchEvent(new CustomEvent('validation-success', { bubbles: true }));
84 return true;
85 },
86
87 });
88
89 var ValidatorFactory = baseclass.extend({
90 __name__: 'ValidatorFactory',
91
92 create: function(field, type, optional, vfunc) {
93 return new Validator(field, type, optional, vfunc, this);
94 },
95
96 compile: function(code) {
97 var pos = 0;
98 var esc = false;
99 var depth = 0;
100 var stack = [ ];
101
102 code += ',';
103
104 for (var i = 0; i < code.length; i++) {
105 if (esc) {
106 esc = false;
107 continue;
108 }
109
110 switch (code.charCodeAt(i))
111 {
112 case 92:
113 esc = true;
114 break;
115
116 case 40:
117 case 44:
118 if (depth <= 0) {
119 if (pos < i) {
120 var label = code.substring(pos, i);
121 label = label.replace(/\\(.)/g, '$1');
122 label = label.replace(/^[ \t]+/g, '');
123 label = label.replace(/[ \t]+$/g, '');
124
125 if (label && !isNaN(label)) {
126 stack.push(parseFloat(label));
127 }
128 else if (label.match(/^(['"]).*\1$/)) {
129 stack.push(label.replace(/^(['"])(.*)\1$/, '$2'));
130 }
131 else if (typeof this.types[label] == 'function') {
132 stack.push(this.types[label]);
133 stack.push(null);
134 }
135 else {
136 L.raise('SyntaxError', 'Unhandled token "%s"', label);
137 }
138 }
139
140 pos = i+1;
141 }
142
143 depth += (code.charCodeAt(i) == 40);
144 break;
145
146 case 41:
147 if (--depth <= 0) {
148 if (typeof stack[stack.length-2] != 'function')
149 L.raise('SyntaxError', 'Argument list follows non-function');
150
151 stack[stack.length-1] = this.compile(code.substring(pos, i));
152 pos = i+1;
153 }
154
155 break;
156 }
157 }
158
159 return stack;
160 },
161
162 parseInteger: function(x) {
163 return (/^-?\d+$/.test(x) ? +x : NaN);
164 },
165
166 parseDecimal: function(x) {
167 return (/^-?\d+(?:\.\d+)?$/.test(x) ? +x : NaN);
168 },
169
170 parseIPv4: function(x) {
171 if (!x.match(/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/))
172 return null;
173
174 if (RegExp.$1 > 255 || RegExp.$2 > 255 || RegExp.$3 > 255 || RegExp.$4 > 255)
175 return null;
176
177 return [ +RegExp.$1, +RegExp.$2, +RegExp.$3, +RegExp.$4 ];
178 },
179
180 parseIPv6: function(x) {
181 if (x.match(/^([a-fA-F0-9:]+):(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/)) {
182 var v6 = RegExp.$1, v4 = this.parseIPv4(RegExp.$2);
183
184 if (!v4)
185 return null;
186
187 x = v6 + ':' + (v4[0] * 256 + v4[1]).toString(16)
188 + ':' + (v4[2] * 256 + v4[3]).toString(16);
189 }
190
191 if (!x.match(/^[a-fA-F0-9:]+$/))
192 return null;
193
194 var prefix_suffix = x.split(/::/);
195
196 if (prefix_suffix.length > 2)
197 return null;
198
199 var prefix = (prefix_suffix[0] || '0').split(/:/);
200 var suffix = prefix_suffix.length > 1 ? (prefix_suffix[1] || '0').split(/:/) : [];
201
202 if (suffix.length ? (prefix.length + suffix.length > 7)
203 : ((prefix_suffix.length < 2 && prefix.length < 8) || prefix.length > 8))
204 return null;
205
206 var i, word;
207 var words = [];
208
209 for (i = 0, word = parseInt(prefix[0], 16); i < prefix.length; word = parseInt(prefix[++i], 16))
210 if (prefix[i].length <= 4 && !isNaN(word) && word <= 0xFFFF)
211 words.push(word);
212 else
213 return null;
214
215 for (i = 0; i < (8 - prefix.length - suffix.length); i++)
216 words.push(0);
217
218 for (i = 0, word = parseInt(suffix[0], 16); i < suffix.length; word = parseInt(suffix[++i], 16))
219 if (suffix[i].length <= 4 && !isNaN(word) && word <= 0xFFFF)
220 words.push(word);
221 else
222 return null;
223
224 return words;
225 },
226
227 types: {
228 integer: function() {
229 return this.assert(!isNaN(this.factory.parseInteger(this.value)), _('valid integer value'));
230 },
231
232 uinteger: function() {
233 return this.assert(this.factory.parseInteger(this.value) >= 0, _('positive integer value'));
234 },
235
236 float: function() {
237 return this.assert(!isNaN(this.factory.parseDecimal(this.value)), _('valid decimal value'));
238 },
239
240 ufloat: function() {
241 return this.assert(this.factory.parseDecimal(this.value) >= 0, _('positive decimal value'));
242 },
243
244 ipaddr: function(nomask) {
245 return this.assert(this.apply('ip4addr', null, [nomask]) || this.apply('ip6addr', null, [nomask]),
246 nomask ? _('valid IP address') : _('valid IP address or prefix'));
247 },
248
249 ip4addr: function(nomask) {
250 var re = nomask ? /^(\d+\.\d+\.\d+\.\d+)$/ : /^(\d+\.\d+\.\d+\.\d+)(?:\/(\d+\.\d+\.\d+\.\d+)|\/(\d{1,2}))?$/,
251 m = this.value.match(re);
252
253 return this.assert(m && this.factory.parseIPv4(m[1]) && (m[2] ? this.factory.parseIPv4(m[2]) : (m[3] ? this.apply('ip4prefix', m[3]) : true)),
254 nomask ? _('valid IPv4 address') : _('valid IPv4 address or network'));
255 },
256
257 ip6addr: function(nomask) {
258 var re = nomask ? /^([0-9a-fA-F:.]+)$/ : /^([0-9a-fA-F:.]+)(?:\/(\d{1,3}))?$/,
259 m = this.value.match(re);
260
261 return this.assert(m && this.factory.parseIPv6(m[1]) && (m[2] ? this.apply('ip6prefix', m[2]) : true),
262 nomask ? _('valid IPv6 address') : _('valid IPv6 address or prefix'));
263 },
264
265 ip4prefix: function() {
266 return this.assert(!isNaN(this.value) && this.value >= 0 && this.value <= 32,
267 _('valid IPv4 prefix value (0-32)'));
268 },
269
270 ip6prefix: function() {
271 return this.assert(!isNaN(this.value) && this.value >= 0 && this.value <= 128,
272 _('valid IPv6 prefix value (0-128)'));
273 },
274
275 cidr: function(negative) {
276 return this.assert(this.apply('cidr4', null, [negative]) || this.apply('cidr6', null, [negative]),
277 _('valid IPv4 or IPv6 CIDR'));
278 },
279
280 cidr4: function(negative) {
281 var m = this.value.match(/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\/(-)?(\d{1,2})$/);
282 return this.assert(m && this.factory.parseIPv4(m[1]) && (negative || !m[2]) && this.apply('ip4prefix', m[3]),
283 _('valid IPv4 CIDR'));
284 },
285
286 cidr6: function(negative) {
287 var m = this.value.match(/^([0-9a-fA-F:.]+)\/(-)?(\d{1,3})$/);
288 return this.assert(m && this.factory.parseIPv6(m[1]) && (negative || !m[2]) && this.apply('ip6prefix', m[3]),
289 _('valid IPv6 CIDR'));
290 },
291
292 ipnet4: function() {
293 var m = this.value.match(/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/);
294 return this.assert(m && this.factory.parseIPv4(m[1]) && this.factory.parseIPv4(m[2]), _('IPv4 network in address/netmask notation'));
295 },
296
297 ipnet6: function() {
298 var m = this.value.match(/^([0-9a-fA-F:.]+)\/([0-9a-fA-F:.]+)$/);
299 return this.assert(m && this.factory.parseIPv6(m[1]) && this.factory.parseIPv6(m[2]), _('IPv6 network in address/netmask notation'));
300 },
301
302 ip6hostid: function() {
303 if (this.value == "eui64" || this.value == "random")
304 return true;
305
306 var v6 = this.factory.parseIPv6(this.value);
307 return this.assert(!(!v6 || v6[0] || v6[1] || v6[2] || v6[3]), _('valid IPv6 host id'));
308 },
309
310 ipmask: function(negative) {
311 return this.assert(this.apply('ipmask4', null, [negative]) || this.apply('ipmask6', null, [negative]),
312 _('valid network in address/netmask notation'));
313 },
314
315 ipmask4: function(negative) {
316 return this.assert(this.apply('cidr4', null, [negative]) || this.apply('ipnet4') || this.apply('ip4addr'),
317 _('valid IPv4 network'));
318 },
319
320 ipmask6: function(negative) {
321 return this.assert(this.apply('cidr6', null, [negative]) || this.apply('ipnet6') || this.apply('ip6addr'),
322 _('valid IPv6 network'));
323 },
324
325 port: function() {
326 var p = this.factory.parseInteger(this.value);
327 return this.assert(p >= 0 && p <= 65535, _('valid port value'));
328 },
329
330 portrange: function() {
331 if (this.value.match(/^(\d+)-(\d+)$/)) {
332 var p1 = +RegExp.$1;
333 var p2 = +RegExp.$2;
334 return this.assert(p1 <= p2 && p2 <= 65535,
335 _('valid port or port range (port1-port2)'));
336 }
337
338 return this.assert(this.apply('port'), _('valid port or port range (port1-port2)'));
339 },
340
341 macaddr: function() {
342 return this.assert(this.value.match(/^([a-fA-F0-9]{2}:){5}[a-fA-F0-9]{2}$/) != null,
343 _('valid MAC address'));
344 },
345
346 host: function(ipv4only) {
347 return this.assert(this.apply('hostname') || this.apply(ipv4only == 1 ? 'ip4addr' : 'ipaddr', null, ['nomask']),
348 _('valid hostname or IP address'));
349 },
350
351 hostname: function(strict) {
352 if (this.value.length <= 253)
353 return this.assert(
354 (this.value.match(/^[a-zA-Z0-9_]+$/) != null ||
355 (this.value.match(/^[a-zA-Z0-9_][a-zA-Z0-9_\-.]*[a-zA-Z0-9]$/) &&
356 this.value.match(/[^0-9.]/))) &&
357 (!strict || !this.value.match(/^_/)),
358 _('valid hostname'));
359
360 return this.assert(false, _('valid hostname'));
361 },
362
363 network: function() {
364 return this.assert(this.apply('uciname') || this.apply('host'),
365 _('valid UCI identifier, hostname or IP address'));
366 },
367
368 hostport: function(ipv4only) {
369 var hp = this.value.split(/:/);
370 return this.assert(hp.length == 2 && this.apply('host', hp[0], [ipv4only]) && this.apply('port', hp[1]),
371 _('valid host:port'));
372 },
373
374 ip4addrport: function() {
375 var hp = this.value.split(/:/);
376 return this.assert(hp.length == 2 && this.apply('ip4addr', hp[0], [true]) && this.apply('port', hp[1]),
377 _('valid IPv4 address:port'));
378 },
379
380 ipaddrport: function(bracket) {
381 var m4 = this.value.match(/^([^\[\]:]+):(\d+)$/),
382 m6 = this.value.match((bracket == 1) ? /^\[(.+)\]:(\d+)$/ : /^([^\[\]]+):(\d+)$/);
383
384 if (m4)
385 return this.assert(this.apply('ip4addr', m4[1], [true]) && this.apply('port', m4[2]),
386 _('valid address:port'));
387
388 return this.assert(m6 && this.apply('ip6addr', m6[1], [true]) && this.apply('port', m6[2]),
389 _('valid address:port'));
390 },
391
392 wpakey: function() {
393 var v = this.value;
394
395 if (v.length == 64)
396 return this.assert(v.match(/^[a-fA-F0-9]{64}$/), _('valid hexadecimal WPA key'));
397
398 return this.assert((v.length >= 8) && (v.length <= 63), _('key between 8 and 63 characters'));
399 },
400
401 wepkey: function() {
402 var v = this.value;
403
404 if (v.substr(0, 2) === 's:')
405 v = v.substr(2);
406
407 if ((v.length == 10) || (v.length == 26))
408 return this.assert(v.match(/^[a-fA-F0-9]{10,26}$/), _('valid hexadecimal WEP key'));
409
410 return this.assert((v.length === 5) || (v.length === 13), _('key with either 5 or 13 characters'));
411 },
412
413 uciname: function() {
414 return this.assert(this.value.match(/^[a-zA-Z0-9_]+$/), _('valid UCI identifier'));
415 },
416
417 range: function(min, max) {
418 var val = this.factory.parseDecimal(this.value);
419 return this.assert(val >= +min && val <= +max, _('value between %f and %f').format(min, max));
420 },
421
422 min: function(min) {
423 return this.assert(this.factory.parseDecimal(this.value) >= +min, _('value greater or equal to %f').format(min));
424 },
425
426 max: function(max) {
427 return this.assert(this.factory.parseDecimal(this.value) <= +max, _('value smaller or equal to %f').format(max));
428 },
429
430 length: function(len) {
431 return this.assert(bytelen(this.value) == +len,
432 _('value with %d characters').format(len));
433 },
434
435 rangelength: function(min, max) {
436 var len = bytelen(this.value);
437 return this.assert((len >= +min) && (len <= +max),
438 _('value between %d and %d characters').format(min, max));
439 },
440
441 minlength: function(min) {
442 return this.assert(bytelen(this.value) >= +min,
443 _('value with at least %d characters').format(min));
444 },
445
446 maxlength: function(max) {
447 return this.assert(bytelen(this.value) <= +max,
448 _('value with at most %d characters').format(max));
449 },
450
451 or: function() {
452 var errors = [];
453
454 for (var i = 0; i < arguments.length; i += 2) {
455 if (typeof arguments[i] != 'function') {
456 if (arguments[i] == this.value)
457 return this.assert(true);
458 errors.push('"%s"'.format(arguments[i]));
459 i--;
460 }
461 else if (arguments[i].apply(this, arguments[i+1])) {
462 return this.assert(true);
463 }
464 else {
465 errors.push(this.error);
466 }
467 }
468
469 var t = _('One of the following: %s');
470
471 return this.assert(false, t.format('\n - ' + errors.join('\n - ')));
472 },
473
474 and: function() {
475 for (var i = 0; i < arguments.length; i += 2) {
476 if (typeof arguments[i] != 'function') {
477 if (arguments[i] != this.value)
478 return this.assert(false, '"%s"'.format(arguments[i]));
479 i--;
480 }
481 else if (!arguments[i].apply(this, arguments[i+1])) {
482 return this.assert(false, this.error);
483 }
484 }
485
486 return this.assert(true);
487 },
488
489 neg: function() {
490 this.value = this.value.replace(/^[ \t]*![ \t]*/, '');
491
492 if (arguments[0].apply(this, arguments[1]))
493 return this.assert(true);
494
495 return this.assert(false, _('Potential negation of: %s').format(this.error));
496 },
497
498 list: function(subvalidator, subargs) {
499 this.field.setAttribute('data-is-list', 'true');
500
501 var tokens = this.value.match(/[^ \t]+/g);
502 for (var i = 0; i < tokens.length; i++)
503 if (!this.apply(subvalidator, tokens[i], subargs))
504 return this.assert(false, this.error);
505
506 return this.assert(true);
507 },
508
509 phonedigit: function() {
510 return this.assert(this.value.match(/^[0-9\*#!\.]+$/),
511 _('valid phone digit (0-9, "*", "#", "!" or ".")'));
512 },
513
514 timehhmmss: function() {
515 return this.assert(this.value.match(/^[0-6][0-9]:[0-6][0-9]:[0-6][0-9]$/),
516 _('valid time (HH:MM:SS)'));
517 },
518
519 dateyyyymmdd: function() {
520 if (this.value.match(/^(\d\d\d\d)-(\d\d)-(\d\d)/)) {
521 var year = +RegExp.$1,
522 month = +RegExp.$2,
523 day = +RegExp.$3,
524 days_in_month = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
525
526 var is_leap_year = function(year) {
527 return ((!(year % 4) && (year % 100)) || !(year % 400));
528 }
529
530 var get_days_in_month = function(month, year) {
531 return (month === 2 && is_leap_year(year)) ? 29 : days_in_month[month - 1];
532 }
533
534 /* Firewall rules in the past don't make sense */
535 return this.assert(year >= 2015 && month && month <= 12 && day && day <= get_days_in_month(month, year),
536 _('valid date (YYYY-MM-DD)'));
537
538 }
539
540 return this.assert(false, _('valid date (YYYY-MM-DD)'));
541 },
542
543 unique: function(subvalidator, subargs) {
544 var ctx = this,
545 option = findParent(ctx.field, '[data-widget][data-name]'),
546 section = findParent(option, '.cbi-section'),
547 query = '[data-widget="%s"][data-name="%s"]'.format(option.getAttribute('data-widget'), option.getAttribute('data-name')),
548 unique = true;
549
550 section.querySelectorAll(query).forEach(function(sibling) {
551 if (sibling === option)
552 return;
553
554 var input = sibling.querySelector('[data-type]'),
555 values = input ? (input.getAttribute('data-is-list') ? input.value.match(/[^ \t]+/g) : [ input.value ]) : null;
556
557 if (values !== null && values.indexOf(ctx.value) !== -1)
558 unique = false;
559 });
560
561 if (!unique)
562 return this.assert(false, _('unique value'));
563
564 if (typeof(subvalidator) === 'function')
565 return this.apply(subvalidator, null, subargs);
566
567 return this.assert(true);
568 },
569
570 hexstring: function() {
571 return this.assert(this.value.match(/^([a-f0-9][a-f0-9]|[A-F0-9][A-F0-9])+$/),
572 _('hexadecimal encoded value'));
573 },
574
575 string: function() {
576 return true;
577 }
578 }
579 });
580
581 return ValidatorFactory;