From 9a41673488dd7725c8a7f69430b5c8559a038695 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 17 May 2020 21:34:30 +0200 Subject: luci-base: validation.js: count byte- instead of character length of strings Fixes: #4055 Signed-off-by: Jo-Philipp Wich --- .../luci-base/htdocs/luci-static/resources/validation.js | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'modules/luci-base/htdocs/luci-static/resources/validation.js') diff --git a/modules/luci-base/htdocs/luci-static/resources/validation.js b/modules/luci-base/htdocs/luci-static/resources/validation.js index eea837d64e..769d2a9553 100644 --- a/modules/luci-base/htdocs/luci-static/resources/validation.js +++ b/modules/luci-base/htdocs/luci-static/resources/validation.js @@ -1,6 +1,10 @@ 'use strict'; 'require baseclass'; +function bytelen(x) { + return new Blob([x]).size; +} + var Validator = baseclass.extend({ __name__: 'Validation', @@ -421,24 +425,23 @@ var ValidatorFactory = baseclass.extend({ }, length: function(len) { - var val = '' + this.value; - return this.assert(val.length == +len, + return this.assert(bytelen(this.value) == +len, _('value with %d characters').format(len)); }, rangelength: function(min, max) { - var val = '' + this.value; - return this.assert((val.length >= +min) && (val.length <= +max), + var len = bytelen(this.value); + return this.assert((len >= +min) && (len <= +max), _('value between %d and %d characters').format(min, max)); }, minlength: function(min) { - return this.assert((''+this.value).length >= +min, + return this.assert(bytelen(this.value) >= +min, _('value with at least %d characters').format(min)); }, maxlength: function(max) { - return this.assert((''+this.value).length <= +max, + return this.assert(bytelen(this.value) <= +max, _('value with at most %d characters').format(max)); }, -- cgit v1.2.3