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 configs: _luci2.rpc.declare({
590 expect: { configs: [ ] }
593 _changes: _luci2.rpc.declare({
596 params: [ 'config' ],
597 expect: { changes: [ ] }
600 changes: function(config)
602 if (typeof(config) == 'string')
603 return this._changes(config);
606 return this.configs().then(function(configs) {
608 configlist = configs;
610 for (var i = 0; i < configs.length; i++)
611 _luci2.uci._changes(configs[i]);
613 return _luci2.rpc.flush();
614 }).then(function(changes) {
617 for (var i = 0; i < configlist.length; i++)
618 if (changes[i].length)
619 rv[configlist[i]] = changes[i];
625 commit: _luci2.rpc.declare({
631 _delete_one: _luci2.rpc.declare({
634 params: [ 'config', 'section', 'option' ]
637 _delete_multiple: _luci2.rpc.declare({
640 params: [ 'config', 'section', 'options' ]
643 'delete': function(config, section, option)
645 if ($.isArray(option))
646 return this._delete_multiple(config, section, option);
648 return this._delete_one(config, section, option);
651 delete_all: _luci2.rpc.declare({
654 params: [ 'config', 'type', 'match' ]
657 _foreach: _luci2.rpc.declare({
660 params: [ 'config', 'type' ],
661 expect: { values: { } }
664 foreach: function(config, type, cb)
666 return this._foreach(config, type).then(function(sections) {
667 for (var s in sections)
672 get: _luci2.rpc.declare({
675 params: [ 'config', 'section', 'option' ],
677 filter: function(data, params) {
678 if (typeof(params.option) == 'undefined')
679 return data.values ? data.values['.type'] : undefined;
685 get_all: _luci2.rpc.declare({
688 params: [ 'config', 'section' ],
689 expect: { values: { } },
690 filter: function(data, params) {
691 if (typeof(params.section) == 'string')
692 data['.section'] = params.section;
693 else if (typeof(params.config) == 'string')
694 data['.package'] = params.config;
699 get_first: function(config, type, option)
701 return this._foreach(config, type).then(function(sections) {
702 for (var s in sections)
704 var val = (typeof(option) == 'string') ? sections[s][option] : sections[s]['.name'];
706 if (typeof(val) != 'undefined')
714 section: _luci2.rpc.declare({
717 params: [ 'config', 'type', 'name', 'values' ],
718 expect: { section: '' }
721 _set: _luci2.rpc.declare({
724 params: [ 'config', 'section', 'values' ]
727 set: function(config, section, option, value)
729 if (typeof(value) == 'undefined' && typeof(option) == 'string')
730 return this.section(config, section, option); /* option -> type */
731 else if ($.isPlainObject(option))
732 return this._set(config, section, option); /* option -> values */
735 values[option] = value;
737 return this._set(config, section, values);
740 order: _luci2.rpc.declare({
743 params: [ 'config', 'sections' ]
748 listNetworkNames: function() {
749 return _luci2.rpc.list('network.interface.*').then(function(list) {
751 for (var name in list)
752 if (name != 'network.interface.loopback')
753 names.push(name.substring(18));
759 listDeviceNames: _luci2.rpc.declare({
760 object: 'network.device',
763 filter: function(data) {
765 for (var name in data)
773 getNetworkStatus: function()
778 return this.listNetworkNames().then(function(names) {
781 for (var i = 0; i < names.length; i++)
782 _luci2.network.getInterfaceStatus(names[i]);
784 return _luci2.rpc.flush();
785 }).then(function(networks) {
786 for (var i = 0; i < networks.length; i++)
788 var net = nets[i] = networks[i];
789 var dev = net.l3_device || net.l2_device;
791 net.device = devs[dev] || (devs[dev] = { });
796 for (var dev in devs)
797 _luci2.network.getDeviceStatus(dev);
799 return _luci2.rpc.flush();
800 }).then(function(devices) {
803 for (var i = 0; i < devices.length; i++)
805 var brm = devices[i]['bridge-members'];
806 delete devices[i]['bridge-members'];
808 $.extend(devs[devices[i]['device']], devices[i]);
813 devs[devices[i]['device']].subdevices = [ ];
815 for (var j = 0; j < brm.length; j++)
820 _luci2.network.getDeviceStatus(brm[j]);
823 devs[devices[i]['device']].subdevices[j] = devs[brm[j]];
827 return _luci2.rpc.flush();
828 }).then(function(subdevices) {
829 for (var i = 0; i < subdevices.length; i++)
830 $.extend(devs[subdevices[i]['device']], subdevices[i]);
834 for (var dev in devs)
835 _luci2.wireless.getDeviceStatus(dev);
837 return _luci2.rpc.flush();
838 }).then(function(wifidevices) {
839 for (var i = 0; i < wifidevices.length; i++)
841 devs[wifidevices[i]['device']].wireless = wifidevices[i];
843 nets.sort(function(a, b) {
844 if (a['interface'] < b['interface'])
846 else if (a['interface'] > b['interface'])
856 findWanInterfaces: function(cb)
858 return this.listNetworkNames().then(function(names) {
861 for (var i = 0; i < names.length; i++)
862 _luci2.network.getInterfaceStatus(names[i]);
864 return _luci2.rpc.flush();
865 }).then(function(interfaces) {
866 var rv = [ undefined, undefined ];
868 for (var i = 0; i < interfaces.length; i++)
870 if (!interfaces[i].route)
873 for (var j = 0; j < interfaces[i].route.length; j++)
875 var rt = interfaces[i].route[j];
877 if (typeof(rt.table) != 'undefined')
880 if (rt.target == '0.0.0.0' && rt.mask == 0)
881 rv[0] = interfaces[i];
882 else if (rt.target == '::' && rt.mask == 0)
883 rv[1] = interfaces[i];
891 getDHCPLeases: _luci2.rpc.declare({
892 object: 'luci2.network',
893 method: 'dhcp_leases',
894 expect: { leases: [ ] }
897 getDHCPv6Leases: _luci2.rpc.declare({
898 object: 'luci2.network',
899 method: 'dhcp6_leases',
900 expect: { leases: [ ] }
903 getRoutes: _luci2.rpc.declare({
904 object: 'luci2.network',
906 expect: { routes: [ ] }
909 getIPv6Routes: _luci2.rpc.declare({
910 object: 'luci2.network',
912 expect: { routes: [ ] }
915 getARPTable: _luci2.rpc.declare({
916 object: 'luci2.network',
918 expect: { entries: [ ] }
921 getInterfaceStatus: _luci2.rpc.declare({
922 object: 'network.interface',
924 params: [ 'interface' ],
926 filter: function(data, params) {
927 data['interface'] = params['interface'];
928 data['l2_device'] = data['device'];
929 delete data['device'];
934 getDeviceStatus: _luci2.rpc.declare({
935 object: 'network.device',
939 filter: function(data, params) {
940 data['device'] = params['name'];
945 getConntrackCount: _luci2.rpc.declare({
946 object: 'luci2.network',
947 method: 'conntrack_count',
948 expect: { '': { count: 0, limit: 0 } }
951 listSwitchNames: _luci2.rpc.declare({
952 object: 'luci2.network',
953 method: 'switch_list',
954 expect: { switches: [ ] }
957 getSwitchInfo: _luci2.rpc.declare({
958 object: 'luci2.network',
959 method: 'switch_info',
960 params: [ 'switch' ],
961 expect: { info: { } },
962 filter: function(data, params) {
963 data['attrs'] = data['switch'];
964 data['vlan_attrs'] = data['vlan'];
965 data['port_attrs'] = data['port'];
966 data['switch'] = params['switch'];
975 getSwitchStatus: _luci2.rpc.declare({
976 object: 'luci2.network',
977 method: 'switch_status',
978 params: [ 'switch' ],
979 expect: { ports: [ ] }
983 runPing: _luci2.rpc.declare({
984 object: 'luci2.network',
987 expect: { '': { code: -1 } }
990 runPing6: _luci2.rpc.declare({
991 object: 'luci2.network',
994 expect: { '': { code: -1 } }
997 runTraceroute: _luci2.rpc.declare({
998 object: 'luci2.network',
999 method: 'traceroute',
1001 expect: { '': { code: -1 } }
1004 runTraceroute6: _luci2.rpc.declare({
1005 object: 'luci2.network',
1006 method: 'traceroute6',
1008 expect: { '': { code: -1 } }
1011 runNslookup: _luci2.rpc.declare({
1012 object: 'luci2.network',
1015 expect: { '': { code: -1 } }
1020 listDeviceNames: _luci2.rpc.declare({
1023 expect: { 'devices': [ ] },
1024 filter: function(data) {
1030 getDeviceStatus: _luci2.rpc.declare({
1033 params: [ 'device' ],
1034 expect: { '': { } },
1035 filter: function(data, params) {
1036 if (!$.isEmptyObject(data))
1038 data['device'] = params['device'];
1045 getAssocList: _luci2.rpc.declare({
1047 method: 'assoclist',
1048 params: [ 'device' ],
1049 expect: { results: [ ] },
1050 filter: function(data, params) {
1051 for (var i = 0; i < data.length; i++)
1052 data[i]['device'] = params['device'];
1054 data.sort(function(a, b) {
1055 if (a.bssid < b.bssid)
1057 else if (a.bssid > b.bssid)
1067 getWirelessStatus: function() {
1068 return this.listDeviceNames().then(function(names) {
1071 for (var i = 0; i < names.length; i++)
1072 _luci2.wireless.getDeviceStatus(names[i]);
1074 return _luci2.rpc.flush();
1075 }).then(function(networks) {
1079 'country', 'channel', 'frequency', 'frequency_offset',
1080 'txpower', 'txpower_offset', 'hwmodes', 'hardware', 'phy'
1084 'ssid', 'bssid', 'mode', 'quality', 'quality_max',
1085 'signal', 'noise', 'bitrate', 'encryption'
1088 for (var i = 0; i < networks.length; i++)
1090 var phy = rv[networks[i].phy] || (
1091 rv[networks[i].phy] = { networks: [ ] }
1095 device: networks[i].device
1098 for (var j = 0; j < phy_attrs.length; j++)
1099 phy[phy_attrs[j]] = networks[i][phy_attrs[j]];
1101 for (var j = 0; j < net_attrs.length; j++)
1102 net[net_attrs[j]] = networks[i][net_attrs[j]];
1104 phy.networks.push(net);
1111 getAssocLists: function()
1113 return this.listDeviceNames().then(function(names) {
1116 for (var i = 0; i < names.length; i++)
1117 _luci2.wireless.getAssocList(names[i]);
1119 return _luci2.rpc.flush();
1120 }).then(function(assoclists) {
1123 for (var i = 0; i < assoclists.length; i++)
1124 for (var j = 0; j < assoclists[i].length; j++)
1125 rv.push(assoclists[i][j]);
1131 formatEncryption: function(enc)
1133 var format_list = function(l, s)
1136 for (var i = 0; i < l.length; i++)
1137 rv.push(l[i].toUpperCase());
1138 return rv.join(s ? s : ', ');
1141 if (!enc || !enc.enabled)
1142 return _luci2.tr('None');
1146 if (enc.wep.length == 2)
1147 return _luci2.tr('WEP Open/Shared') + ' (%s)'.format(format_list(enc.ciphers, ', '));
1148 else if (enc.wep[0] == 'shared')
1149 return _luci2.tr('WEP Shared Auth') + ' (%s)'.format(format_list(enc.ciphers, ', '));
1151 return _luci2.tr('WEP Open System') + ' (%s)'.format(format_list(enc.ciphers, ', '));
1155 if (enc.wpa.length == 2)
1156 return _luci2.tr('mixed WPA/WPA2') + ' %s (%s)'.format(
1157 format_list(enc.authentication, '/'),
1158 format_list(enc.ciphers, ', ')
1160 else if (enc.wpa[0] == 2)
1161 return 'WPA2 %s (%s)'.format(
1162 format_list(enc.authentication, '/'),
1163 format_list(enc.ciphers, ', ')
1166 return 'WPA %s (%s)'.format(
1167 format_list(enc.authentication, '/'),
1168 format_list(enc.ciphers, ', ')
1172 return _luci2.tr('Unknown');
1177 getSystemInfo: _luci2.rpc.declare({
1183 getBoardInfo: _luci2.rpc.declare({
1189 getDiskInfo: _luci2.rpc.declare({
1190 object: 'luci2.system',
1195 getInfo: function(cb)
1199 this.getSystemInfo();
1200 this.getBoardInfo();
1203 return _luci2.rpc.flush().then(function(info) {
1206 $.extend(rv, info[0]);
1207 $.extend(rv, info[1]);
1208 $.extend(rv, info[2]);
1214 getProcessList: _luci2.rpc.declare({
1215 object: 'luci2.system',
1216 method: 'process_list',
1217 expect: { processes: [ ] },
1218 filter: function(data) {
1219 data.sort(function(a, b) { return a.pid - b.pid });
1224 getSystemLog: _luci2.rpc.declare({
1225 object: 'luci2.system',
1230 getKernelLog: _luci2.rpc.declare({
1231 object: 'luci2.system',
1236 getZoneInfo: function(cb)
1238 return $.getJSON(_luci2.globals.resource + '/zoneinfo.json', cb);
1241 sendSignal: _luci2.rpc.declare({
1242 object: 'luci2.system',
1243 method: 'process_signal',
1244 params: [ 'pid', 'signal' ],
1245 filter: function(data) {
1250 initList: _luci2.rpc.declare({
1251 object: 'luci2.system',
1252 method: 'init_list',
1253 expect: { initscripts: [ ] },
1254 filter: function(data) {
1255 data.sort(function(a, b) { return (a.start || 0) - (b.start || 0) });
1260 initEnabled: function(init, cb)
1262 return this.initList().then(function(list) {
1263 for (var i = 0; i < list.length; i++)
1264 if (list[i].name == init)
1265 return !!list[i].enabled;
1271 initRun: _luci2.rpc.declare({
1272 object: 'luci2.system',
1273 method: 'init_action',
1274 params: [ 'name', 'action' ],
1275 filter: function(data) {
1280 initStart: function(init, cb) { return _luci2.system.initRun(init, 'start', cb) },
1281 initStop: function(init, cb) { return _luci2.system.initRun(init, 'stop', cb) },
1282 initRestart: function(init, cb) { return _luci2.system.initRun(init, 'restart', cb) },
1283 initReload: function(init, cb) { return _luci2.system.initRun(init, 'reload', cb) },
1284 initEnable: function(init, cb) { return _luci2.system.initRun(init, 'enable', cb) },
1285 initDisable: function(init, cb) { return _luci2.system.initRun(init, 'disable', cb) },
1288 getRcLocal: _luci2.rpc.declare({
1289 object: 'luci2.system',
1290 method: 'rclocal_get',
1291 expect: { data: '' }
1294 setRcLocal: _luci2.rpc.declare({
1295 object: 'luci2.system',
1296 method: 'rclocal_set',
1301 getCrontab: _luci2.rpc.declare({
1302 object: 'luci2.system',
1303 method: 'crontab_get',
1304 expect: { data: '' }
1307 setCrontab: _luci2.rpc.declare({
1308 object: 'luci2.system',
1309 method: 'crontab_set',
1314 getSSHKeys: _luci2.rpc.declare({
1315 object: 'luci2.system',
1316 method: 'sshkeys_get',
1317 expect: { keys: [ ] }
1320 setSSHKeys: _luci2.rpc.declare({
1321 object: 'luci2.system',
1322 method: 'sshkeys_set',
1327 setPassword: _luci2.rpc.declare({
1328 object: 'luci2.system',
1329 method: 'password_set',
1330 params: [ 'user', 'password' ]
1334 listLEDs: _luci2.rpc.declare({
1335 object: 'luci2.system',
1337 expect: { leds: [ ] }
1340 listUSBDevices: _luci2.rpc.declare({
1341 object: 'luci2.system',
1343 expect: { devices: [ ] }
1347 testUpgrade: _luci2.rpc.declare({
1348 object: 'luci2.system',
1349 method: 'upgrade_test',
1353 startUpgrade: _luci2.rpc.declare({
1354 object: 'luci2.system',
1355 method: 'upgrade_start',
1359 cleanUpgrade: _luci2.rpc.declare({
1360 object: 'luci2.system',
1361 method: 'upgrade_clean'
1365 restoreBackup: _luci2.rpc.declare({
1366 object: 'luci2.system',
1367 method: 'backup_restore'
1370 cleanBackup: _luci2.rpc.declare({
1371 object: 'luci2.system',
1372 method: 'backup_clean'
1376 getBackupConfig: _luci2.rpc.declare({
1377 object: 'luci2.system',
1378 method: 'backup_config_get',
1379 expect: { config: '' }
1382 setBackupConfig: _luci2.rpc.declare({
1383 object: 'luci2.system',
1384 method: 'backup_config_set',
1389 listBackup: _luci2.rpc.declare({
1390 object: 'luci2.system',
1391 method: 'backup_list',
1392 expect: { files: [ ] }
1396 testReset: _luci2.rpc.declare({
1397 object: 'luci2.system',
1398 method: 'reset_test',
1399 expect: { supported: false }
1402 startReset: _luci2.rpc.declare({
1403 object: 'luci2.system',
1404 method: 'reset_start'
1408 performReboot: _luci2.rpc.declare({
1409 object: 'luci2.system',
1415 updateLists: _luci2.rpc.declare({
1416 object: 'luci2.opkg',
1421 _allPackages: _luci2.rpc.declare({
1422 object: 'luci2.opkg',
1424 params: [ 'offset', 'limit', 'pattern' ],
1428 _installedPackages: _luci2.rpc.declare({
1429 object: 'luci2.opkg',
1430 method: 'list_installed',
1431 params: [ 'offset', 'limit', 'pattern' ],
1435 _findPackages: _luci2.rpc.declare({
1436 object: 'luci2.opkg',
1438 params: [ 'offset', 'limit', 'pattern' ],
1442 _fetchPackages: function(action, offset, limit, pattern)
1446 return action(offset, limit, pattern).then(function(list) {
1447 if (!list.total || !list.packages)
1448 return { length: 0, total: 0 };
1450 packages.push.apply(packages, list.packages);
1451 packages.total = list.total;
1456 if (packages.length >= limit)
1461 for (var i = offset + packages.length; i < limit; i += 100)
1462 action(i, (Math.min(i + 100, limit) % 100) || 100, pattern);
1464 return _luci2.rpc.flush();
1465 }).then(function(lists) {
1466 for (var i = 0; i < lists.length; i++)
1468 if (!lists[i].total || !lists[i].packages)
1471 packages.push.apply(packages, lists[i].packages);
1472 packages.total = lists[i].total;
1479 listPackages: function(offset, limit, pattern)
1481 return _luci2.opkg._fetchPackages(_luci2.opkg._allPackages, offset, limit, pattern);
1484 installedPackages: function(offset, limit, pattern)
1486 return _luci2.opkg._fetchPackages(_luci2.opkg._installedPackages, offset, limit, pattern);
1489 findPackages: function(offset, limit, pattern)
1491 return _luci2.opkg._fetchPackages(_luci2.opkg._findPackages, offset, limit, pattern);
1494 installPackage: _luci2.rpc.declare({
1495 object: 'luci2.opkg',
1497 params: [ 'package' ],
1501 removePackage: _luci2.rpc.declare({
1502 object: 'luci2.opkg',
1504 params: [ 'package' ],
1508 getConfig: _luci2.rpc.declare({
1509 object: 'luci2.opkg',
1510 method: 'config_get',
1511 expect: { config: '' }
1514 setConfig: _luci2.rpc.declare({
1515 object: 'luci2.opkg',
1516 method: 'config_set',
1523 login: _luci2.rpc.declare({
1526 params: [ 'username', 'password' ],
1530 access: _luci2.rpc.declare({
1533 params: [ 'scope', 'object', 'function' ],
1534 expect: { access: false }
1539 return _luci2.session.access('ubus', 'session', 'access');
1542 startHeartbeat: function()
1544 this._hearbeatInterval = window.setInterval(function() {
1545 _luci2.session.isAlive().then(function(alive) {
1548 _luci2.session.stopHeartbeat();
1549 _luci2.ui.login(true);
1553 }, _luci2.globals.timeout * 2);
1556 stopHeartbeat: function()
1558 if (typeof(this._hearbeatInterval) != 'undefined')
1560 window.clearInterval(this._hearbeatInterval);
1561 delete this._hearbeatInterval;
1568 saveScrollTop: function()
1570 this._scroll_top = $(document).scrollTop();
1573 restoreScrollTop: function()
1575 if (typeof(this._scroll_top) == 'undefined')
1578 $(document).scrollTop(this._scroll_top);
1580 delete this._scroll_top;
1583 loading: function(enable)
1585 var win = $(window);
1586 var body = $('body');
1588 var state = _luci2.ui._loading || (_luci2.ui._loading = {
1590 .addClass('cbi-modal-loader')
1591 .append($('<div />').text(_luci2.tr('Loading data...')))
1597 body.css('overflow', 'hidden');
1598 body.css('padding', 0);
1599 body.css('width', win.width());
1600 body.css('height', win.height());
1601 state.modal.css('width', win.width());
1602 state.modal.css('height', win.height());
1608 body.css('overflow', '');
1609 body.css('padding', '');
1610 body.css('width', '');
1611 body.css('height', '');
1615 dialog: function(title, content, options)
1617 var win = $(window);
1618 var body = $('body');
1620 var state = _luci2.ui._dialog || (_luci2.ui._dialog = {
1621 dialog: $('<div />')
1622 .addClass('cbi-modal-dialog')
1623 .append($('<div />')
1624 .append($('<div />')
1625 .addClass('cbi-modal-dialog-header'))
1626 .append($('<div />')
1627 .addClass('cbi-modal-dialog-body'))
1628 .append($('<div />')
1629 .addClass('cbi-modal-dialog-footer')
1630 .append($('<button />')
1631 .addClass('cbi-button')
1632 .text(_luci2.tr('Close'))
1635 .css('overflow', '')
1640 $(this).parent().parent().parent().hide();
1645 if (typeof(options) != 'object')
1648 if (title === false)
1651 .css('overflow', '')
1656 state.dialog.hide();
1661 var cnt = state.dialog.children().children('div.cbi-modal-dialog-body');
1662 var ftr = state.dialog.children().children('div.cbi-modal-dialog-footer');
1666 if (options.style == 'confirm')
1668 ftr.append($('<button />')
1669 .addClass('cbi-button')
1670 .text(_luci2.tr('Ok'))
1671 .click(options.confirm || function() { _luci2.ui.dialog(false) }));
1673 ftr.append($('<button />')
1674 .addClass('cbi-button')
1675 .text(_luci2.tr('Cancel'))
1676 .click(options.cancel || function() { _luci2.ui.dialog(false) }));
1678 else if (options.style == 'close')
1680 ftr.append($('<button />')
1681 .addClass('cbi-button')
1682 .text(_luci2.tr('Close'))
1683 .click(options.close || function() { _luci2.ui.dialog(false) }));
1685 else if (options.style == 'wait')
1687 ftr.append($('<button />')
1688 .addClass('cbi-button')
1689 .text(_luci2.tr('Close'))
1690 .attr('disabled', true));
1693 state.dialog.find('div.cbi-modal-dialog-header').text(title);
1694 state.dialog.show();
1697 .css('max-height', Math.floor(win.height() * 0.70) + 'px')
1701 state.dialog.children()
1702 .css('margin-top', -Math.floor(state.dialog.children().height() / 2) + 'px');
1704 body.css('overflow', 'hidden');
1705 body.css('padding', 0);
1706 body.css('width', win.width());
1707 body.css('height', win.height());
1708 state.dialog.css('width', win.width());
1709 state.dialog.css('height', win.height());
1712 upload: function(title, content, options)
1714 var state = _luci2.ui._upload || (_luci2.ui._upload = {
1716 .attr('method', 'post')
1717 .attr('action', '/cgi-bin/luci-upload')
1718 .attr('enctype', 'multipart/form-data')
1719 .attr('target', 'cbi-fileupload-frame')
1721 .append($('<input />')
1722 .attr('type', 'hidden')
1723 .attr('name', 'sessionid'))
1724 .append($('<input />')
1725 .attr('type', 'hidden')
1726 .attr('name', 'filename'))
1727 .append($('<input />')
1728 .attr('type', 'file')
1729 .attr('name', 'filedata')
1730 .addClass('cbi-input-file'))
1731 .append($('<div />')
1732 .css('width', '100%')
1733 .addClass('progressbar')
1734 .addClass('intermediate')
1735 .append($('<div />')
1736 .css('width', '100%')))
1737 .append($('<iframe />')
1738 .attr('name', 'cbi-fileupload-frame')
1739 .css('width', '1px')
1740 .css('height', '1px')
1741 .css('visibility', 'hidden')),
1743 finish_cb: function(ev) {
1744 $(this).off('load');
1746 var body = (this.contentDocument || this.contentWindow.document).body;
1747 if (body.firstChild.tagName.toLowerCase() == 'pre')
1748 body = body.firstChild;
1752 json = $.parseJSON(body.innerHTML);
1755 message: _luci2.tr('Invalid server response received'),
1756 error: [ -1, _luci2.tr('Invalid data') ]
1762 L.ui.dialog(L.tr('File upload'), [
1763 $('<p />').text(_luci2.tr('The file upload failed with the server response below:')),
1764 $('<pre />').addClass('alert-message').text(json.message || json.error[1]),
1765 $('<p />').text(_luci2.tr('In case of network problems try uploading the file again.'))
1766 ], { style: 'close' });
1768 else if (typeof(state.success_cb) == 'function')
1770 state.success_cb(json);
1774 confirm_cb: function() {
1775 var f = state.form.find('.cbi-input-file');
1776 var b = state.form.find('.progressbar');
1777 var p = state.form.find('p');
1782 state.form.find('iframe').on('load', state.finish_cb);
1783 state.form.submit();
1787 p.text(_luci2.tr('File upload in progress …'));
1789 state.form.parent().parent().find('button').prop('disabled', true);
1793 state.form.find('.progressbar').hide();
1794 state.form.find('.cbi-input-file').val('').show();
1795 state.form.find('p').text(content || _luci2.tr('Select the file to upload and press "%s" to proceed.').format(_luci2.tr('Ok')));
1797 state.form.find('[name=sessionid]').val(_luci2.globals.sid);
1798 state.form.find('[name=filename]').val(options.filename);
1800 state.success_cb = options.success;
1802 _luci2.ui.dialog(title || _luci2.tr('File upload'), state.form, {
1804 confirm: state.confirm_cb
1808 reconnect: function()
1810 var protocols = (location.protocol == 'https:') ? [ 'http', 'https' ] : [ 'http' ];
1811 var ports = (location.protocol == 'https:') ? [ 80, location.port || 443 ] : [ location.port || 80 ];
1812 var address = location.hostname.match(/^[A-Fa-f0-9]*:[A-Fa-f0-9:]+$/) ? '[' + location.hostname + ']' : location.hostname;
1814 var interval, timeout;
1817 _luci2.tr('Waiting for device'), [
1818 $('<p />').text(_luci2.tr('Please stand by while the device is reconfiguring …')),
1820 .css('width', '100%')
1821 .addClass('progressbar')
1822 .addClass('intermediate')
1823 .append($('<div />')
1824 .css('width', '100%'))
1825 ], { style: 'wait' }
1828 for (var i = 0; i < protocols.length; i++)
1829 images = images.add($('<img />').attr('url', protocols[i] + '://' + address + ':' + ports[i]));
1831 //_luci2.network.getNetworkStatus(function(s) {
1832 // for (var i = 0; i < protocols.length; i++)
1834 // for (var j = 0; j < s.length; j++)
1836 // for (var k = 0; k < s[j]['ipv4-address'].length; k++)
1837 // images = images.add($('<img />').attr('url', protocols[i] + '://' + s[j]['ipv4-address'][k].address + ':' + ports[i]));
1839 // for (var l = 0; l < s[j]['ipv6-address'].length; l++)
1840 // images = images.add($('<img />').attr('url', protocols[i] + '://[' + s[j]['ipv6-address'][l].address + ']:' + ports[i]));
1843 //}).then(function() {
1844 images.on('load', function() {
1845 var url = this.getAttribute('url');
1846 _luci2.session.isAlive().then(function(access) {
1849 window.clearTimeout(timeout);
1850 window.clearInterval(interval);
1851 _luci2.ui.dialog(false);
1856 location.href = url;
1861 interval = window.setInterval(function() {
1862 images.each(function() {
1863 this.setAttribute('src', this.getAttribute('url') + _luci2.globals.resource + '/icons/loading.gif?r=' + Math.random());
1867 timeout = window.setTimeout(function() {
1868 window.clearInterval(interval);
1872 _luci2.tr('Device not responding'),
1873 _luci2.tr('The device was not responding within 180 seconds, you might need to manually reconnect your computer or use SSH to regain access.'),
1880 login: function(invalid)
1882 var state = _luci2.ui._login || (_luci2.ui._login = {
1885 .attr('method', 'post')
1887 .addClass('alert-message')
1888 .text(_luci2.tr('Wrong username or password given!')))
1890 .append($('<label />')
1891 .text(_luci2.tr('Username'))
1892 .append($('<br />'))
1893 .append($('<input />')
1894 .attr('type', 'text')
1895 .attr('name', 'username')
1896 .attr('value', 'root')
1897 .addClass('cbi-input-text')
1898 .keypress(function(ev) {
1899 if (ev.which == 10 || ev.which == 13)
1903 .append($('<label />')
1904 .text(_luci2.tr('Password'))
1905 .append($('<br />'))
1906 .append($('<input />')
1907 .attr('type', 'password')
1908 .attr('name', 'password')
1909 .addClass('cbi-input-password')
1910 .keypress(function(ev) {
1911 if (ev.which == 10 || ev.which == 13)
1915 .text(_luci2.tr('Enter your username and password above, then click "%s" to proceed.').format(_luci2.tr('Ok')))),
1917 response_cb: function(response) {
1918 if (!response.ubus_rpc_session)
1920 _luci2.ui.login(true);
1924 _luci2.globals.sid = response.ubus_rpc_session;
1925 _luci2.setHash('id', _luci2.globals.sid);
1926 _luci2.session.startHeartbeat();
1927 _luci2.ui.dialog(false);
1928 state.deferred.resolve();
1932 confirm_cb: function() {
1933 var u = state.form.find('[name=username]').val();
1934 var p = state.form.find('[name=password]').val();
1940 _luci2.tr('Logging in'), [
1941 $('<p />').text(_luci2.tr('Log in in progress …')),
1943 .css('width', '100%')
1944 .addClass('progressbar')
1945 .addClass('intermediate')
1946 .append($('<div />')
1947 .css('width', '100%'))
1948 ], { style: 'wait' }
1951 _luci2.globals.sid = '00000000000000000000000000000000';
1952 _luci2.session.login(u, p).then(state.response_cb);
1956 if (!state.deferred || state.deferred.state() != 'pending')
1957 state.deferred = $.Deferred();
1959 /* try to find sid from hash */
1960 var sid = _luci2.getHash('id');
1961 if (sid && sid.match(/^[a-f0-9]{32}$/))
1963 _luci2.globals.sid = sid;
1964 _luci2.session.isAlive().then(function(access) {
1967 _luci2.session.startHeartbeat();
1968 state.deferred.resolve();
1972 _luci2.setHash('id', undefined);
1977 return state.deferred;
1981 state.form.find('.alert-message').show();
1983 state.form.find('.alert-message').hide();
1985 _luci2.ui.dialog(_luci2.tr('Authorization Required'), state.form, {
1987 confirm: state.confirm_cb
1990 state.form.find('[name=password]').focus();
1992 return state.deferred;
1995 cryptPassword: _luci2.rpc.declare({
1999 expect: { crypt: '' }
2003 _acl_merge_scope: function(acl_scope, scope)
2005 if ($.isArray(scope))
2007 for (var i = 0; i < scope.length; i++)
2008 acl_scope[scope[i]] = true;
2010 else if ($.isPlainObject(scope))
2012 for (var object_name in scope)
2014 if (!$.isArray(scope[object_name]))
2017 var acl_object = acl_scope[object_name] || (acl_scope[object_name] = { });
2019 for (var i = 0; i < scope[object_name].length; i++)
2020 acl_object[scope[object_name][i]] = true;
2025 _acl_merge_permission: function(acl_perm, perm)
2027 if ($.isPlainObject(perm))
2029 for (var scope_name in perm)
2031 var acl_scope = acl_perm[scope_name] || (acl_perm[scope_name] = { });
2032 this._acl_merge_scope(acl_scope, perm[scope_name]);
2037 _acl_merge_group: function(acl_group, group)
2039 if ($.isPlainObject(group))
2041 if (!acl_group.description)
2042 acl_group.description = group.description;
2046 var acl_perm = acl_group.read || (acl_group.read = { });
2047 this._acl_merge_permission(acl_perm, group.read);
2052 var acl_perm = acl_group.write || (acl_group.write = { });
2053 this._acl_merge_permission(acl_perm, group.write);
2058 _acl_merge_tree: function(acl_tree, tree)
2060 if ($.isPlainObject(tree))
2062 for (var group_name in tree)
2064 var acl_group = acl_tree[group_name] || (acl_tree[group_name] = { });
2065 this._acl_merge_group(acl_group, tree[group_name]);
2070 listAvailableACLs: _luci2.rpc.declare({
2073 expect: { acls: [ ] },
2074 filter: function(trees) {
2076 for (var i = 0; i < trees.length; i++)
2077 _luci2.ui._acl_merge_tree(acl_tree, trees[i]);
2082 renderMainMenu: _luci2.rpc.declare({
2085 expect: { menu: { } },
2086 filter: function(entries) {
2087 _luci2.globals.mainMenu = new _luci2.ui.menu();
2088 _luci2.globals.mainMenu.entries(entries);
2092 .append(_luci2.globals.mainMenu.render(0, 1));
2096 renderViewMenu: function()
2100 .append(_luci2.globals.mainMenu.render(2, 900));
2103 renderView: function(node)
2105 var name = node.view.split(/\//).join('.');
2107 if (_luci2.globals.currentView)
2108 _luci2.globals.currentView.finish();
2110 _luci2.ui.renderViewMenu();
2113 _luci2._views = { };
2115 _luci2.setHash('view', node.view);
2117 if (_luci2._views[name] instanceof _luci2.ui.view)
2119 _luci2.globals.currentView = _luci2._views[name];
2120 return _luci2._views[name].render();
2123 var url = _luci2.globals.resource + '/view/' + name + '.js';
2125 return $.ajax(url, {
2129 }).then(function(data) {
2131 var viewConstructorSource = (
2132 '(function(L, $) { ' +
2134 '})(_luci2, $);\n\n' +
2136 ).format(data, url);
2138 var viewConstructor = eval(viewConstructorSource);
2140 _luci2._views[name] = new viewConstructor({
2142 acls: node.write || { }
2145 _luci2.globals.currentView = _luci2._views[name];
2146 return _luci2._views[name].render();
2149 alert('Unable to instantiate view "%s": %s'.format(url, e));
2152 return $.Deferred().resolve();
2156 updateHostname: function()
2158 return _luci2.system.getBoardInfo().then(function(info) {
2160 $('#hostname').text(info.hostname);
2164 updateChanges: function()
2166 return _luci2.uci.changes().then(function(changes) {
2170 for (var config in changes)
2174 for (var i = 0; i < changes[config].length; i++)
2176 var c = changes[config][i];
2185 log.push('uci delete %s.<del>%s</del>'.format(config, c[1]));
2187 log.push('uci delete %s.%s.<del>%s</del>'.format(config, c[1], c[2]));
2192 log.push('uci rename %s.<ins>%s=<strong>%s</strong></ins>'.format(config, c[1], c[2], c[3]));
2194 log.push('uci rename %s.%s.<ins>%s=<strong>%s</strong></ins>'.format(config, c[1], c[2], c[3], c[4]));
2198 log.push('uci add %s <ins>%s</ins> (= <ins><strong>%s</strong></ins>)'.format(config, c[2], c[1]));
2202 log.push('uci add_list %s.%s.<ins>%s=<strong>%s</strong></ins>'.format(config, c[1], c[2], c[3], c[4]));
2206 log.push('uci del_list %s.%s.<del>%s=<strong>%s</strong></del>'.format(config, c[1], c[2], c[3], c[4]));
2211 log.push('uci set %s.<ins>%s=<strong>%s</strong></ins>'.format(config, c[1], c[2]));
2213 log.push('uci set %s.%s.<ins>%s=<strong>%s</strong></ins>'.format(config, c[1], c[2], c[3], c[4]));
2218 html += '<code>/etc/config/%s</code><pre class="uci-changes">%s</pre>'.format(config, log.join('\n'));
2219 n += changes[config].length;
2230 .text(_luci2.trcp('Pending configuration changes', '1 change', '%d changes', n).format(n))
2231 .click(function(ev) {
2232 _luci2.ui.dialog(_luci2.tr('Staged configuration changes'), html, { style: 'close' });
2233 ev.preventDefault();
2243 _luci2.ui.loading(true);
2246 _luci2.ui.updateHostname(),
2247 _luci2.ui.updateChanges(),
2248 _luci2.ui.renderMainMenu()
2250 _luci2.ui.renderView(_luci2.globals.defaultNode).then(function() {
2251 _luci2.ui.loading(false);
2257 var AbstractWidget = Class.extend({
2258 i18n: function(text) {
2262 toString: function() {
2263 var x = document.createElement('div');
2264 x.appendChild(this.render());
2269 insertInto: function(id) {
2270 return $(id).empty().append(this.render());
2274 this.ui.view = AbstractWidget.extend({
2275 _fetch_template: function()
2277 return $.ajax(_luci2.globals.resource + '/template/' + this.options.name + '.htm', {
2281 success: function(data) {
2282 data = data.replace(/<%([#:=])?(.+?)%>/g, function(match, p1, p2) {
2283 p2 = p2.replace(/^\s+/, '').replace(/\s+$/, '');
2290 return _luci2.tr(p2);
2293 return _luci2.globals[p2] || '';
2296 return '(?' + match + ')';
2300 $('#maincontent').append(data);
2307 throw "Not implemented";
2312 var container = $('#maincontent');
2317 container.append($('<h2 />').append(this.title));
2319 if (this.description)
2320 container.append($('<div />').addClass('cbi-map-descr').append(this.description));
2323 return this._fetch_template().then(function() {
2324 return _luci2.deferrable(self.execute());
2328 repeat: function(func, interval)
2332 if (!self._timeouts)
2333 self._timeouts = [ ];
2335 var index = self._timeouts.length;
2337 if (typeof(interval) != 'number')
2340 var setTimer, runTimer;
2342 setTimer = function() {
2343 self._timeouts[index] = window.setTimeout(runTimer, interval);
2346 runTimer = function() {
2347 _luci2.deferrable(func.call(self)).then(setTimer);
2355 if ($.isArray(this._timeouts))
2357 for (var i = 0; i < this._timeouts.length; i++)
2358 window.clearTimeout(this._timeouts[i]);
2360 delete this._timeouts;
2365 this.ui.menu = AbstractWidget.extend({
2370 entries: function(entries)
2372 for (var entry in entries)
2374 var path = entry.split(/\//);
2375 var node = this._nodes;
2377 for (i = 0; i < path.length; i++)
2382 if (!node.childs[path[i]])
2383 node.childs[path[i]] = { };
2385 node = node.childs[path[i]];
2388 $.extend(node, entries[entry]);
2392 _indexcmp: function(a, b)
2394 var x = a.index || 0;
2395 var y = b.index || 0;
2399 firstChildView: function(node)
2405 for (var child in (node.childs || { }))
2406 nodes.push(node.childs[child]);
2408 nodes.sort(this._indexcmp);
2410 for (var i = 0; i < nodes.length; i++)
2412 var child = this.firstChildView(nodes[i]);
2415 for (var key in child)
2416 if (!node.hasOwnProperty(key) && child.hasOwnProperty(key))
2417 node[key] = child[key];
2426 _onclick: function(ev)
2428 _luci2.ui.loading(true);
2429 _luci2.ui.renderView(ev.data).then(function() {
2430 _luci2.ui.loading(false);
2433 ev.preventDefault();
2437 _render: function(childs, level, min, max)
2440 for (var node in childs)
2442 var child = this.firstChildView(childs[node]);
2444 nodes.push(childs[node]);
2447 nodes.sort(this._indexcmp);
2449 var list = $('<ul />');
2452 list.addClass('nav');
2453 else if (level == 1)
2454 list.addClass('dropdown-menu');
2456 for (var i = 0; i < nodes.length; i++)
2458 if (!_luci2.globals.defaultNode)
2460 var v = _luci2.getHash('view');
2461 if (!v || v == nodes[i].view)
2462 _luci2.globals.defaultNode = nodes[i];
2465 var item = $('<li />')
2468 .text(_luci2.tr(nodes[i].title))
2469 .click(nodes[i], this._onclick))
2472 if (nodes[i].childs && level < max)
2474 item.addClass('dropdown');
2475 item.find('a').addClass('menu');
2476 item.append(this._render(nodes[i].childs, level + 1));
2483 render: function(min, max)
2485 var top = min ? this.getNode(_luci2.globals.defaultNode.view, min) : this._nodes;
2486 return this._render(top.childs, 0, min, max);
2489 getNode: function(path, max)
2491 var p = path.split(/\//);
2492 var n = this._nodes;
2494 if (typeof(max) == 'undefined')
2497 for (var i = 0; i < max; i++)
2499 if (!n.childs[p[i]])
2509 this.ui.table = AbstractWidget.extend({
2515 row: function(values)
2517 if ($.isArray(values))
2519 this._rows.push(values);
2521 else if ($.isPlainObject(values))
2524 for (var i = 0; i < this.options.columns.length; i++)
2526 var col = this.options.columns[i];
2528 if (typeof col.key == 'string')
2529 v.push(values[col.key]);
2537 rows: function(rows)
2539 for (var i = 0; i < rows.length; i++)
2543 render: function(id)
2545 var fieldset = document.createElement('fieldset');
2546 fieldset.className = 'cbi-section';
2548 if (this.options.caption)
2550 var legend = document.createElement('legend');
2551 $(legend).append(this.options.caption);
2552 fieldset.appendChild(legend);
2555 var table = document.createElement('table');
2556 table.className = 'cbi-section-table';
2558 var has_caption = false;
2559 var has_description = false;
2561 for (var i = 0; i < this.options.columns.length; i++)
2562 if (this.options.columns[i].caption)
2567 else if (this.options.columns[i].description)
2569 has_description = true;
2575 var tr = table.insertRow(-1);
2576 tr.className = 'cbi-section-table-titles';
2578 for (var i = 0; i < this.options.columns.length; i++)
2580 var col = this.options.columns[i];
2581 var th = document.createElement('th');
2582 th.className = 'cbi-section-table-cell';
2587 th.style.width = col.width;
2590 th.style.textAlign = col.align;
2593 $(th).append(col.caption);
2597 if (has_description)
2599 var tr = table.insertRow(-1);
2600 tr.className = 'cbi-section-table-descr';
2602 for (var i = 0; i < this.options.columns.length; i++)
2604 var col = this.options.columns[i];
2605 var th = document.createElement('th');
2606 th.className = 'cbi-section-table-cell';
2611 th.style.width = col.width;
2614 th.style.textAlign = col.align;
2616 if (col.description)
2617 $(th).append(col.description);
2621 if (this._rows.length == 0)
2623 if (this.options.placeholder)
2625 var tr = table.insertRow(-1);
2626 var td = tr.insertCell(-1);
2627 td.className = 'cbi-section-table-cell';
2629 td.colSpan = this.options.columns.length;
2630 $(td).append(this.options.placeholder);