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 = Class.extend;
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;
373 this.getHash = function(key)
376 var tuples = (location.hash || '#').substring(1).split(/,/);
378 for (var i = 0; i < tuples.length; i++)
380 var tuple = tuples[i].split(/:/);
381 if (tuple.length == 2)
382 data[tuple[0]] = tuple[1];
385 if (typeof(key) != 'undefined')
391 this.toArray = function(x)
401 var l = x.split(/\s+/);
402 for (var i = 0; i < l.length; i++)
411 for (var i = 0; i < x.length; i++)
415 else if ($.isPlainObject(x))
419 if (x.hasOwnProperty(k))
428 this.toObject = function(x)
438 var l = x.split(/\x+/);
439 for (var i = 0; i < l.length; i++)
448 for (var i = 0; i < x.length; i++)
452 else if ($.isPlainObject(x))
461 this.filterArray = function(array, item)
463 if (!$.isArray(array))
466 for (var i = 0; i < array.length; i++)
467 if (array[i] === item)
468 array.splice(i--, 1);
473 this.toClassName = function(str, suffix)
476 var l = str.split(/[\/.]/);
478 for (var i = 0; i < l.length; i++)
480 n += l[i].charAt(0).toUpperCase() + l[i].substr(1).toLowerCase();
482 if (typeof(suffix) == 'string')
491 sid: '00000000000000000000000000000000'
500 _call: function(req, cb)
502 return $.ajax('/ubus', {
504 contentType: 'application/json',
505 data: JSON.stringify(req),
508 timeout: _luci2.globals.timeout,
513 _list_cb: function(msg)
515 var list = msg.result;
517 /* verify message frame */
518 if (typeof(msg) != 'object' || msg.jsonrpc != '2.0' || !msg.id || !$.isArray(list))
521 return $.Deferred().resolveWith(this, [ list ]);
524 _call_cb: function(msg)
527 var type = Object.prototype.toString;
528 var reqs = this._rpc_req;
530 if (!$.isArray(reqs))
536 for (var i = 0; i < msg.length; i++)
538 /* fetch related request info */
539 var req = _luci2.rpc._requests[reqs[i].id];
540 if (typeof(req) != 'object')
541 throw 'No related request for JSON response';
543 /* fetch response attribute and verify returned type */
546 /* verify message frame */
547 if (typeof(msg[i]) == 'object' && msg[i].jsonrpc == '2.0')
548 if ($.isArray(msg[i].result) && msg[i].result[0] == 0)
549 ret = (msg[i].result.length > 1) ? msg[i].result[1] : msg[i].result[0];
553 for (var key in req.expect)
555 if (typeof(ret) != 'undefined' && key != '')
558 if (typeof(ret) == 'undefined' || type.call(ret) != type.call(req.expect[key]))
559 ret = req.expect[key];
566 if (typeof(req.filter) == 'function')
569 req.priv[1] = req.params;
570 ret = req.filter.apply(_luci2.rpc, req.priv);
573 /* store response data */
574 if (typeof(req.index) == 'number')
575 data[req.index] = ret;
579 /* delete request object */
580 delete _luci2.rpc._requests[reqs[i].id];
583 return $.Deferred().resolveWith(this, [ data ]);
589 for (var i = 0; i < arguments.length; i++)
590 params[i] = arguments[i];
596 params: (params.length > 0) ? params : undefined
599 return this._call(msg, this._list_cb);
604 if (!$.isArray(this._batch))
610 if (!$.isArray(this._batch))
611 return _luci2.deferrable([ ]);
613 var req = this._batch;
617 return this._call(req, this._call_cb);
620 declare: function(options)
625 /* build parameter object */
628 if ($.isArray(options.params))
629 for (p_off = 0; p_off < options.params.length; p_off++)
630 params[options.params[p_off]] = arguments[p_off];
632 /* all remaining arguments are private args */
633 var priv = [ undefined, undefined ];
634 for (; p_off < arguments.length; p_off++)
635 priv.push(arguments[p_off]);
637 /* store request info */
638 var req = _rpc._requests[_rpc._id] = {
639 expect: options.expect,
640 filter: options.filter,
645 /* build message object */
658 /* when a batch is in progress then store index in request data
659 * and push message object onto the stack */
660 if ($.isArray(_rpc._batch))
662 req.index = _rpc._batch.push(msg) - 1;
663 return _luci2.deferrable(msg);
667 return _rpc._call(msg, _rpc._call_cb);
672 this.UCIContext = Class.extend({
686 _load: _luci2.rpc.declare({
689 params: [ 'config' ],
690 expect: { values: { } }
693 _order: _luci2.rpc.declare({
696 params: [ 'config', 'sections' ]
699 _add: _luci2.rpc.declare({
702 params: [ 'config', 'type', 'name', 'values' ],
703 expect: { section: '' }
706 _set: _luci2.rpc.declare({
709 params: [ 'config', 'section', 'values' ]
712 _delete: _luci2.rpc.declare({
715 params: [ 'config', 'section', 'options' ]
718 load: function(packages)
724 if (!$.isArray(packages))
725 packages = [ packages ];
729 for (var i = 0; i < packages.length; i++)
730 if (!seen[packages[i]])
732 pkgs.push(packages[i]);
733 seen[packages[i]] = true;
734 self._load(packages[i]);
737 return _luci2.rpc.flush().then(function(responses) {
738 for (var i = 0; i < responses.length; i++)
739 self.state.values[pkgs[i]] = responses[i];
745 unload: function(packages)
747 if (!$.isArray(packages))
748 packages = [ packages ];
750 for (var i = 0; i < packages.length; i++)
752 delete this.state.values[packages[i]];
753 delete this.state.creates[packages[i]];
754 delete this.state.changes[packages[i]];
755 delete this.state.deletes[packages[i]];
759 add: function(conf, type, name)
761 var c = this.state.creates;
762 var s = '.new.%d'.format(this.state.newid++);
772 '.index': 1000 + this.state.newid
778 remove: function(conf, sid)
780 var n = this.state.creates;
781 var c = this.state.changes;
782 var d = this.state.deletes;
784 /* requested deletion of a just created section */
785 if (sid.indexOf('.new.') == 0)
802 sections: function(conf, type, cb)
805 var v = this.state.values[conf];
806 var n = this.state.creates[conf];
807 var c = this.state.changes[conf];
808 var d = this.state.deletes[conf];
814 if (!d || d[s] !== true)
815 if (!type || v[s]['.type'] == type)
816 sa.push($.extend({ }, v[s], c ? c[s] : undefined));
820 if (!type || n[s]['.type'] == type)
823 sa.sort(function(a, b) {
824 return a['.index'] - b['.index'];
827 for (var i = 0; i < sa.length; i++)
830 if (typeof(cb) == 'function')
831 for (var i = 0; i < sa.length; i++)
832 cb.call(this, sa[i], sa[i]['.name']);
837 get: function(conf, sid, opt)
839 var v = this.state.values;
840 var n = this.state.creates;
841 var c = this.state.changes;
842 var d = this.state.deletes;
844 if (typeof(sid) == 'undefined')
847 /* requested option in a just created section */
848 if (sid.indexOf('.new.') == 0)
853 if (typeof(opt) == 'undefined')
856 return n[conf][sid][opt];
859 /* requested an option value */
860 if (typeof(opt) != 'undefined')
862 /* check whether option was deleted */
863 if (d[conf] && d[conf][sid])
865 if (d[conf][sid] === true)
868 for (var i = 0; i < d[conf][sid].length; i++)
869 if (d[conf][sid][i] == opt)
873 /* check whether option was changed */
874 if (c[conf] && c[conf][sid] && typeof(c[conf][sid][opt]) != 'undefined')
875 return c[conf][sid][opt];
877 /* return base value */
878 if (v[conf] && v[conf][sid])
879 return v[conf][sid][opt];
884 /* requested an entire section */
891 set: function(conf, sid, opt, val)
893 var n = this.state.creates;
894 var c = this.state.changes;
895 var d = this.state.deletes;
897 if (typeof(sid) == 'undefined' ||
898 typeof(opt) == 'undefined' ||
899 opt.charAt(0) == '.')
902 if (sid.indexOf('.new.') == 0)
904 if (n[conf] && n[conf][sid])
906 if (typeof(val) != 'undefined')
907 n[conf][sid][opt] = val;
909 delete n[conf][sid][opt];
912 else if (typeof(val) != 'undefined')
914 /* do not set within deleted section */
915 if (d[conf] && d[conf][sid] === true)
924 /* undelete option */
925 if (d[conf] && d[conf][sid])
926 d[conf][sid] = _luci2.filterArray(d[conf][sid], opt);
928 c[conf][sid][opt] = val;
938 if (d[conf][sid] !== true)
939 d[conf][sid].push(opt);
943 unset: function(conf, sid, opt)
945 return this.set(conf, sid, opt, undefined);
952 for (var pkg in this.state.values)
957 return this.load(pkgs);
962 var v = this.state.values;
963 var n = this.state.creates;
964 var r = this.state.reorder;
966 if ($.isEmptyObject(r))
967 return _luci2.deferrable();
972 gather all created and existing sections, sort them according
973 to their index value and issue an uci order call
988 o.sort(function(a, b) {
989 return (a['.index'] - b['.index']);
994 for (var i = 0; i < o.length; i++)
995 sids.push(o[i]['.name']);
997 this._order(c, sids);
1001 this.state.reorder = { };
1002 return _luci2.rpc.flush();
1005 swap: function(conf, sid1, sid2)
1007 var s1 = this.get(conf, sid1);
1008 var s2 = this.get(conf, sid2);
1009 var n1 = s1 ? s1['.index'] : NaN;
1010 var n2 = s2 ? s2['.index'] : NaN;
1012 if (isNaN(n1) || isNaN(n2))
1018 this.state.reorder[conf] = true;
1030 if (self.state.creates)
1031 for (var c in self.state.creates)
1032 for (var s in self.state.creates[c])
1039 for (var k in self.state.creates[c][s])
1042 r.type = self.state.creates[c][s][k];
1043 else if (k == '.create')
1044 r.name = self.state.creates[c][s][k];
1045 else if (k.charAt(0) != '.')
1046 r.values[k] = self.state.creates[c][s][k];
1049 snew.push(self.state.creates[c][s]);
1051 self._add(r.config, r.type, r.name, r.values);
1054 if (self.state.changes)
1055 for (var c in self.state.changes)
1056 for (var s in self.state.changes[c])
1057 self._set(c, s, self.state.changes[c][s]);
1059 if (self.state.deletes)
1060 for (var c in self.state.deletes)
1061 for (var s in self.state.deletes[c])
1063 var o = self.state.deletes[c][s];
1064 self._delete(c, s, (o === true) ? undefined : o);
1067 return _luci2.rpc.flush().then(function(responses) {
1069 array "snew" holds references to the created uci sections,
1070 use it to assign the returned names of the new sections
1072 for (var i = 0; i < snew.length; i++)
1073 snew[i]['.name'] = responses[i];
1075 return self._reorder();
1079 _apply: _luci2.rpc.declare({
1082 params: [ 'timeout', 'rollback' ]
1085 _confirm: _luci2.rpc.declare({
1090 apply: function(timeout)
1093 var date = new Date();
1094 var deferred = $.Deferred();
1096 if (typeof(timeout) != 'number' || timeout < 1)
1099 self._apply(timeout, true).then(function(rv) {
1102 deferred.rejectWith(self, [ rv ]);
1106 var try_deadline = date.getTime() + 1000 * timeout;
1107 var try_confirm = function()
1109 return self._confirm().then(function(rv) {
1112 if (date.getTime() < try_deadline)
1113 window.setTimeout(try_confirm, 250);
1115 deferred.rejectWith(self, [ rv ]);
1120 deferred.resolveWith(self, [ rv ]);
1124 window.setTimeout(try_confirm, 1000);
1130 changes: _luci2.rpc.declare({
1133 expect: { changes: { } }
1136 readable: function(conf)
1138 return _luci2.session.hasACL('uci', conf, 'read');
1141 writable: function(conf)
1143 return _luci2.session.hasACL('uci', conf, 'write');
1147 this.uci = new this.UCIContext();
1150 listDeviceNames: _luci2.rpc.declare({
1153 expect: { 'devices': [ ] },
1154 filter: function(data) {
1160 getDeviceStatus: _luci2.rpc.declare({
1163 params: [ 'device' ],
1164 expect: { '': { } },
1165 filter: function(data, params) {
1166 if (!$.isEmptyObject(data))
1168 data['device'] = params['device'];
1175 getAssocList: _luci2.rpc.declare({
1177 method: 'assoclist',
1178 params: [ 'device' ],
1179 expect: { results: [ ] },
1180 filter: function(data, params) {
1181 for (var i = 0; i < data.length; i++)
1182 data[i]['device'] = params['device'];
1184 data.sort(function(a, b) {
1185 if (a.bssid < b.bssid)
1187 else if (a.bssid > b.bssid)
1197 getWirelessStatus: function() {
1198 return this.listDeviceNames().then(function(names) {
1201 for (var i = 0; i < names.length; i++)
1202 _luci2.wireless.getDeviceStatus(names[i]);
1204 return _luci2.rpc.flush();
1205 }).then(function(networks) {
1209 'country', 'channel', 'frequency', 'frequency_offset',
1210 'txpower', 'txpower_offset', 'hwmodes', 'hardware', 'phy'
1214 'ssid', 'bssid', 'mode', 'quality', 'quality_max',
1215 'signal', 'noise', 'bitrate', 'encryption'
1218 for (var i = 0; i < networks.length; i++)
1220 var phy = rv[networks[i].phy] || (
1221 rv[networks[i].phy] = { networks: [ ] }
1225 device: networks[i].device
1228 for (var j = 0; j < phy_attrs.length; j++)
1229 phy[phy_attrs[j]] = networks[i][phy_attrs[j]];
1231 for (var j = 0; j < net_attrs.length; j++)
1232 net[net_attrs[j]] = networks[i][net_attrs[j]];
1234 phy.networks.push(net);
1241 getAssocLists: function()
1243 return this.listDeviceNames().then(function(names) {
1246 for (var i = 0; i < names.length; i++)
1247 _luci2.wireless.getAssocList(names[i]);
1249 return _luci2.rpc.flush();
1250 }).then(function(assoclists) {
1253 for (var i = 0; i < assoclists.length; i++)
1254 for (var j = 0; j < assoclists[i].length; j++)
1255 rv.push(assoclists[i][j]);
1261 formatEncryption: function(enc)
1263 var format_list = function(l, s)
1266 for (var i = 0; i < l.length; i++)
1267 rv.push(l[i].toUpperCase());
1268 return rv.join(s ? s : ', ');
1271 if (!enc || !enc.enabled)
1272 return _luci2.tr('None');
1276 if (enc.wep.length == 2)
1277 return _luci2.tr('WEP Open/Shared') + ' (%s)'.format(format_list(enc.ciphers, ', '));
1278 else if (enc.wep[0] == 'shared')
1279 return _luci2.tr('WEP Shared Auth') + ' (%s)'.format(format_list(enc.ciphers, ', '));
1281 return _luci2.tr('WEP Open System') + ' (%s)'.format(format_list(enc.ciphers, ', '));
1285 if (enc.wpa.length == 2)
1286 return _luci2.tr('mixed WPA/WPA2') + ' %s (%s)'.format(
1287 format_list(enc.authentication, '/'),
1288 format_list(enc.ciphers, ', ')
1290 else if (enc.wpa[0] == 2)
1291 return 'WPA2 %s (%s)'.format(
1292 format_list(enc.authentication, '/'),
1293 format_list(enc.ciphers, ', ')
1296 return 'WPA %s (%s)'.format(
1297 format_list(enc.authentication, '/'),
1298 format_list(enc.ciphers, ', ')
1302 return _luci2.tr('Unknown');
1307 getZoneColor: function(zone)
1309 if ($.isPlainObject(zone))
1314 else if (zone == 'wan')
1317 for (var i = 0, hash = 0;
1319 hash = zone.charCodeAt(i++) + ((hash << 5) - hash));
1321 for (var i = 0, color = '#';
1323 color += ('00' + ((hash >> i++ * 8) & 0xFF).tostring(16)).slice(-2));
1328 findZoneByNetwork: function(network)
1331 var zone = undefined;
1333 return _luci2.uci.sections('firewall', 'zone', function(z) {
1334 if (!z.name || !z.network)
1337 if (!$.isArray(z.network))
1338 z.network = z.network.split(/\s+/);
1340 for (var i = 0; i < z.network.length; i++)
1342 if (z.network[i] == network)
1348 }).then(function() {
1350 zone.color = self.getZoneColor(zone);
1357 this.NetworkModel = {
1358 _device_blacklist: [
1364 /^wlan[0-9]+\.sta[0-9]+$/
1368 'protolist', 0, _luci2.rpc.declare({
1370 method: 'get_proto_handlers',
1373 'ifstate', 1, _luci2.rpc.declare({
1374 object: 'network.interface',
1376 expect: { 'interface': [ ] }
1378 'devstate', 2, _luci2.rpc.declare({
1379 object: 'network.device',
1383 'wifistate', 0, _luci2.rpc.declare({
1384 object: 'network.wireless',
1388 'bwstate', 2, _luci2.rpc.declare({
1389 object: 'luci2.network.bwmon',
1390 method: 'statistics',
1391 expect: { 'statistics': { } }
1393 'devlist', 2, _luci2.rpc.declare({
1394 object: 'luci2.network',
1395 method: 'device_list',
1396 expect: { 'devices': [ ] }
1398 'swlist', 0, _luci2.rpc.declare({
1399 object: 'luci2.network',
1400 method: 'switch_list',
1401 expect: { 'switches': [ ] }
1405 _fetch_protocol: function(proto)
1407 var url = _luci2.globals.resource + '/proto/' + proto + '.js';
1408 var self = _luci2.NetworkModel;
1410 var def = $.Deferred();
1416 }).then(function(data) {
1418 var protoConstructorSource = (
1419 '(function(L, $) { ' +
1421 '})(_luci2, $);\n\n' +
1423 ).format(data, url);
1425 var protoClass = eval(protoConstructorSource);
1427 self._protos[proto] = new protoClass();
1430 alert('Unable to instantiate proto "%s": %s'.format(url, e));
1434 }).fail(function() {
1441 _fetch_protocols: function()
1443 var self = _luci2.NetworkModel;
1444 var deferreds = [ ];
1446 for (var proto in self._cache.protolist)
1447 deferreds.push(self._fetch_protocol(proto));
1449 return $.when.apply($, deferreds);
1452 _fetch_swstate: _luci2.rpc.declare({
1453 object: 'luci2.network',
1454 method: 'switch_info',
1455 params: [ 'switch' ],
1456 expect: { 'info': { } }
1459 _fetch_swstate_cb: function(responses) {
1460 var self = _luci2.NetworkModel;
1461 var swlist = self._cache.swlist;
1462 var swstate = self._cache.swstate = { };
1464 for (var i = 0; i < responses.length; i++)
1465 swstate[swlist[i]] = responses[i];
1468 _fetch_cache_cb: function(level)
1470 var self = _luci2.NetworkModel;
1471 var name = '_fetch_cache_cb_' + level;
1473 return self[name] || (
1474 self[name] = function(responses)
1476 for (var i = 0; i < self._cache_functions.length; i += 3)
1477 if (!level || self._cache_functions[i + 1] == level)
1478 self._cache[self._cache_functions[i]] = responses.shift();
1484 for (var i = 0; i < self._cache.swlist.length; i++)
1485 self._fetch_swstate(self._cache.swlist[i]);
1487 return _luci2.rpc.flush().then(self._fetch_swstate_cb);
1490 return _luci2.deferrable();
1495 _fetch_cache: function(level)
1497 var self = _luci2.NetworkModel;
1499 return _luci2.uci.load(['network', 'wireless']).then(function() {
1502 for (var i = 0; i < self._cache_functions.length; i += 3)
1503 if (!level || self._cache_functions[i + 1] == level)
1504 self._cache_functions[i + 2]();
1506 return _luci2.rpc.flush().then(self._fetch_cache_cb(level || 0));
1510 _get: function(pkg, sid, key)
1512 return _luci2.uci.get(pkg, sid, key);
1515 _set: function(pkg, sid, key, val)
1517 return _luci2.uci.set(pkg, sid, key, val);
1520 _is_blacklisted: function(dev)
1522 for (var i = 0; i < this._device_blacklist.length; i++)
1523 if (dev.match(this._device_blacklist[i]))
1529 _sort_devices: function(a, b)
1531 if (a.options.kind < b.options.kind)
1533 else if (a.options.kind > b.options.kind)
1536 if (a.options.name < b.options.name)
1538 else if (a.options.name > b.options.name)
1544 _get_dev: function(ifname)
1546 var alias = (ifname.charAt(0) == '@');
1547 return this._devs[ifname] || (
1548 this._devs[ifname] = {
1550 kind: alias ? 'alias' : 'ethernet',
1551 type: alias ? 0 : 1,
1558 _get_iface: function(name)
1560 return this._ifaces[name] || (
1561 this._ifaces[name] = {
1563 proto: this._protos.none,
1569 _parse_devices: function()
1571 var self = _luci2.NetworkModel;
1572 var wificount = { };
1574 for (var ifname in self._cache.devstate)
1576 if (self._is_blacklisted(ifname))
1579 var dev = self._cache.devstate[ifname];
1580 var entry = self._get_dev(ifname);
1587 entry.kind = 'tunnel';
1591 entry.kind = 'bridge';
1592 //entry.ports = dev['bridge-members'].sort();
1597 for (var i = 0; i < self._cache.devlist.length; i++)
1599 var dev = self._cache.devlist[i];
1601 if (self._is_blacklisted(dev.device))
1604 var entry = self._get_dev(dev.device);
1606 entry.up = dev.is_up;
1607 entry.type = dev.type;
1611 case 1: /* Ethernet */
1613 entry.kind = 'bridge';
1614 else if (dev.is_tuntap)
1615 entry.kind = 'tunnel';
1616 else if (dev.is_wireless)
1617 entry.kind = 'wifi';
1621 case 768: /* IP-IP Tunnel */
1622 case 769: /* IP6-IP6 Tunnel */
1623 case 776: /* IPv6-in-IPv4 */
1624 case 778: /* GRE over IP */
1625 entry.kind = 'tunnel';
1630 var net = _luci2.uci.sections('network');
1631 for (var i = 0; i < net.length; i++)
1634 var sid = s['.name'];
1636 if (s['.type'] == 'device' && s.name)
1638 var entry = self._get_dev(s.name);
1644 entry.kind = 'tunnel';
1650 else if (s['.type'] == 'interface' && !s['.anonymous'] && s.ifname)
1652 var ifnames = _luci2.toArray(s.ifname);
1654 for (var j = 0; j < ifnames.length; j++)
1655 self._get_dev(ifnames[j]);
1657 if (s['.name'] != 'loopback')
1659 var entry = self._get_dev('@%s'.format(s['.name']));
1662 entry.kind = 'alias';
1666 else if (s['.type'] == 'switch_vlan' && s.device)
1668 var sw = self._cache.swstate[s.device];
1669 var vid = parseInt(s.vid || s.vlan);
1670 var ports = _luci2.toArray(s.ports);
1672 if (!sw || !ports.length || isNaN(vid))
1675 var ifname = undefined;
1677 for (var j = 0; j < ports.length; j++)
1679 var port = parseInt(ports[j]);
1680 var tag = (ports[j].replace(/[^tu]/g, '') == 't');
1682 if (port == sw.cpu_port)
1684 // XXX: need a way to map switch to netdev
1686 ifname = 'eth0.%d'.format(vid);
1697 var entry = self._get_dev(ifname);
1699 entry.kind = 'vlan';
1706 var wifi = _luci2.uci.sections('wireless');
1707 for (var i = 0; i < wifi.length; i++)
1710 var sid = s['.name'];
1712 if (s['.type'] == 'wifi-iface' && s.device)
1714 var r = parseInt(s.device.replace(/^[^0-9]+/, ''));
1715 var n = wificount[s.device] = (wificount[s.device] || 0) + 1;
1716 var id = 'radio%d.network%d'.format(r, n);
1719 if (self._cache.wifistate[s.device])
1721 var ifcs = self._cache.wifistate[s.device].interfaces;
1722 for (var ifc in ifcs)
1724 if (ifcs[ifc].section == sid)
1726 ifname = ifcs[ifc].ifname;
1732 var entry = self._get_dev(ifname);
1734 entry.kind = 'wifi';
1737 entry.wdev = s.device;
1738 entry.wmode = s.mode;
1739 entry.wssid = s.ssid;
1740 entry.wbssid = s.bssid;
1744 for (var i = 0; i < net.length; i++)
1747 var sid = s['.name'];
1749 if (s['.type'] == 'interface' && !s['.anonymous'] && s.type == 'bridge')
1751 var ifnames = _luci2.toArray(s.ifname);
1753 for (var ifname in self._devs)
1755 var dev = self._devs[ifname];
1757 if (dev.kind != 'wifi')
1760 var wnets = _luci2.toArray(_luci2.uci.get('wireless', dev.sid, 'network'));
1761 if ($.inArray(sid, wnets) > -1)
1762 ifnames.push(ifname);
1765 entry = self._get_dev('br-%s'.format(s['.name']));
1767 entry.kind = 'bridge';
1769 entry.ports = ifnames.sort();
1774 _parse_interfaces: function()
1776 var self = _luci2.NetworkModel;
1777 var net = _luci2.uci.sections('network');
1779 for (var i = 0; i < net.length; i++)
1782 var sid = s['.name'];
1784 if (s['.type'] == 'interface' && !s['.anonymous'] && s.proto)
1786 var entry = self._get_iface(s['.name']);
1787 var proto = self._protos[s.proto] || self._protos.none;
1789 var l3dev = undefined;
1790 var l2dev = undefined;
1792 var ifnames = _luci2.toArray(s.ifname);
1794 for (var ifname in self._devs)
1796 var dev = self._devs[ifname];
1798 if (dev.kind != 'wifi')
1801 var wnets = _luci2.toArray(_luci2.uci.get('wireless', dev.sid, 'network'));
1802 if ($.inArray(entry.name, wnets) > -1)
1803 ifnames.push(ifname);
1807 l3dev = '%s-%s'.format(s.proto, entry.name);
1808 else if (s.type == 'bridge')
1809 l3dev = 'br-%s'.format(entry.name);
1813 if (!proto.virtual && s.type == 'bridge')
1814 l2dev = 'br-%s'.format(entry.name);
1815 else if (!proto.virtual)
1818 entry.proto = proto;
1820 entry.l3dev = l3dev;
1821 entry.l2dev = l2dev;
1825 for (var i = 0; i < self._cache.ifstate.length; i++)
1827 var iface = self._cache.ifstate[i];
1828 var entry = self._get_iface(iface['interface']);
1829 var proto = self._protos[iface.proto] || self._protos.none;
1831 /* this is a virtual interface, either deleted from config but
1832 not applied yet or set up from external tools (6rd) */
1835 entry.proto = proto;
1836 entry.l2dev = iface.device;
1837 entry.l3dev = iface.l3_device;
1847 return _luci2.deferrable();
1854 return self._fetch_cache()
1855 .then(self._fetch_protocols)
1856 .then(self._parse_devices)
1857 .then(self._parse_interfaces);
1866 refreshInterfaceStatus: function()
1868 return this._fetch_cache(1).then(this._parse_interfaces);
1871 refreshDeviceStatus: function()
1873 return this._fetch_cache(2).then(this._parse_devices);
1876 refreshStatus: function()
1878 return this._fetch_cache(1)
1879 .then(this._fetch_cache(2))
1880 .then(this._parse_devices)
1881 .then(this._parse_interfaces);
1884 getDevices: function()
1888 for (var ifname in this._devs)
1890 devs.push(new _luci2.NetworkModel.Device(this._devs[ifname]));
1892 return devs.sort(this._sort_devices);
1895 getDeviceByInterface: function(iface)
1897 if (iface instanceof _luci2.NetworkModel.Interface)
1898 iface = iface.name();
1900 if (this._ifaces[iface])
1901 return this.getDevice(this._ifaces[iface].l3dev) ||
1902 this.getDevice(this._ifaces[iface].l2dev);
1907 getDevice: function(ifname)
1909 if (this._devs[ifname])
1910 return new _luci2.NetworkModel.Device(this._devs[ifname]);
1915 createDevice: function(name)
1917 return new _luci2.NetworkModel.Device(this._get_dev(name));
1920 getInterfaces: function()
1924 for (var name in this._ifaces)
1925 if (name != 'loopback')
1926 ifaces.push(this.getInterface(name));
1928 ifaces.sort(function(a, b) {
1929 if (a.name() < b.name())
1931 else if (a.name() > b.name())
1940 getInterfacesByDevice: function(dev)
1944 if (dev instanceof _luci2.NetworkModel.Device)
1947 for (var name in this._ifaces)
1949 var iface = this._ifaces[name];
1950 if (iface.l2dev == dev || iface.l3dev == dev)
1951 ifaces.push(this.getInterface(name));
1954 ifaces.sort(function(a, b) {
1955 if (a.name() < b.name())
1957 else if (a.name() > b.name())
1966 getInterface: function(iface)
1968 if (this._ifaces[iface])
1969 return new _luci2.NetworkModel.Interface(this._ifaces[iface]);
1974 getProtocols: function()
1978 for (var proto in this._protos)
1980 var pr = this._protos[proto];
1984 description: pr.description,
1985 virtual: pr.virtual,
1990 return rv.sort(function(a, b) {
1991 if (a.name < b.name)
1993 else if (a.name > b.name)
2000 _find_wan: function(ipaddr)
2002 for (var i = 0; i < this._cache.ifstate.length; i++)
2004 var ifstate = this._cache.ifstate[i];
2009 for (var j = 0; j < ifstate.route.length; j++)
2010 if (ifstate.route[j].mask == 0 &&
2011 ifstate.route[j].target == ipaddr &&
2012 typeof(ifstate.route[j].table) == 'undefined')
2014 return this.getInterface(ifstate['interface']);
2023 return this._find_wan('0.0.0.0');
2026 findWAN6: function()
2028 return this._find_wan('::');
2031 resolveAlias: function(ifname)
2033 if (ifname instanceof _luci2.NetworkModel.Device)
2034 ifname = ifname.name();
2036 var dev = this._devs[ifname];
2039 while (dev && dev.kind == 'alias')
2042 if (seen[dev.ifname])
2045 var ifc = this._ifaces[dev.sid];
2047 seen[dev.ifname] = true;
2048 dev = ifc ? this._devs[ifc.l3dev] : undefined;
2051 return dev ? this.getDevice(dev.ifname) : undefined;
2055 this.NetworkModel.Device = Class.extend({
2057 ap: _luci2.tr('Master'),
2058 sta: _luci2.tr('Client'),
2059 adhoc: _luci2.tr('Ad-Hoc'),
2060 monitor: _luci2.tr('Monitor'),
2061 wds: _luci2.tr('Static WDS')
2064 _status: function(key)
2066 var s = _luci2.NetworkModel._cache.devstate[this.options.ifname];
2069 return key ? s[key] : s;
2076 var sid = this.options.sid;
2077 var pkg = (this.options.kind == 'wifi') ? 'wireless' : 'network';
2078 return _luci2.NetworkModel._get(pkg, sid, key);
2081 set: function(key, val)
2083 var sid = this.options.sid;
2084 var pkg = (this.options.kind == 'wifi') ? 'wireless' : 'network';
2085 return _luci2.NetworkModel._set(pkg, sid, key, val);
2090 if (typeof(this.options.type) == 'undefined')
2091 this.options.type = 1;
2093 if (typeof(this.options.kind) == 'undefined')
2094 this.options.kind = 'ethernet';
2096 if (typeof(this.options.networks) == 'undefined')
2097 this.options.networks = [ ];
2102 return this.options.ifname;
2105 description: function()
2107 switch (this.options.kind)
2110 return _luci2.tr('Alias for network "%s"').format(this.options.ifname.substring(1));
2113 return _luci2.tr('Network bridge');
2116 return _luci2.tr('Network device');
2119 switch (this.options.type)
2121 case 1: /* tuntap */
2122 return _luci2.tr('TAP device');
2125 return _luci2.tr('PPP tunnel');
2127 case 768: /* IP-IP Tunnel */
2128 return _luci2.tr('IP-in-IP tunnel');
2130 case 769: /* IP6-IP6 Tunnel */
2131 return _luci2.tr('IPv6-in-IPv6 tunnel');
2133 case 776: /* IPv6-in-IPv4 */
2134 return _luci2.tr('IPv6-over-IPv4 tunnel');
2137 case 778: /* GRE over IP */
2138 return _luci2.tr('GRE-over-IP tunnel');
2141 return _luci2.tr('Tunnel device');
2145 return _luci2.tr('VLAN %d on %s').format(this.options.vid, this.options.vsw.model);
2148 var o = this.options;
2149 return _luci2.trc('(Wifi-Mode) "(SSID)" on (radioX)', '%s "%h" on %s').format(
2150 o.wmode ? this._wifi_modes[o.wmode] : _luci2.tr('Unknown mode'),
2151 o.wssid || '?', o.wdev
2155 return _luci2.tr('Unknown device');
2160 var kind = this.options.kind;
2162 if (kind == 'alias')
2165 if (typeof(up) == 'undefined')
2168 return _luci2.globals.resource + '/icons/%s%s.png'.format(kind, up ? '' : '_disabled');
2173 var l = _luci2.NetworkModel._cache.devlist;
2175 for (var i = 0; i < l.length; i++)
2176 if (l[i].device == this.options.ifname)
2177 return (l[i].is_up === true);
2184 return (this.options.kind == 'alias');
2187 isBridge: function()
2189 return (this.options.kind == 'bridge');
2192 isBridgeable: function()
2194 return (this.options.type == 1 && this.options.kind != 'bridge');
2197 isWireless: function()
2199 return (this.options.kind == 'wifi');
2202 isInNetwork: function(net)
2204 if (!(net instanceof _luci2.NetworkModel.Interface))
2205 net = _luci2.NetworkModel.getInterface(net);
2209 if (net.options.l3dev == this.options.ifname ||
2210 net.options.l2dev == this.options.ifname)
2213 var dev = _luci2.NetworkModel._devs[net.options.l2dev];
2214 if (dev && dev.kind == 'bridge' && dev.ports)
2215 return ($.inArray(this.options.ifname, dev.ports) > -1);
2223 var dev = _luci2.NetworkModel._cache.devstate[this.options.ifname];
2224 if (dev && !isNaN(dev.mtu))
2230 getMACAddress: function()
2232 if (this.options.type != 1)
2235 var dev = _luci2.NetworkModel._cache.devstate[this.options.ifname];
2236 if (dev && dev.macaddr)
2237 return dev.macaddr.toUpperCase();
2242 getInterfaces: function()
2244 return _luci2.NetworkModel.getInterfacesByDevice(this.options.name);
2247 getStatistics: function()
2249 var s = this._status('statistics') || { };
2251 rx_bytes: (s.rx_bytes || 0),
2252 tx_bytes: (s.tx_bytes || 0),
2253 rx_packets: (s.rx_packets || 0),
2254 tx_packets: (s.tx_packets || 0)
2258 getTrafficHistory: function()
2260 var def = new Array(120);
2262 for (var i = 0; i < 120; i++)
2265 var h = _luci2.NetworkModel._cache.bwstate[this.options.ifname] || { };
2267 rx_bytes: (h.rx_bytes || def),
2268 tx_bytes: (h.tx_bytes || def),
2269 rx_packets: (h.rx_packets || def),
2270 tx_packets: (h.tx_packets || def)
2274 removeFromInterface: function(iface)
2276 if (!(iface instanceof _luci2.NetworkModel.Interface))
2277 iface = _luci2.NetworkModel.getInterface(iface);
2282 var ifnames = _luci2.toArray(iface.get('ifname'));
2283 if ($.inArray(this.options.ifname, ifnames) > -1)
2284 iface.set('ifname', _luci2.filterArray(ifnames, this.options.ifname));
2286 if (this.options.kind != 'wifi')
2289 var networks = _luci2.toArray(this.get('network'));
2290 if ($.inArray(iface.name(), networks) > -1)
2291 this.set('network', _luci2.filterArray(networks, iface.name()));
2294 attachToInterface: function(iface)
2296 if (!(iface instanceof _luci2.NetworkModel.Interface))
2297 iface = _luci2.NetworkModel.getInterface(iface);
2302 if (this.options.kind != 'wifi')
2304 var ifnames = _luci2.toArray(iface.get('ifname'));
2305 if ($.inArray(this.options.ifname, ifnames) < 0)
2307 ifnames.push(this.options.ifname);
2308 iface.set('ifname', (ifnames.length > 1) ? ifnames : ifnames[0]);
2313 var networks = _luci2.toArray(this.get('network'));
2314 if ($.inArray(iface.name(), networks) < 0)
2316 networks.push(iface.name());
2317 this.set('network', (networks.length > 1) ? networks : networks[0]);
2323 this.NetworkModel.Interface = Class.extend({
2324 _status: function(key)
2326 var s = _luci2.NetworkModel._cache.ifstate;
2328 for (var i = 0; i < s.length; i++)
2329 if (s[i]['interface'] == this.options.name)
2330 return key ? s[i][key] : s[i];
2337 return _luci2.NetworkModel._get('network', this.options.name, key);
2340 set: function(key, val)
2342 return _luci2.NetworkModel._set('network', this.options.name, key, val);
2347 return this.options.name;
2350 protocol: function()
2352 return (this.get('proto') || 'none');
2357 return (this._status('up') === true);
2360 isVirtual: function()
2362 return (typeof(this.options.sid) != 'string');
2365 getProtocol: function()
2367 var prname = this.get('proto') || 'none';
2368 return _luci2.NetworkModel._protos[prname] || _luci2.NetworkModel._protos.none;
2371 getUptime: function()
2373 var uptime = this._status('uptime');
2374 return isNaN(uptime) ? 0 : uptime;
2377 getDevice: function(resolveAlias)
2379 if (this.options.l3dev)
2380 return _luci2.NetworkModel.getDevice(this.options.l3dev);
2385 getPhysdev: function()
2387 if (this.options.l2dev)
2388 return _luci2.NetworkModel.getDevice(this.options.l2dev);
2393 getSubdevices: function()
2396 var dev = this.options.l2dev ?
2397 _luci2.NetworkModel._devs[this.options.l2dev] : undefined;
2399 if (dev && dev.kind == 'bridge' && dev.ports && dev.ports.length)
2400 for (var i = 0; i < dev.ports.length; i++)
2401 rv.push(_luci2.NetworkModel.getDevice(dev.ports[i]));
2406 getIPv4Addrs: function(mask)
2409 var addrs = this._status('ipv4-address');
2412 for (var i = 0; i < addrs.length; i++)
2414 rv.push(addrs[i].address);
2416 rv.push('%s/%d'.format(addrs[i].address, addrs[i].mask));
2421 getIPv6Addrs: function(mask)
2426 addrs = this._status('ipv6-address');
2429 for (var i = 0; i < addrs.length; i++)
2431 rv.push(addrs[i].address);
2433 rv.push('%s/%d'.format(addrs[i].address, addrs[i].mask));
2435 addrs = this._status('ipv6-prefix-assignment');
2438 for (var i = 0; i < addrs.length; i++)
2440 rv.push('%s1'.format(addrs[i].address));
2442 rv.push('%s1/%d'.format(addrs[i].address, addrs[i].mask));
2447 getDNSAddrs: function()
2450 var addrs = this._status('dns-server');
2453 for (var i = 0; i < addrs.length; i++)
2459 getIPv4DNS: function()
2462 var dns = this._status('dns-server');
2465 for (var i = 0; i < dns.length; i++)
2466 if (dns[i].indexOf(':') == -1)
2472 getIPv6DNS: function()
2475 var dns = this._status('dns-server');
2478 for (var i = 0; i < dns.length; i++)
2479 if (dns[i].indexOf(':') > -1)
2485 getIPv4Gateway: function()
2487 var rt = this._status('route');
2490 for (var i = 0; i < rt.length; i++)
2491 if (rt[i].target == '0.0.0.0' && rt[i].mask == 0)
2492 return rt[i].nexthop;
2497 getIPv6Gateway: function()
2499 var rt = this._status('route');
2502 for (var i = 0; i < rt.length; i++)
2503 if (rt[i].target == '::' && rt[i].mask == 0)
2504 return rt[i].nexthop;
2509 getStatistics: function()
2511 var dev = this.getDevice() || new _luci2.NetworkModel.Device({});
2512 return dev.getStatistics();
2515 getTrafficHistory: function()
2517 var dev = this.getDevice() || new _luci2.NetworkModel.Device({});
2518 return dev.getTrafficHistory();
2521 setDevices: function(devs)
2523 var dev = this.getPhysdev();
2525 var changed = false;
2527 if (dev && dev.isBridge())
2528 old_devs = this.getSubdevices();
2532 if (old_devs.length != devs.length)
2535 for (var i = 0; i < old_devs.length; i++)
2539 if (dev instanceof _luci2.NetworkModel.Device)
2542 if (!dev || old_devs[i].name() != dev)
2551 for (var i = 0; i < old_devs.length; i++)
2552 old_devs[i].removeFromInterface(this);
2554 for (var i = 0; i < devs.length; i++)
2558 if (!(dev instanceof _luci2.NetworkModel.Device))
2559 dev = _luci2.NetworkModel.getDevice(dev);
2562 dev.attachToInterface(this);
2567 changeProtocol: function(proto)
2569 var pr = _luci2.NetworkModel._protos[proto];
2574 for (var opt in (this.get() || { }))
2582 this.set(opt, undefined);
2590 this.set(opt, pr.protocol);
2594 this.set(opt, undefined);
2600 createForm: function(mapwidget)
2603 var proto = self.getProtocol();
2604 var device = self.getDevice();
2607 mapwidget = _luci2.cbi.Map;
2609 var map = new mapwidget('network', {
2610 caption: _luci2.tr('Configure "%s"').format(self.name())
2613 var section = map.section(_luci2.cbi.SingleSection, self.name(), {
2619 caption: _luci2.tr('General Settings')
2624 caption: _luci2.tr('Advanced Settings')
2629 caption: _luci2.tr('IPv6')
2634 caption: _luci2.tr('Physical Settings')
2638 section.taboption('general', _luci2.cbi.CheckboxValue, 'auto', {
2639 caption: _luci2.tr('Start on boot'),
2644 var pr = section.taboption('general', _luci2.cbi.ListValue, 'proto', {
2645 caption: _luci2.tr('Protocol')
2648 pr.ucivalue = function(sid) {
2649 return self.get('proto') || 'none';
2652 var ok = section.taboption('general', _luci2.cbi.ButtonValue, '_confirm', {
2653 caption: _luci2.tr('Really switch?'),
2654 description: _luci2.tr('Changing the protocol will clear all configuration for this interface!'),
2655 text: _luci2.tr('Change protocol')
2658 ok.on('click', function(ev) {
2659 self.changeProtocol(pr.formvalue(ev.data.sid));
2660 self.createForm(mapwidget).show();
2663 var protos = _luci2.NetworkModel.getProtocols();
2665 for (var i = 0; i < protos.length; i++)
2666 pr.value(protos[i].name, protos[i].description);
2668 proto.populateForm(section, self);
2672 var br = section.taboption('physical', _luci2.cbi.CheckboxValue, 'type', {
2673 caption: _luci2.tr('Network bridge'),
2674 description: _luci2.tr('Merges multiple devices into one logical bridge'),
2681 section.taboption('physical', _luci2.cbi.DeviceList, '__iface_multi', {
2682 caption: _luci2.tr('Devices'),
2685 }).depends('type', true);
2687 section.taboption('physical', _luci2.cbi.DeviceList, '__iface_single', {
2688 caption: _luci2.tr('Device'),
2691 }).depends('type', false);
2693 var mac = section.taboption('physical', _luci2.cbi.InputValue, 'macaddr', {
2694 caption: _luci2.tr('Override MAC'),
2696 placeholder: device ? device.getMACAddress() : undefined,
2700 mac.ucivalue = function(sid)
2703 return device.get('macaddr');
2705 return this.callSuper('ucivalue', sid);
2708 mac.save = function(sid)
2710 if (!this.changed(sid))
2714 device.set('macaddr', this.formvalue(sid));
2716 this.callSuper('set', sid);
2722 section.taboption('physical', _luci2.cbi.InputValue, 'mtu', {
2723 caption: _luci2.tr('Override MTU'),
2725 placeholder: device ? device.getMTU() : undefined,
2726 datatype: 'range(1, 9000)'
2729 section.taboption('physical', _luci2.cbi.InputValue, 'metric', {
2730 caption: _luci2.tr('Override Metric'),
2733 datatype: 'uinteger'
2736 for (var field in section.fields)
2744 for (var i = 0; i < protos.length; i++)
2745 if (protos[i].name != (this.get('proto') || 'none'))
2746 section.fields[field].depends('proto', protos[i].name);
2750 section.fields[field].depends('proto', this.get('proto') || 'none', true);
2759 this.NetworkModel.Protocol = this.NetworkModel.Interface.extend({
2760 description: '__unknown__',
2764 populateForm: function(section, iface)
2771 getSystemInfo: _luci2.rpc.declare({
2777 getBoardInfo: _luci2.rpc.declare({
2783 getDiskInfo: _luci2.rpc.declare({
2784 object: 'luci2.system',
2789 getInfo: function(cb)
2793 this.getSystemInfo();
2794 this.getBoardInfo();
2797 return _luci2.rpc.flush().then(function(info) {
2800 $.extend(rv, info[0]);
2801 $.extend(rv, info[1]);
2802 $.extend(rv, info[2]);
2808 getProcessList: _luci2.rpc.declare({
2809 object: 'luci2.system',
2810 method: 'process_list',
2811 expect: { processes: [ ] },
2812 filter: function(data) {
2813 data.sort(function(a, b) { return a.pid - b.pid });
2818 getSystemLog: _luci2.rpc.declare({
2819 object: 'luci2.system',
2824 getKernelLog: _luci2.rpc.declare({
2825 object: 'luci2.system',
2830 getZoneInfo: function(cb)
2832 return $.getJSON(_luci2.globals.resource + '/zoneinfo.json', cb);
2835 sendSignal: _luci2.rpc.declare({
2836 object: 'luci2.system',
2837 method: 'process_signal',
2838 params: [ 'pid', 'signal' ],
2839 filter: function(data) {
2844 initList: _luci2.rpc.declare({
2845 object: 'luci2.system',
2846 method: 'init_list',
2847 expect: { initscripts: [ ] },
2848 filter: function(data) {
2849 data.sort(function(a, b) { return (a.start || 0) - (b.start || 0) });
2854 initEnabled: function(init, cb)
2856 return this.initList().then(function(list) {
2857 for (var i = 0; i < list.length; i++)
2858 if (list[i].name == init)
2859 return !!list[i].enabled;
2865 initRun: _luci2.rpc.declare({
2866 object: 'luci2.system',
2867 method: 'init_action',
2868 params: [ 'name', 'action' ],
2869 filter: function(data) {
2874 initStart: function(init, cb) { return _luci2.system.initRun(init, 'start', cb) },
2875 initStop: function(init, cb) { return _luci2.system.initRun(init, 'stop', cb) },
2876 initRestart: function(init, cb) { return _luci2.system.initRun(init, 'restart', cb) },
2877 initReload: function(init, cb) { return _luci2.system.initRun(init, 'reload', cb) },
2878 initEnable: function(init, cb) { return _luci2.system.initRun(init, 'enable', cb) },
2879 initDisable: function(init, cb) { return _luci2.system.initRun(init, 'disable', cb) },
2882 getRcLocal: _luci2.rpc.declare({
2883 object: 'luci2.system',
2884 method: 'rclocal_get',
2885 expect: { data: '' }
2888 setRcLocal: _luci2.rpc.declare({
2889 object: 'luci2.system',
2890 method: 'rclocal_set',
2895 getCrontab: _luci2.rpc.declare({
2896 object: 'luci2.system',
2897 method: 'crontab_get',
2898 expect: { data: '' }
2901 setCrontab: _luci2.rpc.declare({
2902 object: 'luci2.system',
2903 method: 'crontab_set',
2908 getSSHKeys: _luci2.rpc.declare({
2909 object: 'luci2.system',
2910 method: 'sshkeys_get',
2911 expect: { keys: [ ] }
2914 setSSHKeys: _luci2.rpc.declare({
2915 object: 'luci2.system',
2916 method: 'sshkeys_set',
2921 setPassword: _luci2.rpc.declare({
2922 object: 'luci2.system',
2923 method: 'password_set',
2924 params: [ 'user', 'password' ]
2928 listLEDs: _luci2.rpc.declare({
2929 object: 'luci2.system',
2931 expect: { leds: [ ] }
2934 listUSBDevices: _luci2.rpc.declare({
2935 object: 'luci2.system',
2937 expect: { devices: [ ] }
2941 testUpgrade: _luci2.rpc.declare({
2942 object: 'luci2.system',
2943 method: 'upgrade_test',
2947 startUpgrade: _luci2.rpc.declare({
2948 object: 'luci2.system',
2949 method: 'upgrade_start',
2953 cleanUpgrade: _luci2.rpc.declare({
2954 object: 'luci2.system',
2955 method: 'upgrade_clean'
2959 restoreBackup: _luci2.rpc.declare({
2960 object: 'luci2.system',
2961 method: 'backup_restore'
2964 cleanBackup: _luci2.rpc.declare({
2965 object: 'luci2.system',
2966 method: 'backup_clean'
2970 getBackupConfig: _luci2.rpc.declare({
2971 object: 'luci2.system',
2972 method: 'backup_config_get',
2973 expect: { config: '' }
2976 setBackupConfig: _luci2.rpc.declare({
2977 object: 'luci2.system',
2978 method: 'backup_config_set',
2983 listBackup: _luci2.rpc.declare({
2984 object: 'luci2.system',
2985 method: 'backup_list',
2986 expect: { files: [ ] }
2990 testReset: _luci2.rpc.declare({
2991 object: 'luci2.system',
2992 method: 'reset_test',
2993 expect: { supported: false }
2996 startReset: _luci2.rpc.declare({
2997 object: 'luci2.system',
2998 method: 'reset_start'
3002 performReboot: _luci2.rpc.declare({
3003 object: 'luci2.system',
3009 updateLists: _luci2.rpc.declare({
3010 object: 'luci2.opkg',
3015 _allPackages: _luci2.rpc.declare({
3016 object: 'luci2.opkg',
3018 params: [ 'offset', 'limit', 'pattern' ],
3022 _installedPackages: _luci2.rpc.declare({
3023 object: 'luci2.opkg',
3024 method: 'list_installed',
3025 params: [ 'offset', 'limit', 'pattern' ],
3029 _findPackages: _luci2.rpc.declare({
3030 object: 'luci2.opkg',
3032 params: [ 'offset', 'limit', 'pattern' ],
3036 _fetchPackages: function(action, offset, limit, pattern)
3040 return action(offset, limit, pattern).then(function(list) {
3041 if (!list.total || !list.packages)
3042 return { length: 0, total: 0 };
3044 packages.push.apply(packages, list.packages);
3045 packages.total = list.total;
3050 if (packages.length >= limit)
3055 for (var i = offset + packages.length; i < limit; i += 100)
3056 action(i, (Math.min(i + 100, limit) % 100) || 100, pattern);
3058 return _luci2.rpc.flush();
3059 }).then(function(lists) {
3060 for (var i = 0; i < lists.length; i++)
3062 if (!lists[i].total || !lists[i].packages)
3065 packages.push.apply(packages, lists[i].packages);
3066 packages.total = lists[i].total;
3073 listPackages: function(offset, limit, pattern)
3075 return _luci2.opkg._fetchPackages(_luci2.opkg._allPackages, offset, limit, pattern);