2 LuCI2 - OpenWrt Web Interface
4 Copyright 2013 Jo-Philipp Wich <jow@openwrt.org>
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
10 http://www.apache.org/licenses/LICENSE-2.0
13 String.prototype.format = function()
15 var html_esc = [/&/g, '&', /"/g, '"', /'/g, ''', /</g, '<', />/g, '>'];
16 var quot_esc = [/"/g, '"', /'/g, '''];
19 for( var i = 0; i < r.length; i += 2 )
20 s = s.replace(r[i], r[i+1]);
26 var re = /^(([^%]*)%('.|0|\x20)?(-)?(\d+)?(\.\d+)?(%|b|c|d|u|f|o|s|x|X|q|h|j|t|m))/;
27 var a = b = [], numSubstitutions = 0, numMatches = 0;
29 while ((a = re.exec(str)) != null)
32 var leftpart = a[2], pPad = a[3], pJustify = a[4], pMinLength = a[5];
33 var pPrecision = a[6], pType = a[7];
43 if (numSubstitutions < arguments.length)
45 var param = arguments[numSubstitutions++];
48 if (pPad && pPad.substr(0,1) == "'")
49 pad = leftpart.substr(1,1);
53 var justifyRight = true;
54 if (pJustify && pJustify === "-")
59 minLength = parseInt(pMinLength);
62 if (pPrecision && pType == 'f')
63 precision = parseInt(pPrecision.substring(1));
70 subst = (parseInt(param) || 0).toString(2);
74 subst = String.fromCharCode(parseInt(param) || 0);
78 subst = (parseInt(param) || 0);
82 subst = Math.abs(parseInt(param) || 0);
86 subst = (precision > -1)
87 ? ((parseFloat(param) || 0.0)).toFixed(precision)
88 : (parseFloat(param) || 0.0);
92 subst = (parseInt(param) || 0).toString(8);
100 subst = ('' + (parseInt(param) || 0).toString(16)).toLowerCase();
104 subst = ('' + (parseInt(param) || 0).toString(16)).toUpperCase();
108 subst = esc(param, html_esc);
112 subst = esc(param, quot_esc);
116 subst = String.serialize(param);
123 var ts = (param || 0);
126 tm = Math.floor(ts / 60);
131 th = Math.floor(tm / 60);
136 td = Math.floor(th / 24);
141 ? '%dd %dh %dm %ds'.format(td, th, tm, ts)
142 : '%dh %dm %ds'.format(th, tm, ts);
147 var mf = pMinLength ? parseInt(pMinLength) : 1000;
148 var pr = pPrecision ? Math.floor(10*parseFloat('0'+pPrecision)) : 2;
151 var val = parseFloat(param || 0);
152 var units = [ '', 'K', 'M', 'G', 'T', 'P', 'E' ];
154 for (i = 0; (i < units.length) && (val > mf); i++)
157 subst = val.toFixed(pr) + ' ' + units[i];
161 subst = (typeof(subst) == 'undefined') ? '' : subst.toString();
163 if (minLength > 0 && pad.length > 0)
164 for (var i = 0; i < (minLength - subst.length); i++)
165 subst = justifyRight ? (pad + subst) : (subst + pad);
169 out += leftpart + subst;
170 str = str.substr(m.length);
180 var Class = function() { };
182 Class.extend = function(properties)
184 Class.initializing = true;
186 var prototype = new this();
187 var superprot = this.prototype;
189 Class.initializing = false;
191 $.extend(prototype, properties, {
192 callSuper: function() {
194 var meth = arguments[0];
196 if (typeof(superprot[meth]) != 'function')
199 for (var i = 1; i < arguments.length; i++)
200 args.push(arguments[i]);
202 return superprot[meth].apply(this, args);
208 this.options = arguments[0] || { };
210 if (!Class.initializing && typeof(this.init) == 'function')
211 this.init.apply(this, arguments);
214 _class.prototype = prototype;
215 _class.prototype.constructor = _class;
217 _class.extend = arguments.callee;
222 this.defaults = function(obj, def)
225 if (typeof(obj[key]) == 'undefined')
231 this.isDeferred = function(x)
233 return (typeof(x) == 'object' &&
234 typeof(x.then) == 'function' &&
235 typeof(x.promise) == 'function');
238 this.deferrable = function()
240 if (this.isDeferred(arguments[0]))
243 var d = $.Deferred();
244 d.resolve.apply(d, arguments);
253 plural: function(n) { return 0 + (n != 1) },
256 if (_luci2.i18n.loaded)
259 var lang = (navigator.userLanguage || navigator.language || 'en').toLowerCase();
260 var langs = (lang.indexOf('-') > -1) ? [ lang, lang.split(/-/)[0] ] : [ lang ];
262 for (var i = 0; i < langs.length; i++)
263 $.ajax('%s/i18n/base.%s.json'.format(_luci2.globals.resource, langs[i]), {
267 success: function(data) {
268 $.extend(_luci2.i18n.catalog, data);
270 var pe = _luci2.i18n.catalog[''];
273 delete _luci2.i18n.catalog[''];
275 var pf = new Function('n', 'return 0 + (' + pe + ')');
276 _luci2.i18n.plural = pf;
282 _luci2.i18n.loaded = true;
287 this.tr = function(msgid)
291 var msgstr = _luci2.i18n.catalog[msgid];
293 if (typeof(msgstr) == 'undefined')
295 else if (typeof(msgstr) == 'string')
301 this.trp = function(msgid, msgid_plural, count)
305 var msgstr = _luci2.i18n.catalog[msgid];
307 if (typeof(msgstr) == 'undefined')
308 return (count == 1) ? msgid : msgid_plural;
309 else if (typeof(msgstr) == 'string')
312 return msgstr[_luci2.i18n.plural(count)];
315 this.trc = function(msgctx, msgid)
319 var msgstr = _luci2.i18n.catalog[msgid + '\u0004' + msgctx];
321 if (typeof(msgstr) == 'undefined')
323 else if (typeof(msgstr) == 'string')
329 this.trcp = function(msgctx, msgid, msgid_plural, count)
333 var msgstr = _luci2.i18n.catalog[msgid + '\u0004' + msgctx];
335 if (typeof(msgstr) == 'undefined')
336 return (count == 1) ? msgid : msgid_plural;
337 else if (typeof(msgstr) == 'string')
340 return msgstr[_luci2.i18n.plural(count)];
343 this.setHash = function(key, value)
346 var data = this.getHash(undefined);
348 if (typeof(value) == 'undefined')
359 for (var i = 0; i < keys.length; i++)
364 h += keys[i] + ':' + data[keys[i]];
368 location.hash = '#' + h;
371 this.getHash = function(key)
374 var tuples = (location.hash || '#').substring(1).split(/,/);
376 for (var i = 0; i < tuples.length; i++)
378 var tuple = tuples[i].split(/:/);
379 if (tuple.length == 2)
380 data[tuple[0]] = tuple[1];
383 if (typeof(key) != 'undefined')
392 sid: '00000000000000000000000000000000'
401 _call: function(req, cb)
403 return $.ajax('/ubus', {
405 contentType: 'application/json',
406 data: JSON.stringify(req),
409 timeout: _luci2.globals.timeout
413 _list_cb: function(msg)
415 /* verify message frame */
416 if (typeof(msg) != 'object' || msg.jsonrpc != '2.0' || !msg.id)
417 throw 'Invalid JSON response';
422 _call_cb: function(msg)
425 var type = Object.prototype.toString;
430 for (var i = 0; i < msg.length; i++)
432 /* verify message frame */
433 if (typeof(msg[i]) != 'object' || msg[i].jsonrpc != '2.0' || !msg[i].id)
434 throw 'Invalid JSON response';
436 /* fetch related request info */
437 var req = _luci2.rpc._requests[msg[i].id];
438 if (typeof(req) != 'object')
439 throw 'No related request for JSON response';
441 /* fetch response attribute and verify returned type */
444 if ($.isArray(msg[i].result) && msg[i].result[0] == 0)
445 ret = (msg[i].result.length > 1) ? msg[i].result[1] : msg[i].result[0];
449 for (var key in req.expect)
451 if (typeof(ret) != 'undefined' && key != '')
454 if (type.call(ret) != type.call(req.expect[key]))
455 ret = req.expect[key];
462 if (typeof(req.filter) == 'function')
465 req.priv[1] = req.params;
466 ret = req.filter.apply(_luci2.rpc, req.priv);
469 /* store response data */
470 if (typeof(req.index) == 'number')
471 data[req.index] = ret;
475 /* delete request object */
476 delete _luci2.rpc._requests[msg[i].id];
485 for (var i = 0; i < arguments.length; i++)
486 params[i] = arguments[i];
492 params: (params.length > 0) ? params : undefined
495 return this._call(msg, this._list_cb);
500 if (!$.isArray(this._batch))
506 if (!$.isArray(this._batch))
507 return _luci2.deferrable([ ]);
509 var req = this._batch;
513 return this._call(req, this._call_cb);
516 declare: function(options)
521 /* build parameter object */
524 if ($.isArray(options.params))
525 for (p_off = 0; p_off < options.params.length; p_off++)
526 params[options.params[p_off]] = arguments[p_off];
528 /* all remaining arguments are private args */
529 var priv = [ undefined, undefined ];
530 for (; p_off < arguments.length; p_off++)
531 priv.push(arguments[p_off]);
533 /* store request info */
534 var req = _rpc._requests[_rpc._id] = {
535 expect: options.expect,
536 filter: options.filter,
541 /* build message object */
554 /* when a batch is in progress then store index in request data
555 * and push message object onto the stack */
556 if ($.isArray(_rpc._batch))
558 req.index = _rpc._batch.push(msg) - 1;
559 return _luci2.deferrable(msg);
563 return _rpc._call(msg, _rpc._call_cb);
572 return _luci2.session.access('ubus', 'uci', 'commit');
575 add: _luci2.rpc.declare({
578 params: [ 'config', 'type', 'name', 'values' ],
579 expect: { section: '' }
587 changes: _luci2.rpc.declare({
590 params: [ 'config' ],
591 expect: { changes: [ ] }
594 commit: _luci2.rpc.declare({
600 _delete_one: _luci2.rpc.declare({
603 params: [ 'config', 'section', 'option' ]
606 _delete_multiple: _luci2.rpc.declare({
609 params: [ 'config', 'section', 'options' ]
612 'delete': function(config, section, option)
614 if ($.isArray(option))
615 return this._delete_multiple(config, section, option);
617 return this._delete_one(config, section, option);
620 delete_all: _luci2.rpc.declare({
623 params: [ 'config', 'type', 'match' ]
626 _foreach: _luci2.rpc.declare({
629 params: [ 'config', 'type' ],
630 expect: { values: { } }
633 foreach: function(config, type, cb)
635 return this._foreach(config, type).then(function(sections) {
636 for (var s in sections)
641 get: _luci2.rpc.declare({
644 params: [ 'config', 'section', 'option' ],
646 filter: function(data, params) {
647 if (typeof(params.option) == 'undefined')
648 return data.values ? data.values['.type'] : undefined;
654 get_all: _luci2.rpc.declare({
657 params: [ 'config', 'section' ],
658 expect: { values: { } },
659 filter: function(data, params) {
660 if (typeof(params.section) == 'string')
661 data['.section'] = params.section;
662 else if (typeof(params.config) == 'string')
663 data['.package'] = params.config;
668 get_first: function(config, type, option)
670 return this._foreach(config, type).then(function(sections) {
671 for (var s in sections)
673 var val = (typeof(option) == 'string') ? sections[s][option] : sections[s]['.name'];
675 if (typeof(val) != 'undefined')
683 section: _luci2.rpc.declare({
686 params: [ 'config', 'type', 'name', 'values' ],
687 expect: { section: '' }
690 _set: _luci2.rpc.declare({
693 params: [ 'config', 'section', 'values' ]
696 set: function(config, section, option, value)
698 if (typeof(value) == 'undefined' && typeof(option) == 'string')
699 return this.section(config, section, option); /* option -> type */
700 else if ($.isPlainObject(option))
701 return this._set(config, section, option); /* option -> values */
704 values[option] = value;
706 return this._set(config, section, values);
709 order: _luci2.rpc.declare({
712 params: [ 'config', 'sections' ]
717 listNetworkNames: function() {
718 return _luci2.rpc.list('network.interface.*').then(function(list) {
720 for (var name in list)
721 if (name != 'network.interface.loopback')
722 names.push(name.substring(18));
728 listDeviceNames: _luci2.rpc.declare({
729 object: 'network.device',
732 filter: function(data) {
734 for (var name in data)
742 getNetworkStatus: function()
747 return this.listNetworkNames().then(function(names) {
750 for (var i = 0; i < names.length; i++)
751 _luci2.network.getInterfaceStatus(names[i]);
753 return _luci2.rpc.flush();
754 }).then(function(networks) {
755 for (var i = 0; i < networks.length; i++)
757 var net = nets[i] = networks[i];
758 var dev = net.l3_device || net.l2_device;
760 net.device = devs[dev] = { };
765 for (var dev in devs)
766 _luci2.network.listDeviceNamestatus(dev);
768 return _luci2.rpc.flush();
769 }).then(function(devices) {
772 for (var i = 0; i < devices.length; i++)
774 var brm = devices[i]['bridge-members'];
775 delete devices[i]['bridge-members'];
777 $.extend(devs[devices[i]['device']], devices[i]);
782 devs[devices[i]['device']].subdevices = [ ];
784 for (var j = 0; j < brm.length; j++)
789 _luci2.network.listDeviceNamestatus(brm[j]);
792 devs[devices[i]['device']].subdevices[j] = devs[brm[j]];
796 return _luci2.rpc.flush();
797 }).then(function(subdevices) {
798 for (var i = 0; i < subdevices.length; i++)
799 $.extend(devs[subdevices[i]['device']], subdevices[i]);
803 for (var dev in devs)
804 _luci2.wireless.getDeviceStatus(dev);
806 return _luci2.rpc.flush();
807 }).then(function(wifidevices) {
808 for (var i = 0; i < wifidevices.length; i++)
810 devs[wifidevices[i]['device']].wireless = wifidevices[i];
812 nets.sort(function(a, b) {
813 if (a['interface'] < b['interface'])
815 else if (a['interface'] > b['interface'])
825 findWanInterfaces: function(cb)
827 return this.listNetworkNames().then(function(names) {
830 for (var i = 0; i < names.length; i++)
831 _luci2.network.getInterfaceStatus(names[i]);
833 return _luci2.rpc.flush();
834 }).then(function(interfaces) {
835 var rv = [ undefined, undefined ];
837 for (var i = 0; i < interfaces.length; i++)
839 for (var j = 0; j < interfaces[i].route.length; j++)
841 var rt = interfaces[i].route[j];
843 if (typeof(rt.table) != 'undefined')
846 if (rt.target == '0.0.0.0' && rt.mask == 0)
847 rv[0] = interfaces[i];
848 else if (rt.target == '::' && rt.mask == 0)
849 rv[1] = interfaces[i];
857 getDHCPLeases: _luci2.rpc.declare({
858 object: 'luci2.network',
859 method: 'dhcp_leases',
860 expect: { leases: [ ] }
863 getDHCPv6Leases: _luci2.rpc.declare({
864 object: 'luci2.network',
865 method: 'dhcp6_leases',
866 expect: { leases: [ ] }
869 getRoutes: _luci2.rpc.declare({
870 object: 'luci2.network',
872 expect: { routes: [ ] }
875 getIPv6Routes: _luci2.rpc.declare({
876 object: 'luci2.network',
878 expect: { routes: [ ] }
881 getARPTable: _luci2.rpc.declare({
882 object: 'luci2.network',
884 expect: { entries: [ ] }
887 getInterfaceStatus: _luci2.rpc.declare({
888 object: 'network.interface',
890 params: [ 'interface' ],
892 filter: function(data, params) {
893 data['interface'] = params['interface'];
894 data['l2_device'] = data['device'];
895 delete data['device'];
900 listDeviceNamestatus: _luci2.rpc.declare({
901 object: 'network.device',
905 filter: function(data, params) {
906 data['device'] = params['name'];
911 getConntrackCount: _luci2.rpc.declare({
912 object: 'luci2.network',
913 method: 'conntrack_count',
914 expect: { '': { count: 0, limit: 0 } }
919 listDeviceNames: _luci2.rpc.declare({
922 expect: { 'devices': [ ] },
923 filter: function(data) {
929 getDeviceStatus: _luci2.rpc.declare({
932 params: [ 'device' ],
934 filter: function(data, params) {
935 if (!$.isEmptyObject(data))
937 data['device'] = params['device'];
944 getAssocList: _luci2.rpc.declare({
947 params: [ 'device' ],
948 expect: { results: [ ] },
949 filter: function(data, params) {
950 for (var i = 0; i < data.length; i++)
951 data[i]['device'] = params['device'];
953 data.sort(function(a, b) {
954 if (a.bssid < b.bssid)
956 else if (a.bssid > b.bssid)
966 getWirelessStatus: function() {
967 return this.listDeviceNames().then(function(names) {
970 for (var i = 0; i < names.length; i++)
971 _luci2.wireless.getDeviceStatus(names[i]);
973 return _luci2.rpc.flush();
974 }).then(function(networks) {
978 'country', 'channel', 'frequency', 'frequency_offset',
979 'txpower', 'txpower_offset', 'hwmodes', 'hardware', 'phy'
983 'ssid', 'bssid', 'mode', 'quality', 'quality_max',
984 'signal', 'noise', 'bitrate', 'encryption'
987 for (var i = 0; i < networks.length; i++)
989 var phy = rv[networks[i].phy] || (
990 rv[networks[i].phy] = { networks: [ ] }
994 device: networks[i].device
997 for (var j = 0; j < phy_attrs.length; j++)
998 phy[phy_attrs[j]] = networks[i][phy_attrs[j]];
1000 for (var j = 0; j < net_attrs.length; j++)
1001 net[net_attrs[j]] = networks[i][net_attrs[j]];
1003 phy.networks.push(net);
1010 getAssocLists: function()
1012 return this.listDeviceNames().then(function(names) {
1015 for (var i = 0; i < names.length; i++)
1016 _luci2.wireless.getAssocList(names[i]);
1018 return _luci2.rpc.flush();
1019 }).then(function(assoclists) {
1022 for (var i = 0; i < assoclists.length; i++)
1023 for (var j = 0; j < assoclists[i].length; j++)
1024 rv.push(assoclists[i][j]);
1030 formatEncryption: function(enc)
1032 var format_list = function(l, s)
1035 for (var i = 0; i < l.length; i++)
1036 rv.push(l[i].toUpperCase());
1037 return rv.join(s ? s : ', ');
1040 if (!enc || !enc.enabled)
1041 return _luci2.tr('None');
1045 if (enc.wep.length == 2)
1046 return _luci2.tr('WEP Open/Shared') + ' (%s)'.format(format_list(enc.ciphers, ', '));
1047 else if (enc.wep[0] == 'shared')
1048 return _luci2.tr('WEP Shared Auth') + ' (%s)'.format(format_list(enc.ciphers, ', '));
1050 return _luci2.tr('WEP Open System') + ' (%s)'.format(format_list(enc.ciphers, ', '));
1054 if (enc.wpa.length == 2)
1055 return _luci2.tr('mixed WPA/WPA2') + ' %s (%s)'.format(
1056 format_list(enc.authentication, '/'),
1057 format_list(enc.ciphers, ', ')
1059 else if (enc.wpa[0] == 2)
1060 return 'WPA2 %s (%s)'.format(
1061 format_list(enc.authentication, '/'),
1062 format_list(enc.ciphers, ', ')
1065 return 'WPA %s (%s)'.format(
1066 format_list(enc.authentication, '/'),
1067 format_list(enc.ciphers, ', ')
1071 return _luci2.tr('Unknown');
1076 getSystemInfo: _luci2.rpc.declare({
1082 getBoardInfo: _luci2.rpc.declare({
1088 getDiskInfo: _luci2.rpc.declare({
1089 object: 'luci2.system',
1094 getInfo: function(cb)
1098 this.getSystemInfo();
1099 this.getBoardInfo();
1102 return _luci2.rpc.flush().then(function(info) {
1105 $.extend(rv, info[0]);
1106 $.extend(rv, info[1]);
1107 $.extend(rv, info[2]);
1113 getProcessList: _luci2.rpc.declare({
1114 object: 'luci2.system',
1115 method: 'process_list',
1116 expect: { processes: [ ] },
1117 filter: function(data) {
1118 data.sort(function(a, b) { return a.pid - b.pid });
1123 getSystemLog: _luci2.rpc.declare({
1124 object: 'luci2.system',
1129 getKernelLog: _luci2.rpc.declare({
1130 object: 'luci2.system',
1135 getZoneInfo: function(cb)
1137 return $.getJSON(_luci2.globals.resource + '/zoneinfo.json', cb);
1140 sendSignal: _luci2.rpc.declare({
1141 object: 'luci2.system',
1142 method: 'process_signal',
1143 params: [ 'pid', 'signal' ],
1144 filter: function(data) {
1149 initList: _luci2.rpc.declare({
1150 object: 'luci2.system',
1151 method: 'init_list',
1152 expect: { initscripts: [ ] },
1153 filter: function(data) {
1154 data.sort(function(a, b) { return (a.start || 0) - (b.start || 0) });
1159 initEnabled: function(init, cb)
1161 return this.initList().then(function(list) {
1162 for (var i = 0; i < list.length; i++)
1163 if (list[i].name == init)
1164 return !!list[i].enabled;
1170 initRun: _luci2.rpc.declare({
1171 object: 'luci2.system',
1172 method: 'init_action',
1173 params: [ 'name', 'action' ],
1174 filter: function(data) {
1179 initStart: function(init, cb) { return _luci2.system.initRun(init, 'start', cb) },
1180 initStop: function(init, cb) { return _luci2.system.initRun(init, 'stop', cb) },
1181 initRestart: function(init, cb) { return _luci2.system.initRun(init, 'restart', cb) },
1182 initReload: function(init, cb) { return _luci2.system.initRun(init, 'reload', cb) },
1183 initEnable: function(init, cb) { return _luci2.system.initRun(init, 'enable', cb) },
1184 initDisable: function(init, cb) { return _luci2.system.initRun(init, 'disable', cb) },
1187 getRcLocal: _luci2.rpc.declare({
1188 object: 'luci2.system',
1189 method: 'rclocal_get',
1190 expect: { data: '' }
1193 setRcLocal: _luci2.rpc.declare({
1194 object: 'luci2.system',
1195 method: 'rclocal_set',
1200 getCrontab: _luci2.rpc.declare({
1201 object: 'luci2.system',
1202 method: 'crontab_get',
1203 expect: { data: '' }
1206 setCrontab: _luci2.rpc.declare({
1207 object: 'luci2.system',
1208 method: 'crontab_set',
1213 getSSHKeys: _luci2.rpc.declare({
1214 object: 'luci2.system',
1215 method: 'sshkeys_get',
1216 expect: { keys: [ ] }
1219 setSSHKeys: _luci2.rpc.declare({
1220 object: 'luci2.system',
1221 method: 'sshkeys_set',
1226 setPassword: _luci2.rpc.declare({
1227 object: 'luci2.system',
1228 method: 'password_set',
1229 params: [ 'user', 'password' ]
1233 listLEDs: _luci2.rpc.declare({
1234 object: 'luci2.system',
1236 expect: { leds: [ ] }
1239 listUSBDevices: _luci2.rpc.declare({
1240 object: 'luci2.system',
1242 expect: { devices: [ ] }
1246 testUpgrade: _luci2.rpc.declare({
1247 object: 'luci2.system',
1248 method: 'upgrade_test',
1252 startUpgrade: _luci2.rpc.declare({
1253 object: 'luci2.system',
1254 method: 'upgrade_start',
1258 cleanUpgrade: _luci2.rpc.declare({
1259 object: 'luci2.system',
1260 method: 'upgrade_clean'
1264 restoreBackup: _luci2.rpc.declare({
1265 object: 'luci2.system',
1266 method: 'backup_restore'
1269 cleanBackup: _luci2.rpc.declare({
1270 object: 'luci2.system',
1271 method: 'backup_clean'
1275 getBackupConfig: _luci2.rpc.declare({
1276 object: 'luci2.system',
1277 method: 'backup_config_get',
1278 expect: { config: '' }
1281 setBackupConfig: _luci2.rpc.declare({
1282 object: 'luci2.system',
1283 method: 'backup_config_set',
1288 listBackup: _luci2.rpc.declare({
1289 object: 'luci2.system',
1290 method: 'backup_list',
1291 expect: { files: [ ] }
1295 performReboot: _luci2.rpc.declare({
1296 object: 'luci2.system',
1302 updateLists: _luci2.rpc.declare({
1303 object: 'luci2.opkg',
1308 _allPackages: _luci2.rpc.declare({
1309 object: 'luci2.opkg',
1311 params: [ 'offset', 'limit', 'pattern' ],
1315 _installedPackages: _luci2.rpc.declare({
1316 object: 'luci2.opkg',
1317 method: 'list_installed',
1318 params: [ 'offset', 'limit', 'pattern' ],
1322 _findPackages: _luci2.rpc.declare({
1323 object: 'luci2.opkg',
1325 params: [ 'offset', 'limit', 'pattern' ],
1329 _fetchPackages: function(action, offset, limit, pattern)
1333 return action(offset, limit, pattern).then(function(list) {
1334 if (!list.total || !list.packages)
1335 return { length: 0, total: 0 };
1337 packages.push.apply(packages, list.packages);
1338 packages.total = list.total;
1343 if (packages.length >= limit)
1348 for (var i = offset + packages.length; i < limit; i += 100)
1349 action(i, (Math.min(i + 100, limit) % 100) || 100, pattern);
1351 return _luci2.rpc.flush();
1352 }).then(function(lists) {
1353 for (var i = 0; i < lists.length; i++)
1355 if (!lists[i].total || !lists[i].packages)
1358 packages.push.apply(packages, lists[i].packages);
1359 packages.total = lists[i].total;
1366 listPackages: function(offset, limit, pattern)
1368 return _luci2.opkg._fetchPackages(_luci2.opkg._allPackages, offset, limit, pattern);
1371 installedPackages: function(offset, limit, pattern)
1373 return _luci2.opkg._fetchPackages(_luci2.opkg._installedPackages, offset, limit, pattern);
1376 findPackages: function(offset, limit, pattern)
1378 return _luci2.opkg._fetchPackages(_luci2.opkg._findPackages, offset, limit, pattern);
1381 installPackage: _luci2.rpc.declare({
1382 object: 'luci2.opkg',
1384 params: [ 'package' ],
1388 removePackage: _luci2.rpc.declare({
1389 object: 'luci2.opkg',
1391 params: [ 'package' ],
1395 getConfig: _luci2.rpc.declare({
1396 object: 'luci2.opkg',
1397 method: 'config_get',
1398 expect: { config: '' }
1401 setConfig: _luci2.rpc.declare({
1402 object: 'luci2.opkg',
1403 method: 'config_set',
1410 login: _luci2.rpc.declare({
1413 params: [ 'username', 'password' ],
1417 access: _luci2.rpc.declare({
1420 params: [ 'scope', 'object', 'function' ],
1421 expect: { access: false }
1426 return _luci2.session.access('ubus', 'session', 'access');
1429 startHeartbeat: function()
1431 this._hearbeatInterval = window.setInterval(function() {
1432 _luci2.session.isAlive().then(function(alive) {
1435 _luci2.session.stopHeartbeat();
1436 _luci2.ui.login(true);
1440 }, _luci2.globals.timeout * 2);
1443 stopHeartbeat: function()
1445 if (typeof(this._hearbeatInterval) != 'undefined')
1447 window.clearInterval(this._hearbeatInterval);
1448 delete this._hearbeatInterval;
1455 saveScrollTop: function()
1457 this._scroll_top = $(document).scrollTop();
1460 restoreScrollTop: function()
1462 if (typeof(this._scroll_top) == 'undefined')
1465 $(document).scrollTop(this._scroll_top);
1467 delete this._scroll_top;
1470 loading: function(enable)
1472 var win = $(window);
1473 var body = $('body');
1474 var div = _luci2._modal || (
1475 _luci2._modal = $('<div />')
1476 .addClass('cbi-modal-loader')
1477 .append($('<div />').text(_luci2.tr('Loading data...')))
1483 body.css('overflow', 'hidden');
1484 body.css('padding', 0);
1485 body.css('width', win.width());
1486 body.css('height', win.height());
1487 div.css('width', win.width());
1488 div.css('height', win.height());
1494 body.css('overflow', '');
1495 body.css('padding', '');
1496 body.css('width', '');
1497 body.css('height', '');
1501 dialog: function(title, content, options)
1503 var win = $(window);
1504 var body = $('body');
1505 var div = _luci2._dialog || (
1506 _luci2._dialog = $('<div />')
1507 .addClass('cbi-modal-dialog')
1508 .append($('<div />')
1509 .append($('<div />')
1510 .addClass('cbi-modal-dialog-header'))
1511 .append($('<div />')
1512 .addClass('cbi-modal-dialog-body'))
1513 .append($('<div />')
1514 .addClass('cbi-modal-dialog-footer')
1515 .append($('<button />')
1516 .addClass('cbi-button')
1517 .text(_luci2.tr('Close'))
1520 .css('overflow', '')
1525 $(this).parent().parent().parent().hide();
1530 if (typeof(options) != 'object')
1533 if (title === false)
1536 .css('overflow', '')
1541 _luci2._dialog.hide();
1546 var cnt = div.children().children('div.cbi-modal-dialog-body');
1547 var ftr = div.children().children('div.cbi-modal-dialog-footer');
1551 if (options.style == 'confirm')
1553 ftr.append($('<button />')
1554 .addClass('cbi-button')
1555 .text(_luci2.tr('Ok'))
1556 .click(options.confirm || function() { _luci2.ui.dialog(false) }));
1558 ftr.append($('<button />')
1559 .addClass('cbi-button')
1560 .text(_luci2.tr('Cancel'))
1561 .click(options.cancel || function() { _luci2.ui.dialog(false) }));
1563 else if (options.style == 'close')
1565 ftr.append($('<button />')
1566 .addClass('cbi-button')
1567 .text(_luci2.tr('Close'))
1568 .click(options.close || function() { _luci2.ui.dialog(false) }));
1570 else if (options.style == 'wait')
1572 ftr.append($('<button />')
1573 .addClass('cbi-button')
1574 .text(_luci2.tr('Close'))
1575 .attr('disabled', true));
1578 div.find('div.cbi-modal-dialog-header').text(title);
1582 .css('max-height', Math.floor(win.height() * 0.70) + 'px')
1587 .css('margin-top', -Math.floor(div.children().height() / 2) + 'px');
1589 body.css('overflow', 'hidden');
1590 body.css('padding', 0);
1591 body.css('width', win.width());
1592 body.css('height', win.height());
1593 div.css('width', win.width());
1594 div.css('height', win.height());
1597 upload: function(title, content, options)
1599 var form = _luci2._upload || (
1600 _luci2._upload = $('<form />')
1601 .attr('method', 'post')
1602 .attr('action', '/cgi-bin/luci-upload')
1603 .attr('enctype', 'multipart/form-data')
1604 .attr('target', 'cbi-fileupload-frame')
1606 .append($('<input />')
1607 .attr('type', 'hidden')
1608 .attr('name', 'sessionid')
1609 .attr('value', _luci2.globals.sid))
1610 .append($('<input />')
1611 .attr('type', 'hidden')
1612 .attr('name', 'filename')
1613 .attr('value', options.filename))
1614 .append($('<input />')
1615 .attr('type', 'file')
1616 .attr('name', 'filedata')
1617 .addClass('cbi-input-file'))
1618 .append($('<div />')
1619 .css('width', '100%')
1620 .addClass('progressbar')
1621 .addClass('intermediate')
1622 .append($('<div />')
1623 .css('width', '100%')))
1624 .append($('<iframe />')
1625 .attr('name', 'cbi-fileupload-frame')
1626 .css('width', '1px')
1627 .css('height', '1px')
1628 .css('visibility', 'hidden'))
1631 var finish = _luci2._upload_finish_cb || (
1632 _luci2._upload_finish_cb = function(ev) {
1633 $(this).off('load');
1635 var body = (this.contentDocument || this.contentWindow.document).body;
1636 if (body.firstChild.tagName.toLowerCase() == 'pre')
1637 body = body.firstChild;
1641 json = $.parseJSON(body.innerHTML);
1644 message: _luci2.tr('Invalid server response received'),
1645 error: [ -1, _luci2.tr('Invalid data') ]
1651 L.ui.dialog(L.tr('File upload'), [
1652 $('<p />').text(_luci2.tr('The file upload failed with the server response below:')),
1653 $('<pre />').addClass('alert-message').text(json.message || json.error[1]),
1654 $('<p />').text(_luci2.tr('In case of network problems try uploading the file again.'))
1655 ], { style: 'close' });
1657 else if (typeof(ev.data.cb) == 'function')
1664 var confirm = _luci2._upload_confirm_cb || (
1665 _luci2._upload_confirm_cb = function() {
1666 var d = _luci2._upload;
1667 var f = d.find('.cbi-input-file');
1668 var b = d.find('.progressbar');
1669 var p = d.find('p');
1674 d.find('iframe').on('load', { cb: options.success }, finish);
1679 p.text(_luci2.tr('File upload in progress …'));
1681 _luci2._dialog.find('button').prop('disabled', true);
1685 _luci2._upload.find('.progressbar').hide();
1686 _luci2._upload.find('.cbi-input-file').val('').show();
1687 _luci2._upload.find('p').text(content || _luci2.tr('Select the file to upload and press "%s" to proceed.').format(_luci2.tr('Ok')));
1689 _luci2.ui.dialog(title || _luci2.tr('File upload'), _luci2._upload, {
1695 reconnect: function()
1697 var protocols = (location.protocol == 'https:') ? [ 'http', 'https' ] : [ 'http' ];
1698 var ports = (location.protocol == 'https:') ? [ 80, location.port || 443 ] : [ location.port || 80 ];
1699 var address = location.hostname.match(/^[A-Fa-f0-9]*:[A-Fa-f0-9:]+$/) ? '[' + location.hostname + ']' : location.hostname;
1701 var interval, timeout;
1704 _luci2.tr('Waiting for device'), [
1705 $('<p />').text(_luci2.tr('Please stand by while the device is reconfiguring …')),
1707 .css('width', '100%')
1708 .addClass('progressbar')
1709 .addClass('intermediate')
1710 .append($('<div />')
1711 .css('width', '100%'))
1712 ], { style: 'wait' }
1715 for (var i = 0; i < protocols.length; i++)
1716 images = images.add($('<img />').attr('url', protocols[i] + '://' + address + ':' + ports[i]));
1718 //_luci2.network.getNetworkStatus(function(s) {
1719 // for (var i = 0; i < protocols.length; i++)
1721 // for (var j = 0; j < s.length; j++)
1723 // for (var k = 0; k < s[j]['ipv4-address'].length; k++)
1724 // images = images.add($('<img />').attr('url', protocols[i] + '://' + s[j]['ipv4-address'][k].address + ':' + ports[i]));
1726 // for (var l = 0; l < s[j]['ipv6-address'].length; l++)
1727 // images = images.add($('<img />').attr('url', protocols[i] + '://[' + s[j]['ipv6-address'][l].address + ']:' + ports[i]));
1730 //}).then(function() {
1731 images.on('load', function() {
1732 var url = this.getAttribute('url');
1733 _luci2.session.isAlive().then(function(access) {
1736 window.clearTimeout(timeout);
1737 window.clearInterval(interval);
1738 _luci2.ui.dialog(false);
1743 location.href = url;
1748 interval = window.setInterval(function() {
1749 images.each(function() {
1750 this.setAttribute('src', this.getAttribute('url') + _luci2.globals.resource + '/icons/loading.gif?r=' + Math.random());
1754 timeout = window.setTimeout(function() {
1755 window.clearInterval(interval);
1759 _luci2.tr('Device not responding'),
1760 _luci2.tr('The device was not responding within 180 seconds, you might need to manually reconnect your computer or use SSH to regain access.'),
1767 login: function(invalid)
1769 if (!_luci2._login_deferred || _luci2._login_deferred.state() != 'pending')
1770 _luci2._login_deferred = $.Deferred();
1772 /* try to find sid from hash */
1773 var sid = _luci2.getHash('id');
1774 if (sid && sid.match(/^[a-f0-9]{32}$/))
1776 _luci2.globals.sid = sid;
1777 _luci2.session.isAlive().then(function(access) {
1780 _luci2.session.startHeartbeat();
1781 _luci2._login_deferred.resolve();
1785 _luci2.setHash('id', undefined);
1790 return _luci2._login_deferred;
1793 var form = _luci2._login || (
1794 _luci2._login = $('<div />')
1796 .addClass('alert-message')
1797 .text(_luci2.tr('Wrong username or password given!')))
1799 .append($('<label />')
1800 .text(_luci2.tr('Username'))
1801 .append($('<br />'))
1802 .append($('<input />')
1803 .attr('type', 'text')
1804 .attr('name', 'username')
1805 .attr('value', 'root')
1806 .addClass('cbi-input-text'))))
1808 .append($('<label />')
1809 .text(_luci2.tr('Password'))
1810 .append($('<br />'))
1811 .append($('<input />')
1812 .attr('type', 'password')
1813 .attr('name', 'password')
1814 .addClass('cbi-input-password'))))
1816 .text(_luci2.tr('Enter your username and password above, then click "%s" to proceed.').format(_luci2.tr('Ok'))))
1819 var response_cb = _luci2._login_response_cb || (
1820 _luci2._login_response_cb = function(response) {
1821 if (!response.ubus_rpc_session)
1823 _luci2.ui.login(true);
1827 _luci2.globals.sid = response.ubus_rpc_session;
1828 _luci2.setHash('id', _luci2.globals.sid);
1829 _luci2.session.startHeartbeat();
1830 _luci2.ui.dialog(false);
1831 _luci2._login_deferred.resolve();
1836 var confirm_cb = _luci2._login_confirm_cb || (
1837 _luci2._login_confirm_cb = function() {
1838 var d = _luci2._login;
1839 var u = d.find('[name=username]').val();
1840 var p = d.find('[name=password]').val();
1846 _luci2.tr('Logging in'), [
1847 $('<p />').text(_luci2.tr('Log in in progress …')),
1849 .css('width', '100%')
1850 .addClass('progressbar')
1851 .addClass('intermediate')
1852 .append($('<div />')
1853 .css('width', '100%'))
1854 ], { style: 'wait' }
1857 _luci2.globals.sid = '00000000000000000000000000000000';
1858 _luci2.session.login(u, p).then(response_cb);
1863 form.find('.alert-message').show();
1865 form.find('.alert-message').hide();
1867 _luci2.ui.dialog(_luci2.tr('Authorization Required'), form, {
1872 return _luci2._login_deferred;
1875 cryptPassword: _luci2.rpc.declare({
1879 expect: { crypt: '' }
1883 _acl_merge_scope: function(acl_scope, scope)
1885 if ($.isArray(scope))
1887 for (var i = 0; i < scope.length; i++)
1888 acl_scope[scope[i]] = true;
1890 else if ($.isPlainObject(scope))
1892 for (var object_name in scope)
1894 if (!$.isArray(scope[object_name]))
1897 var acl_object = acl_scope[object_name] || (acl_scope[object_name] = { });
1899 for (var i = 0; i < scope[object_name].length; i++)
1900 acl_object[scope[object_name][i]] = true;
1905 _acl_merge_permission: function(acl_perm, perm)
1907 if ($.isPlainObject(perm))
1909 for (var scope_name in perm)
1911 var acl_scope = acl_perm[scope_name] || (acl_perm[scope_name] = { });
1912 this._acl_merge_scope(acl_scope, perm[scope_name]);
1917 _acl_merge_group: function(acl_group, group)
1919 if ($.isPlainObject(group))
1921 if (!acl_group.description)
1922 acl_group.description = group.description;
1926 var acl_perm = acl_group.read || (acl_group.read = { });
1927 this._acl_merge_permission(acl_perm, group.read);
1932 var acl_perm = acl_group.write || (acl_group.write = { });
1933 this._acl_merge_permission(acl_perm, group.write);
1938 _acl_merge_tree: function(acl_tree, tree)
1940 if ($.isPlainObject(tree))
1942 for (var group_name in tree)
1944 var acl_group = acl_tree[group_name] || (acl_tree[group_name] = { });
1945 this._acl_merge_group(acl_group, tree[group_name]);
1950 listAvailableACLs: _luci2.rpc.declare({
1953 expect: { acls: [ ] },
1954 filter: function(trees) {
1956 for (var i = 0; i < trees.length; i++)
1957 _luci2.ui._acl_merge_tree(acl_tree, trees[i]);
1962 renderMainMenu: _luci2.rpc.declare({
1965 expect: { menu: { } },
1966 filter: function(entries) {
1967 _luci2.globals.mainMenu = new _luci2.ui.menu();
1968 _luci2.globals.mainMenu.entries(entries);
1972 .append(_luci2.globals.mainMenu.render(0, 1));
1976 renderViewMenu: function()
1980 .append(_luci2.globals.mainMenu.render(2, 900));
1983 renderView: function(node)
1985 var name = node.view.split(/\//).join('.');
1987 _luci2.ui.renderViewMenu();
1990 _luci2._views = { };
1992 _luci2.setHash('view', node.view);
1994 if (_luci2._views[name] instanceof _luci2.ui.view)
1995 return _luci2._views[name].render();
1997 var url = _luci2.globals.resource + '/view/' + name + '.js';
1999 return $.ajax(url, {
2003 }).then(function(data) {
2005 var viewConstructorSource = (
2006 '(function(L, $) {\n' +
2008 '})(_luci2, $);\n\n' +
2010 ).format(data, url);
2012 var viewConstructor = eval(viewConstructorSource);
2014 _luci2._views[name] = new viewConstructor({
2016 acls: node.write || { }
2019 return _luci2._views[name].render();
2022 alert('Unable to instantiate view "%s": %s'.format(url, e));
2025 return $.Deferred().resolve();
2029 updateHostname: function()
2031 return _luci2.system.getBoardInfo().then(function(info) {
2033 $('#hostname').text(info.hostname);
2039 _luci2.ui.loading(true);
2042 _luci2.ui.updateHostname(),
2043 _luci2.ui.renderMainMenu()
2045 _luci2.ui.renderView(_luci2.globals.defaultNode).then(function() {
2046 _luci2.ui.loading(false);
2052 var AbstractWidget = Class.extend({
2053 i18n: function(text) {
2057 toString: function() {
2058 var x = document.createElement('div');
2059 x.appendChild(this.render());
2064 insertInto: function(id) {
2065 return $(id).empty().append(this.render());
2069 this.ui.view = AbstractWidget.extend({
2070 _fetch_template: function()
2072 return $.ajax(_luci2.globals.resource + '/template/' + this.options.name + '.htm', {
2076 success: function(data) {
2077 data = data.replace(/<%([#:=])?(.+?)%>/g, function(match, p1, p2) {
2078 p2 = p2.replace(/^\s+/, '').replace(/\s+$/, '');
2085 return _luci2.tr(p2);
2088 return _luci2.globals[p2] || '';
2091 return '(?' + match + ')';
2095 $('#maincontent').append(data);
2102 throw "Not implemented";
2107 var container = $('#maincontent');
2112 container.append($('<h2 />').append(this.title));
2114 if (this.description)
2115 container.append($('<div />').addClass('cbi-map-descr').append(this.description));
2118 return this._fetch_template().then(function() {
2119 return _luci2.deferrable(self.execute());
2124 this.ui.menu = AbstractWidget.extend({
2129 entries: function(entries)
2131 for (var entry in entries)
2133 var path = entry.split(/\//);
2134 var node = this._nodes;
2136 for (i = 0; i < path.length; i++)
2141 if (!node.childs[path[i]])
2142 node.childs[path[i]] = { };
2144 node = node.childs[path[i]];
2147 $.extend(node, entries[entry]);
2151 _indexcmp: function(a, b)
2153 var x = a.index || 0;
2154 var y = b.index || 0;
2158 firstChildView: function(node)
2164 for (var child in (node.childs || { }))
2165 nodes.push(node.childs[child]);
2167 nodes.sort(this._indexcmp);
2169 for (var i = 0; i < nodes.length; i++)
2171 var child = this.firstChildView(nodes[i]);
2174 $.extend(node, child);
2182 _onclick: function(ev)
2184 _luci2.ui.loading(true);
2185 _luci2.ui.renderView(ev.data).then(function() {
2186 _luci2.ui.loading(false);
2189 ev.preventDefault();
2193 _render: function(childs, level, min, max)
2196 for (var node in childs)
2198 var child = this.firstChildView(childs[node]);
2200 nodes.push(childs[node]);
2203 nodes.sort(this._indexcmp);
2205 var list = $('<ul />');
2208 list.addClass('nav');
2209 else if (level == 1)
2210 list.addClass('dropdown-menu');
2212 for (var i = 0; i < nodes.length; i++)
2214 if (!_luci2.globals.defaultNode)
2216 var v = _luci2.getHash('view');
2217 if (!v || v == nodes[i].view)
2218 _luci2.globals.defaultNode = nodes[i];
2221 var item = $('<li />')
2224 .text(_luci2.tr(nodes[i].title))
2225 .click(nodes[i], this._onclick))
2228 if (nodes[i].childs && level < max)
2230 item.addClass('dropdown');
2231 item.find('a').addClass('menu');
2232 item.append(this._render(nodes[i].childs, level + 1));
2239 render: function(min, max)
2241 var top = min ? this.getNode(_luci2.globals.defaultNode.view, min) : this._nodes;
2242 return this._render(top.childs, 0, min, max);
2245 getNode: function(path, max)
2247 var p = path.split(/\//);
2248 var n = this._nodes;
2250 if (typeof(max) == 'undefined')
2253 for (var i = 0; i < max; i++)
2255 if (!n.childs[p[i]])
2265 this.ui.table = AbstractWidget.extend({
2271 row: function(values)
2273 if ($.isArray(values))
2275 this._rows.push(values);
2277 else if ($.isPlainObject(values))
2280 for (var i = 0; i < this.options.columns.length; i++)
2282 var col = this.options.columns[i];
2284 if (typeof col.key == 'string')
2285 v.push(values[col.key]);
2293 rows: function(rows)
2295 for (var i = 0; i < rows.length; i++)
2299 render: function(id)
2301 var fieldset = document.createElement('fieldset');
2302 fieldset.className = 'cbi-section';
2304 if (this.options.caption)
2306 var legend = document.createElement('legend');
2307 $(legend).append(this.options.caption);
2308 fieldset.appendChild(legend);
2311 var table = document.createElement('table');
2312 table.className = 'cbi-section-table';
2314 var has_caption = false;
2315 var has_description = false;
2317 for (var i = 0; i < this.options.columns.length; i++)
2318 if (this.options.columns[i].caption)
2323 else if (this.options.columns[i].description)
2325 has_description = true;
2331 var tr = table.insertRow(-1);
2332 tr.className = 'cbi-section-table-titles';
2334 for (var i = 0; i < this.options.columns.length; i++)
2336 var col = this.options.columns[i];
2337 var th = document.createElement('th');
2338 th.className = 'cbi-section-table-cell';
2343 th.style.width = col.width;
2346 th.style.textAlign = col.align;
2349 $(th).append(col.caption);
2353 if (has_description)
2355 var tr = table.insertRow(-1);
2356 tr.className = 'cbi-section-table-descr';
2358 for (var i = 0; i < this.options.columns.length; i++)
2360 var col = this.options.columns[i];
2361 var th = document.createElement('th');
2362 th.className = 'cbi-section-table-cell';
2367 th.style.width = col.width;
2370 th.style.textAlign = col.align;
2372 if (col.description)
2373 $(th).append(col.description);
2377 if (this._rows.length == 0)
2379 if (this.options.placeholder)
2381 var tr = table.insertRow(-1);
2382 var td = tr.insertCell(-1);
2383 td.className = 'cbi-section-table-cell';
2385 td.colSpan = this.options.columns.length;
2386 $(td).append(this.options.placeholder);
2391 for (var i = 0; i < this._rows.length; i++)
2393 var tr = table.insertRow(-1);
2395 for (var j = 0; j < this.options.columns.length; j++)
2397 var col = this.options.columns[j];
2398 var td = tr.insertCell(-1);
2400 var val = this._rows[i][j];
2402 if (typeof(val) == 'undefined')
2403 val = col.placeholder;
2405 if (typeof(val) == 'undefined')
2409 td.style.width = col.width;
2412 td.style.textAlign = col.align;
2414 if (typeof col.format == 'string')
2415 $(td).append(col.format.format(val));
2416 else if (typeof col.format == 'function')
2417 $(td).append(col.format(val, i));
2425 fieldset.appendChild(table);
2431 this.ui.progress = AbstractWidget.extend({
2434 var vn = parseInt(this.options.value) || 0;
2435 var mn = parseInt(this.options.max) || 100;
2436 var pc = Math.floor((100 / mn) * vn);
2438 var bar = document.createElement('div');
2439 bar.className = 'progressbar';
2441 bar.appendChild(document.createElement('div'));
2442 bar.lastChild.appendChild(document.createElement('div'));
2443 bar.lastChild.style.width = pc + '%';
2445 if (typeof(this.options.format) == 'string')
2446 $(bar.lastChild.lastChild).append(this.options.format.format(this.options.value, this.options.max, pc));
2447 else if (typeof(this.options.format) == 'function')
2448 $(bar.lastChild.lastChild).append(this.options.format(pc));
2450 $(bar.lastChild.lastChild).append('%.2f%%'.format(pc));
2456 this.ui.devicebadge = AbstractWidget.extend({
2459 var dev = this.options.l3_device || this.options.device || '?';
2461 var span = document.createElement('span');
2462 span.className = 'ifacebadge';
2464 if (typeof(this.options.signal) == 'number' ||
2465 typeof(this.options.noise) == 'number')
2468 if (typeof(this.options.signal) != 'undefined' &&
2469 typeof(this.options.noise) != 'undefined')
2471 var q = (-1 * (this.options.noise - this.options.signal)) / 5;
2484 span.appendChild(document.createElement('img'));
2485 span.lastChild.src = _luci2.globals.resource + '/icons/signal-' + r + '.png';
2488 span.title = _luci2.tr('No signal');
2490 span.title = '%s: %d %s / %s: %d %s'.format(
2491 _luci2.tr('Signal'), this.options.signal, _luci2.tr('dBm'),
2492 _luci2.tr('Noise'), this.options.noise, _luci2.tr('dBm')
2497 var type = 'ethernet';
2498 var desc = _luci2.tr('Ethernet device');
2500 if (this.options.l3_device != this.options.device)
2503 desc = _luci2.tr('Tunnel interface');
2505 else if (dev.indexOf('br-') == 0)
2508 desc = _luci2.tr('Bridge');
2510 else if (dev.indexOf('.') > 0)
2513 desc = _luci2.tr('VLAN interface');
2515 else if (dev.indexOf('wlan') == 0 ||
2516 dev.indexOf('ath') == 0 ||
2517 dev.indexOf('wl') == 0)
2520 desc = _luci2.tr('Wireless Network');
2523 span.appendChild(document.createElement('img'));
2524 span.lastChild.src = _luci2.globals.resource + '/icons/' + type + (this.options.up ? '' : '_disabled') + '.png';
2528 $(span).append(' ');
2529 $(span).append(dev);
2535 var type = function(f, l)
2545 _luci2.cbi.validation.message = _luci2.tr(msg);
2548 compile: function(code)
2553 var types = _luci2.cbi.validation.types;
2558 for (var i = 0; i < code.length; i++)
2566 switch (code.charCodeAt(i))
2578 var label = code.substring(pos, i);
2579 label = label.replace(/\\(.)/g, '$1');
2580 label = label.replace(/^[ \t]+/g, '');
2581 label = label.replace(/[ \t]+$/g, '');
2583 if (label && !isNaN(label))
2585 stack.push(parseFloat(label));
2587 else if (label.match(/^(['"]).*\1$/))
2589 stack.push(label.replace(/^(['"])(.*)\1$/, '$2'));
2591 else if (typeof types[label] == 'function')
2593 stack.push(types[label]);
2598 throw "Syntax error, unhandled token '"+label+"'";
2603 depth += (code.charCodeAt(i) == 40);
2609 if (typeof stack[stack.length-2] != 'function')
2610 throw "Syntax error, argument list follows non-function";
2612 stack[stack.length-1] =
2613 arguments.callee(code.substring(pos, i));
2626 var validation = this.cbi.validation;
2628 validation.types = {
2629 'integer': function()
2631 if (this.match(/^-?[0-9]+$/) != null)
2634 validation.i18n('Must be a valid integer');
2638 'uinteger': function()
2640 if (validation.types['integer'].apply(this) && (this >= 0))
2643 validation.i18n('Must be a positive integer');
2649 if (!isNaN(parseFloat(this)))
2652 validation.i18n('Must be a valid number');
2656 'ufloat': function()
2658 if (validation.types['float'].apply(this) && (this >= 0))
2661 validation.i18n('Must be a positive number');
2665 'ipaddr': function()
2667 if (validation.types['ip4addr'].apply(this) ||
2668 validation.types['ip6addr'].apply(this))
2671 validation.i18n('Must be a valid IP address');
2675 'ip4addr': function()
2677 if (this.match(/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})(\/(\S+))?$/))
2679 if ((RegExp.$1 >= 0) && (RegExp.$1 <= 255) &&
2680 (RegExp.$2 >= 0) && (RegExp.$2 <= 255) &&
2681 (RegExp.$3 >= 0) && (RegExp.$3 <= 255) &&
2682 (RegExp.$4 >= 0) && (RegExp.$4 <= 255) &&
2683 ((RegExp.$6.indexOf('.') < 0)
2684 ? ((RegExp.$6 >= 0) && (RegExp.$6 <= 32))
2685 : (validation.types['ip4addr'].apply(RegExp.$6))))
2689 validation.i18n('Must be a valid IPv4 address');
2693 'ip6addr': function()
2695 if (this.match(/^([a-fA-F0-9:.]+)(\/(\d+))?$/))
2697 if (!RegExp.$2 || ((RegExp.$3 >= 0) && (RegExp.$3 <= 128)))
2699 var addr = RegExp.$1;
2706 if (addr.indexOf('.') > 0)
2708 var off = addr.lastIndexOf(':');
2710 if (!(off && validation.types['ip4addr'].apply(addr.substr(off+1))))
2712 validation.i18n('Must be a valid IPv6 address');
2716 addr = addr.substr(0, off) + ':0:0';
2719 if (addr.indexOf('::') >= 0)
2724 for (var i = 1; i < (addr.length-1); i++)
2725 if (addr.charAt(i) == ':')
2730 validation.i18n('Must be a valid IPv6 address');
2734 for (var i = 0; i < (7 - colons); i++)
2737 if (addr.match(/^(.*?)::(.*?)$/))
2738 addr = (RegExp.$1 ? RegExp.$1 + ':' : '') + fill +
2739 (RegExp.$2 ? ':' + RegExp.$2 : '');
2742 if (addr.match(/^(?:[a-fA-F0-9]{1,4}:){7}[a-fA-F0-9]{1,4}$/) != null)
2745 validation.i18n('Must be a valid IPv6 address');
2755 if (validation.types['integer'].apply(this) &&
2756 (this >= 0) && (this <= 65535))
2759 validation.i18n('Must be a valid port number');
2763 'portrange': function()
2765 if (this.match(/^(\d+)-(\d+)$/))
2770 if (validation.types['port'].apply(p1) &&
2771 validation.types['port'].apply(p2) &&
2772 (parseInt(p1) <= parseInt(p2)))
2775 else if (validation.types['port'].apply(this))
2780 validation.i18n('Must be a valid port range');
2784 'macaddr': function()
2786 if (this.match(/^([a-fA-F0-9]{2}:){5}[a-fA-F0-9]{2}$/) != null)
2789 validation.i18n('Must be a valid MAC address');
2795 if (validation.types['hostname'].apply(this) ||
2796 validation.types['ipaddr'].apply(this))
2799 validation.i18n('Must be a valid hostname or IP address');
2803 'hostname': function()
2805 if ((this.length <= 253) &&
2806 ((this.match(/^[a-zA-Z0-9]+$/) != null ||
2807 (this.match(/^[a-zA-Z0-9_][a-zA-Z0-9_\-.]*[a-zA-Z0-9]$/) &&
2808 this.match(/[^0-9.]/)))))
2811 validation.i18n('Must be a valid host name');
2815 'network': function()
2817 if (validation.types['uciname'].apply(this) ||
2818 validation.types['host'].apply(this))
2821 validation.i18n('Must be a valid network name');
2825 'wpakey': function()
2829 if ((v.length == 64)
2830 ? (v.match(/^[a-fA-F0-9]{64}$/) != null)
2831 : ((v.length >= 8) && (v.length <= 63)))
2834 validation.i18n('Must be a valid WPA key');
2838 'wepkey': function()
2842 if (v.substr(0,2) == 's:')
2845 if (((v.length == 10) || (v.length == 26))
2846 ? (v.match(/^[a-fA-F0-9]{10,26}$/) != null)
2847 : ((v.length == 5) || (v.length == 13)))
2850 validation.i18n('Must be a valid WEP key');
2854 'uciname': function()
2856 if (this.match(/^[a-zA-Z0-9_]+$/) != null)
2859 validation.i18n('Must be a valid UCI identifier');
2863 'range': function(min, max)
2865 var val = parseFloat(this);
2867 if (validation.types['integer'].apply(this) &&
2868 !isNaN(min) && !isNaN(max) && ((val >= min) && (val <= max)))
2871 validation.i18n('Must be a number between %d and %d');
2875 'min': function(min)
2877 var val = parseFloat(this);
2879 if (validation.types['integer'].apply(this) &&
2880 !isNaN(min) && !isNaN(val) && (val >= min))
2883 validation.i18n('Must be a number greater or equal to %d');
2887 'max': function(max)
2889 var val = parseFloat(this);
2891 if (validation.types['integer'].apply(this) &&
2892 !isNaN(max) && !isNaN(val) && (val <= max))
2895 validation.i18n('Must be a number lower or equal to %d');
2899 'rangelength': function(min, max)
2901 var val = '' + this;
2903 if (!isNaN(min) && !isNaN(max) &&
2904 (val.length >= min) && (val.length <= max))
2907 validation.i18n('Must be between %d and %d characters');
2911 'minlength': function(min)
2913 var val = '' + this;
2915 if (!isNaN(min) && (val.length >= min))
2918 validation.i18n('Must be at least %d characters');
2922 'maxlength': function(max)
2924 var val = '' + this;
2926 if (!isNaN(max) && (val.length <= max))
2929 validation.i18n('Must be at most %d characters');
2937 for (var i = 0; i < arguments.length; i += 2)
2939 delete validation.message;
2941 if (typeof(arguments[i]) != 'function')
2943 if (arguments[i] == this)
2947 else if (arguments[i].apply(this, arguments[i+1]))