luci2: increase default rpc timeout to 15 seconds
[project/luci2/ui.git] / luci2 / htdocs / luci2 / luci2.js
1 /*
2 LuCI2 - OpenWrt Web Interface
3
4 Copyright 2013 Jo-Philipp Wich <jow@openwrt.org>
5
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
9
10 http://www.apache.org/licenses/LICENSE-2.0
11 */
12
13 String.prototype.format = function()
14 {
15 var html_esc = [/&/g, '&#38;', /"/g, '&#34;', /'/g, '&#39;', /</g, '&#60;', />/g, '&#62;'];
16 var quot_esc = [/"/g, '&#34;', /'/g, '&#39;'];
17
18 function esc(s, r) {
19 for( var i = 0; i < r.length; i += 2 )
20 s = s.replace(r[i], r[i+1]);
21 return s;
22 }
23
24 var str = this;
25 var out = '';
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;
28
29 while ((a = re.exec(str)) != null)
30 {
31 var m = a[1];
32 var leftpart = a[2], pPad = a[3], pJustify = a[4], pMinLength = a[5];
33 var pPrecision = a[6], pType = a[7];
34
35 numMatches++;
36
37 if (pType == '%')
38 {
39 subst = '%';
40 }
41 else
42 {
43 if (numSubstitutions < arguments.length)
44 {
45 var param = arguments[numSubstitutions++];
46
47 var pad = '';
48 if (pPad && pPad.substr(0,1) == "'")
49 pad = leftpart.substr(1,1);
50 else if (pPad)
51 pad = pPad;
52
53 var justifyRight = true;
54 if (pJustify && pJustify === "-")
55 justifyRight = false;
56
57 var minLength = -1;
58 if (pMinLength)
59 minLength = parseInt(pMinLength);
60
61 var precision = -1;
62 if (pPrecision && pType == 'f')
63 precision = parseInt(pPrecision.substring(1));
64
65 var subst = param;
66
67 switch(pType)
68 {
69 case 'b':
70 subst = (parseInt(param) || 0).toString(2);
71 break;
72
73 case 'c':
74 subst = String.fromCharCode(parseInt(param) || 0);
75 break;
76
77 case 'd':
78 subst = (parseInt(param) || 0);
79 break;
80
81 case 'u':
82 subst = Math.abs(parseInt(param) || 0);
83 break;
84
85 case 'f':
86 subst = (precision > -1)
87 ? ((parseFloat(param) || 0.0)).toFixed(precision)
88 : (parseFloat(param) || 0.0);
89 break;
90
91 case 'o':
92 subst = (parseInt(param) || 0).toString(8);
93 break;
94
95 case 's':
96 subst = param;
97 break;
98
99 case 'x':
100 subst = ('' + (parseInt(param) || 0).toString(16)).toLowerCase();
101 break;
102
103 case 'X':
104 subst = ('' + (parseInt(param) || 0).toString(16)).toUpperCase();
105 break;
106
107 case 'h':
108 subst = esc(param, html_esc);
109 break;
110
111 case 'q':
112 subst = esc(param, quot_esc);
113 break;
114
115 case 'j':
116 subst = String.serialize(param);
117 break;
118
119 case 't':
120 var td = 0;
121 var th = 0;
122 var tm = 0;
123 var ts = (param || 0);
124
125 if (ts > 60) {
126 tm = Math.floor(ts / 60);
127 ts = (ts % 60);
128 }
129
130 if (tm > 60) {
131 th = Math.floor(tm / 60);
132 tm = (tm % 60);
133 }
134
135 if (th > 24) {
136 td = Math.floor(th / 24);
137 th = (th % 24);
138 }
139
140 subst = (td > 0)
141 ? '%dd %dh %dm %ds'.format(td, th, tm, ts)
142 : '%dh %dm %ds'.format(th, tm, ts);
143
144 break;
145
146 case 'm':
147 var mf = pMinLength ? parseInt(pMinLength) : 1000;
148 var pr = pPrecision ? Math.floor(10*parseFloat('0'+pPrecision)) : 2;
149
150 var i = 0;
151 var val = parseFloat(param || 0);
152 var units = [ '', 'K', 'M', 'G', 'T', 'P', 'E' ];
153
154 for (i = 0; (i < units.length) && (val > mf); i++)
155 val /= mf;
156
157 subst = val.toFixed(pr) + ' ' + units[i];
158 break;
159 }
160
161 subst = (typeof(subst) == 'undefined') ? '' : subst.toString();
162
163 if (minLength > 0 && pad.length > 0)
164 for (var i = 0; i < (minLength - subst.length); i++)
165 subst = justifyRight ? (pad + subst) : (subst + pad);
166 }
167 }
168
169 out += leftpart + subst;
170 str = str.substr(m.length);
171 }
172
173 return out + str;
174 }
175
176 function LuCI2()
177 {
178 var _luci2 = this;
179
180 var Class = function() { };
181
182 Class.extend = function(properties)
183 {
184 Class.initializing = true;
185
186 var prototype = new this();
187 var superprot = this.prototype;
188
189 Class.initializing = false;
190
191 $.extend(prototype, properties, {
192 callSuper: function() {
193 var args = [ ];
194 var meth = arguments[0];
195
196 if (typeof(superprot[meth]) != 'function')
197 return undefined;
198
199 for (var i = 1; i < arguments.length; i++)
200 args.push(arguments[i]);
201
202 return superprot[meth].apply(this, args);
203 }
204 });
205
206 function _class()
207 {
208 this.options = arguments[0] || { };
209
210 if (!Class.initializing && typeof(this.init) == 'function')
211 this.init.apply(this, arguments);
212 }
213
214 _class.prototype = prototype;
215 _class.prototype.constructor = _class;
216
217 _class.extend = arguments.callee;
218
219 return _class;
220 };
221
222 this.defaults = function(obj, def)
223 {
224 for (var key in def)
225 if (typeof(obj[key]) == 'undefined')
226 obj[key] = def[key];
227
228 return obj;
229 };
230
231 this.isDeferred = function(x)
232 {
233 return (typeof(x) == 'object' &&
234 typeof(x.then) == 'function' &&
235 typeof(x.promise) == 'function');
236 };
237
238 this.deferrable = function()
239 {
240 if (this.isDeferred(arguments[0]))
241 return arguments[0];
242
243 var d = $.Deferred();
244 d.resolve.apply(d, arguments);
245
246 return d.promise();
247 };
248
249 this.i18n = {
250
251 loaded: false,
252 catalog: { },
253 plural: function(n) { return 0 + (n != 1) },
254
255 init: function() {
256 if (_luci2.i18n.loaded)
257 return;
258
259 var lang = (navigator.userLanguage || navigator.language || 'en').toLowerCase();
260 var langs = (lang.indexOf('-') > -1) ? [ lang, lang.split(/-/)[0] ] : [ lang ];
261
262 for (var i = 0; i < langs.length; i++)
263 $.ajax('%s/i18n/base.%s.json'.format(_luci2.globals.resource, langs[i]), {
264 async: false,
265 cache: true,
266 dataType: 'json',
267 success: function(data) {
268 $.extend(_luci2.i18n.catalog, data);
269
270 var pe = _luci2.i18n.catalog[''];
271 if (pe)
272 {
273 delete _luci2.i18n.catalog[''];
274 try {
275 var pf = new Function('n', 'return 0 + (' + pe + ')');
276 _luci2.i18n.plural = pf;
277 } catch (e) { };
278 }
279 }
280 });
281
282 _luci2.i18n.loaded = true;
283 }
284
285 };
286
287 this.tr = function(msgid)
288 {
289 _luci2.i18n.init();
290
291 var msgstr = _luci2.i18n.catalog[msgid];
292
293 if (typeof(msgstr) == 'undefined')
294 return msgid;
295 else if (typeof(msgstr) == 'string')
296 return msgstr;
297 else
298 return msgstr[0];
299 };
300
301 this.trp = function(msgid, msgid_plural, count)
302 {
303 _luci2.i18n.init();
304
305 var msgstr = _luci2.i18n.catalog[msgid];
306
307 if (typeof(msgstr) == 'undefined')
308 return (count == 1) ? msgid : msgid_plural;
309 else if (typeof(msgstr) == 'string')
310 return msgstr;
311 else
312 return msgstr[_luci2.i18n.plural(count)];
313 };
314
315 this.trc = function(msgctx, msgid)
316 {
317 _luci2.i18n.init();
318
319 var msgstr = _luci2.i18n.catalog[msgid + '\u0004' + msgctx];
320
321 if (typeof(msgstr) == 'undefined')
322 return msgid;
323 else if (typeof(msgstr) == 'string')
324 return msgstr;
325 else
326 return msgstr[0];
327 };
328
329 this.trcp = function(msgctx, msgid, msgid_plural, count)
330 {
331 _luci2.i18n.init();
332
333 var msgstr = _luci2.i18n.catalog[msgid + '\u0004' + msgctx];
334
335 if (typeof(msgstr) == 'undefined')
336 return (count == 1) ? msgid : msgid_plural;
337 else if (typeof(msgstr) == 'string')
338 return msgstr;
339 else
340 return msgstr[_luci2.i18n.plural(count)];
341 };
342
343 this.setHash = function(key, value)
344 {
345 var h = '';
346 var data = this.getHash(undefined);
347
348 if (typeof(value) == 'undefined')
349 delete data[key];
350 else
351 data[key] = value;
352
353 var keys = [ ];
354 for (var k in data)
355 keys.push(k);
356
357 keys.sort();
358
359 for (var i = 0; i < keys.length; i++)
360 {
361 if (i > 0)
362 h += ',';
363
364 h += keys[i] + ':' + data[keys[i]];
365 }
366
367 if (h)
368 location.hash = '#' + h;
369 };
370
371 this.getHash = function(key)
372 {
373 var data = { };
374 var tuples = (location.hash || '#').substring(1).split(/,/);
375
376 for (var i = 0; i < tuples.length; i++)
377 {
378 var tuple = tuples[i].split(/:/);
379 if (tuple.length == 2)
380 data[tuple[0]] = tuple[1];
381 }
382
383 if (typeof(key) != 'undefined')
384 return data[key];
385
386 return data;
387 };
388
389 this.globals = {
390 timeout: 15000,
391 resource: '/luci2',
392 sid: '00000000000000000000000000000000'
393 };
394
395 this.rpc = {
396
397 _id: 1,
398 _batch: undefined,
399 _requests: { },
400
401 _call: function(req, cb)
402 {
403 return $.ajax('/ubus', {
404 cache: false,
405 contentType: 'application/json',
406 data: JSON.stringify(req),
407 dataType: 'json',
408 type: 'POST',
409 timeout: _luci2.globals.timeout
410 }).then(cb);
411 },
412
413 _list_cb: function(msg)
414 {
415 /* verify message frame */
416 if (typeof(msg) != 'object' || msg.jsonrpc != '2.0' || !msg.id)
417 throw 'Invalid JSON response';
418
419 return msg.result;
420 },
421
422 _call_cb: function(msg)
423 {
424 var data = [ ];
425 var type = Object.prototype.toString;
426
427 if (!$.isArray(msg))
428 msg = [ msg ];
429
430 for (var i = 0; i < msg.length; i++)
431 {
432 /* verify message frame */
433 if (typeof(msg[i]) != 'object' || msg[i].jsonrpc != '2.0' || !msg[i].id)
434 throw 'Invalid JSON response';
435
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';
440
441 /* fetch response attribute and verify returned type */
442 var ret = undefined;
443
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];
446
447 if (req.expect)
448 {
449 for (var key in req.expect)
450 {
451 if (typeof(ret) != 'undefined' && key != '')
452 ret = ret[key];
453
454 if (type.call(ret) != type.call(req.expect[key]))
455 ret = req.expect[key];
456
457 break;
458 }
459 }
460
461 /* apply filter */
462 if (typeof(req.filter) == 'function')
463 {
464 req.priv[0] = ret;
465 req.priv[1] = req.params;
466 ret = req.filter.apply(_luci2.rpc, req.priv);
467 }
468
469 /* store response data */
470 if (typeof(req.index) == 'number')
471 data[req.index] = ret;
472 else
473 data = ret;
474
475 /* delete request object */
476 delete _luci2.rpc._requests[msg[i].id];
477 }
478
479 return data;
480 },
481
482 list: function()
483 {
484 var params = [ ];
485 for (var i = 0; i < arguments.length; i++)
486 params[i] = arguments[i];
487
488 var msg = {
489 jsonrpc: '2.0',
490 id: this._id++,
491 method: 'list',
492 params: (params.length > 0) ? params : undefined
493 };
494
495 return this._call(msg, this._list_cb);
496 },
497
498 batch: function()
499 {
500 if (!$.isArray(this._batch))
501 this._batch = [ ];
502 },
503
504 flush: function()
505 {
506 if (!$.isArray(this._batch))
507 return _luci2.deferrable([ ]);
508
509 var req = this._batch;
510 delete this._batch;
511
512 /* call rpc */
513 return this._call(req, this._call_cb);
514 },
515
516 declare: function(options)
517 {
518 var _rpc = this;
519
520 return function() {
521 /* build parameter object */
522 var p_off = 0;
523 var params = { };
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];
527
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]);
532
533 /* store request info */
534 var req = _rpc._requests[_rpc._id] = {
535 expect: options.expect,
536 filter: options.filter,
537 params: params,
538 priv: priv
539 };
540
541 /* build message object */
542 var msg = {
543 jsonrpc: '2.0',
544 id: _rpc._id++,
545 method: 'call',
546 params: [
547 _luci2.globals.sid,
548 options.object,
549 options.method,
550 params
551 ]
552 };
553
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))
557 {
558 req.index = _rpc._batch.push(msg) - 1;
559 return _luci2.deferrable(msg);
560 }
561
562 /* call rpc */
563 return _rpc._call(msg, _rpc._call_cb);
564 };
565 }
566 };
567
568 this.uci = {
569
570 writable: function()
571 {
572 return _luci2.session.access('ubus', 'uci', 'commit');
573 },
574
575 add: _luci2.rpc.declare({
576 object: 'uci',
577 method: 'add',
578 params: [ 'config', 'type', 'name', 'values' ],
579 expect: { section: '' }
580 }),
581
582 apply: function()
583 {
584
585 },
586
587 configs: _luci2.rpc.declare({
588 object: 'uci',
589 method: 'configs',
590 expect: { configs: [ ] }
591 }),
592
593 _changes: _luci2.rpc.declare({
594 object: 'uci',
595 method: 'changes',
596 params: [ 'config' ],
597 expect: { changes: [ ] }
598 }),
599
600 changes: function(config)
601 {
602 if (typeof(config) == 'string')
603 return this._changes(config);
604
605 var configlist;
606 return this.configs().then(function(configs) {
607 _luci2.rpc.batch();
608 configlist = configs;
609
610 for (var i = 0; i < configs.length; i++)
611 _luci2.uci._changes(configs[i]);
612
613 return _luci2.rpc.flush();
614 }).then(function(changes) {
615 var rv = { };
616
617 for (var i = 0; i < configlist.length; i++)
618 if (changes[i].length)
619 rv[configlist[i]] = changes[i];
620
621 return rv;
622 });
623 },
624
625 commit: _luci2.rpc.declare({
626 object: 'uci',
627 method: 'commit',
628 params: [ 'config' ]
629 }),
630
631 _delete_one: _luci2.rpc.declare({
632 object: 'uci',
633 method: 'delete',
634 params: [ 'config', 'section', 'option' ]
635 }),
636
637 _delete_multiple: _luci2.rpc.declare({
638 object: 'uci',
639 method: 'delete',
640 params: [ 'config', 'section', 'options' ]
641 }),
642
643 'delete': function(config, section, option)
644 {
645 if ($.isArray(option))
646 return this._delete_multiple(config, section, option);
647 else
648 return this._delete_one(config, section, option);
649 },
650
651 delete_all: _luci2.rpc.declare({
652 object: 'uci',
653 method: 'delete',
654 params: [ 'config', 'type', 'match' ]
655 }),
656
657 _foreach: _luci2.rpc.declare({
658 object: 'uci',
659 method: 'get',
660 params: [ 'config', 'type' ],
661 expect: { values: { } }
662 }),
663
664 foreach: function(config, type, cb)
665 {
666 return this._foreach(config, type).then(function(sections) {
667 for (var s in sections)
668 cb(sections[s]);
669 });
670 },
671
672 get: _luci2.rpc.declare({
673 object: 'uci',
674 method: 'get',
675 params: [ 'config', 'section', 'option' ],
676 expect: { '': { } },
677 filter: function(data, params) {
678 if (typeof(params.option) == 'undefined')
679 return data.values ? data.values['.type'] : undefined;
680 else
681 return data.value;
682 }
683 }),
684
685 get_all: _luci2.rpc.declare({
686 object: 'uci',
687 method: 'get',
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;
695 return data;
696 }
697 }),
698
699 get_first: function(config, type, option)
700 {
701 return this._foreach(config, type).then(function(sections) {
702 for (var s in sections)
703 {
704 var val = (typeof(option) == 'string') ? sections[s][option] : sections[s]['.name'];
705
706 if (typeof(val) != 'undefined')
707 return val;
708 }
709
710 return undefined;
711 });
712 },
713
714 section: _luci2.rpc.declare({
715 object: 'uci',
716 method: 'add',
717 params: [ 'config', 'type', 'name', 'values' ],
718 expect: { section: '' }
719 }),
720
721 _set: _luci2.rpc.declare({
722 object: 'uci',
723 method: 'set',
724 params: [ 'config', 'section', 'values' ]
725 }),
726
727 set: function(config, section, option, value)
728 {
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 */
733
734 var values = { };
735 values[option] = value;
736
737 return this._set(config, section, values);
738 },
739
740 order: _luci2.rpc.declare({
741 object: 'uci',
742 method: 'order',
743 params: [ 'config', 'sections' ]
744 })
745 };
746
747 this.network = {
748 listNetworkNames: function() {
749 return _luci2.rpc.list('network.interface.*').then(function(list) {
750 var names = [ ];
751 for (var name in list)
752 if (name != 'network.interface.loopback')
753 names.push(name.substring(18));
754 names.sort();
755 return names;
756 });
757 },
758
759 listDeviceNames: _luci2.rpc.declare({
760 object: 'network.device',
761 method: 'status',
762 expect: { '': { } },
763 filter: function(data) {
764 var names = [ ];
765 for (var name in data)
766 if (name != 'lo')
767 names.push(name);
768 names.sort();
769 return names;
770 }
771 }),
772
773 getNetworkStatus: function()
774 {
775 var nets = [ ];
776 var devs = { };
777
778 return this.listNetworkNames().then(function(names) {
779 _luci2.rpc.batch();
780
781 for (var i = 0; i < names.length; i++)
782 _luci2.network.getInterfaceStatus(names[i]);
783
784 return _luci2.rpc.flush();
785 }).then(function(networks) {
786 for (var i = 0; i < networks.length; i++)
787 {
788 var net = nets[i] = networks[i];
789 var dev = net.l3_device || net.l2_device;
790 if (dev)
791 net.device = devs[dev] || (devs[dev] = { });
792 }
793
794 _luci2.rpc.batch();
795
796 for (var dev in devs)
797 _luci2.network.getDeviceStatus(dev);
798
799 return _luci2.rpc.flush();
800 }).then(function(devices) {
801 _luci2.rpc.batch();
802
803 for (var i = 0; i < devices.length; i++)
804 {
805 var brm = devices[i]['bridge-members'];
806 delete devices[i]['bridge-members'];
807
808 $.extend(devs[devices[i]['device']], devices[i]);
809
810 if (!brm)
811 continue;
812
813 devs[devices[i]['device']].subdevices = [ ];
814
815 for (var j = 0; j < brm.length; j++)
816 {
817 if (!devs[brm[j]])
818 {
819 devs[brm[j]] = { };
820 _luci2.network.getDeviceStatus(brm[j]);
821 }
822
823 devs[devices[i]['device']].subdevices[j] = devs[brm[j]];
824 }
825 }
826
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]);
831
832 _luci2.rpc.batch();
833
834 for (var dev in devs)
835 _luci2.wireless.getDeviceStatus(dev);
836
837 return _luci2.rpc.flush();
838 }).then(function(wifidevices) {
839 for (var i = 0; i < wifidevices.length; i++)
840 if (wifidevices[i])
841 devs[wifidevices[i]['device']].wireless = wifidevices[i];
842
843 nets.sort(function(a, b) {
844 if (a['interface'] < b['interface'])
845 return -1;
846 else if (a['interface'] > b['interface'])
847 return 1;
848 else
849 return 0;
850 });
851
852 return nets;
853 });
854 },
855
856 findWanInterfaces: function(cb)
857 {
858 return this.listNetworkNames().then(function(names) {
859 _luci2.rpc.batch();
860
861 for (var i = 0; i < names.length; i++)
862 _luci2.network.getInterfaceStatus(names[i]);
863
864 return _luci2.rpc.flush();
865 }).then(function(interfaces) {
866 var rv = [ undefined, undefined ];
867
868 for (var i = 0; i < interfaces.length; i++)
869 {
870 if (!interfaces[i].route)
871 continue;
872
873 for (var j = 0; j < interfaces[i].route.length; j++)
874 {
875 var rt = interfaces[i].route[j];
876
877 if (typeof(rt.table) != 'undefined')
878 continue;
879
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];
884 }
885 }
886
887 return rv;
888 });
889 },
890
891 getDHCPLeases: _luci2.rpc.declare({
892 object: 'luci2.network',
893 method: 'dhcp_leases',
894 expect: { leases: [ ] }
895 }),
896
897 getDHCPv6Leases: _luci2.rpc.declare({
898 object: 'luci2.network',
899 method: 'dhcp6_leases',
900 expect: { leases: [ ] }
901 }),
902
903 getRoutes: _luci2.rpc.declare({
904 object: 'luci2.network',
905 method: 'routes',
906 expect: { routes: [ ] }
907 }),
908
909 getIPv6Routes: _luci2.rpc.declare({
910 object: 'luci2.network',
911 method: 'routes',
912 expect: { routes: [ ] }
913 }),
914
915 getARPTable: _luci2.rpc.declare({
916 object: 'luci2.network',
917 method: 'arp_table',
918 expect: { entries: [ ] }
919 }),
920
921 getInterfaceStatus: _luci2.rpc.declare({
922 object: 'network.interface',
923 method: 'status',
924 params: [ 'interface' ],
925 expect: { '': { } },
926 filter: function(data, params) {
927 data['interface'] = params['interface'];
928 data['l2_device'] = data['device'];
929 delete data['device'];
930 return data;
931 }
932 }),
933
934 getDeviceStatus: _luci2.rpc.declare({
935 object: 'network.device',
936 method: 'status',
937 params: [ 'name' ],
938 expect: { '': { } },
939 filter: function(data, params) {
940 data['device'] = params['name'];
941 return data;
942 }
943 }),
944
945 getConntrackCount: _luci2.rpc.declare({
946 object: 'luci2.network',
947 method: 'conntrack_count',
948 expect: { '': { count: 0, limit: 0 } }
949 }),
950
951 listSwitchNames: _luci2.rpc.declare({
952 object: 'luci2.network',
953 method: 'switch_list',
954 expect: { switches: [ ] }
955 }),
956
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'];
967
968 delete data.vlan;
969 delete data.port;
970
971 return data;
972 }
973 }),
974
975 getSwitchStatus: _luci2.rpc.declare({
976 object: 'luci2.network',
977 method: 'switch_status',
978 params: [ 'switch' ],
979 expect: { ports: [ ] }
980 })
981 };
982
983 this.wireless = {
984 listDeviceNames: _luci2.rpc.declare({
985 object: 'iwinfo',
986 method: 'devices',
987 expect: { 'devices': [ ] },
988 filter: function(data) {
989 data.sort();
990 return data;
991 }
992 }),
993
994 getDeviceStatus: _luci2.rpc.declare({
995 object: 'iwinfo',
996 method: 'info',
997 params: [ 'device' ],
998 expect: { '': { } },
999 filter: function(data, params) {
1000 if (!$.isEmptyObject(data))
1001 {
1002 data['device'] = params['device'];
1003 return data;
1004 }
1005 return undefined;
1006 }
1007 }),
1008
1009 getAssocList: _luci2.rpc.declare({
1010 object: 'iwinfo',
1011 method: 'assoclist',
1012 params: [ 'device' ],
1013 expect: { results: [ ] },
1014 filter: function(data, params) {
1015 for (var i = 0; i < data.length; i++)
1016 data[i]['device'] = params['device'];
1017
1018 data.sort(function(a, b) {
1019 if (a.bssid < b.bssid)
1020 return -1;
1021 else if (a.bssid > b.bssid)
1022 return 1;
1023 else
1024 return 0;
1025 });
1026
1027 return data;
1028 }
1029 }),
1030
1031 getWirelessStatus: function() {
1032 return this.listDeviceNames().then(function(names) {
1033 _luci2.rpc.batch();
1034
1035 for (var i = 0; i < names.length; i++)
1036 _luci2.wireless.getDeviceStatus(names[i]);
1037
1038 return _luci2.rpc.flush();
1039 }).then(function(networks) {
1040 var rv = { };
1041
1042 var phy_attrs = [
1043 'country', 'channel', 'frequency', 'frequency_offset',
1044 'txpower', 'txpower_offset', 'hwmodes', 'hardware', 'phy'
1045 ];
1046
1047 var net_attrs = [
1048 'ssid', 'bssid', 'mode', 'quality', 'quality_max',
1049 'signal', 'noise', 'bitrate', 'encryption'
1050 ];
1051
1052 for (var i = 0; i < networks.length; i++)
1053 {
1054 var phy = rv[networks[i].phy] || (
1055 rv[networks[i].phy] = { networks: [ ] }
1056 );
1057
1058 var net = {
1059 device: networks[i].device
1060 };
1061
1062 for (var j = 0; j < phy_attrs.length; j++)
1063 phy[phy_attrs[j]] = networks[i][phy_attrs[j]];
1064
1065 for (var j = 0; j < net_attrs.length; j++)
1066 net[net_attrs[j]] = networks[i][net_attrs[j]];
1067
1068 phy.networks.push(net);
1069 }
1070
1071 return rv;
1072 });
1073 },
1074
1075 getAssocLists: function()
1076 {
1077 return this.listDeviceNames().then(function(names) {
1078 _luci2.rpc.batch();
1079
1080 for (var i = 0; i < names.length; i++)
1081 _luci2.wireless.getAssocList(names[i]);
1082
1083 return _luci2.rpc.flush();
1084 }).then(function(assoclists) {
1085 var rv = [ ];
1086
1087 for (var i = 0; i < assoclists.length; i++)
1088 for (var j = 0; j < assoclists[i].length; j++)
1089 rv.push(assoclists[i][j]);
1090
1091 return rv;
1092 });
1093 },
1094
1095 formatEncryption: function(enc)
1096 {
1097 var format_list = function(l, s)
1098 {
1099 var rv = [ ];
1100 for (var i = 0; i < l.length; i++)
1101 rv.push(l[i].toUpperCase());
1102 return rv.join(s ? s : ', ');
1103 }
1104
1105 if (!enc || !enc.enabled)
1106 return _luci2.tr('None');
1107
1108 if (enc.wep)
1109 {
1110 if (enc.wep.length == 2)
1111 return _luci2.tr('WEP Open/Shared') + ' (%s)'.format(format_list(enc.ciphers, ', '));
1112 else if (enc.wep[0] == 'shared')
1113 return _luci2.tr('WEP Shared Auth') + ' (%s)'.format(format_list(enc.ciphers, ', '));
1114 else
1115 return _luci2.tr('WEP Open System') + ' (%s)'.format(format_list(enc.ciphers, ', '));
1116 }
1117 else if (enc.wpa)
1118 {
1119 if (enc.wpa.length == 2)
1120 return _luci2.tr('mixed WPA/WPA2') + ' %s (%s)'.format(
1121 format_list(enc.authentication, '/'),
1122 format_list(enc.ciphers, ', ')
1123 );
1124 else if (enc.wpa[0] == 2)
1125 return 'WPA2 %s (%s)'.format(
1126 format_list(enc.authentication, '/'),
1127 format_list(enc.ciphers, ', ')
1128 );
1129 else
1130 return 'WPA %s (%s)'.format(
1131 format_list(enc.authentication, '/'),
1132 format_list(enc.ciphers, ', ')
1133 );
1134 }
1135
1136 return _luci2.tr('Unknown');
1137 }
1138 };
1139
1140 this.system = {
1141 getSystemInfo: _luci2.rpc.declare({
1142 object: 'system',
1143 method: 'info',
1144 expect: { '': { } }
1145 }),
1146
1147 getBoardInfo: _luci2.rpc.declare({
1148 object: 'system',
1149 method: 'board',
1150 expect: { '': { } }
1151 }),
1152
1153 getDiskInfo: _luci2.rpc.declare({
1154 object: 'luci2.system',
1155 method: 'diskfree',
1156 expect: { '': { } }
1157 }),
1158
1159 getInfo: function(cb)
1160 {
1161 _luci2.rpc.batch();
1162
1163 this.getSystemInfo();
1164 this.getBoardInfo();
1165 this.getDiskInfo();
1166
1167 return _luci2.rpc.flush().then(function(info) {
1168 var rv = { };
1169
1170 $.extend(rv, info[0]);
1171 $.extend(rv, info[1]);
1172 $.extend(rv, info[2]);
1173
1174 return rv;
1175 });
1176 },
1177
1178 getProcessList: _luci2.rpc.declare({
1179 object: 'luci2.system',
1180 method: 'process_list',
1181 expect: { processes: [ ] },
1182 filter: function(data) {
1183 data.sort(function(a, b) { return a.pid - b.pid });
1184 return data;
1185 }
1186 }),
1187
1188 getSystemLog: _luci2.rpc.declare({
1189 object: 'luci2.system',
1190 method: 'syslog',
1191 expect: { log: '' }
1192 }),
1193
1194 getKernelLog: _luci2.rpc.declare({
1195 object: 'luci2.system',
1196 method: 'dmesg',
1197 expect: { log: '' }
1198 }),
1199
1200 getZoneInfo: function(cb)
1201 {
1202 return $.getJSON(_luci2.globals.resource + '/zoneinfo.json', cb);
1203 },
1204
1205 sendSignal: _luci2.rpc.declare({
1206 object: 'luci2.system',
1207 method: 'process_signal',
1208 params: [ 'pid', 'signal' ],
1209 filter: function(data) {
1210 return (data == 0);
1211 }
1212 }),
1213
1214 initList: _luci2.rpc.declare({
1215 object: 'luci2.system',
1216 method: 'init_list',
1217 expect: { initscripts: [ ] },
1218 filter: function(data) {
1219 data.sort(function(a, b) { return (a.start || 0) - (b.start || 0) });
1220 return data;
1221 }
1222 }),
1223
1224 initEnabled: function(init, cb)
1225 {
1226 return this.initList().then(function(list) {
1227 for (var i = 0; i < list.length; i++)
1228 if (list[i].name == init)
1229 return !!list[i].enabled;
1230
1231 return false;
1232 });
1233 },
1234
1235 initRun: _luci2.rpc.declare({
1236 object: 'luci2.system',
1237 method: 'init_action',
1238 params: [ 'name', 'action' ],
1239 filter: function(data) {
1240 return (data == 0);
1241 }
1242 }),
1243
1244 initStart: function(init, cb) { return _luci2.system.initRun(init, 'start', cb) },
1245 initStop: function(init, cb) { return _luci2.system.initRun(init, 'stop', cb) },
1246 initRestart: function(init, cb) { return _luci2.system.initRun(init, 'restart', cb) },
1247 initReload: function(init, cb) { return _luci2.system.initRun(init, 'reload', cb) },
1248 initEnable: function(init, cb) { return _luci2.system.initRun(init, 'enable', cb) },
1249 initDisable: function(init, cb) { return _luci2.system.initRun(init, 'disable', cb) },
1250
1251
1252 getRcLocal: _luci2.rpc.declare({
1253 object: 'luci2.system',
1254 method: 'rclocal_get',
1255 expect: { data: '' }
1256 }),
1257
1258 setRcLocal: _luci2.rpc.declare({
1259 object: 'luci2.system',
1260 method: 'rclocal_set',
1261 params: [ 'data' ]
1262 }),
1263
1264
1265 getCrontab: _luci2.rpc.declare({
1266 object: 'luci2.system',
1267 method: 'crontab_get',
1268 expect: { data: '' }
1269 }),
1270
1271 setCrontab: _luci2.rpc.declare({
1272 object: 'luci2.system',
1273 method: 'crontab_set',
1274 params: [ 'data' ]
1275 }),
1276
1277
1278 getSSHKeys: _luci2.rpc.declare({
1279 object: 'luci2.system',
1280 method: 'sshkeys_get',
1281 expect: { keys: [ ] }
1282 }),
1283
1284 setSSHKeys: _luci2.rpc.declare({
1285 object: 'luci2.system',
1286 method: 'sshkeys_set',
1287 params: [ 'keys' ]
1288 }),
1289
1290
1291 setPassword: _luci2.rpc.declare({
1292 object: 'luci2.system',
1293 method: 'password_set',
1294 params: [ 'user', 'password' ]
1295 }),
1296
1297
1298 listLEDs: _luci2.rpc.declare({
1299 object: 'luci2.system',
1300 method: 'led_list',
1301 expect: { leds: [ ] }
1302 }),
1303
1304 listUSBDevices: _luci2.rpc.declare({
1305 object: 'luci2.system',
1306 method: 'usb_list',
1307 expect: { devices: [ ] }
1308 }),
1309
1310
1311 testUpgrade: _luci2.rpc.declare({
1312 object: 'luci2.system',
1313 method: 'upgrade_test',
1314 expect: { '': { } }
1315 }),
1316
1317 startUpgrade: _luci2.rpc.declare({
1318 object: 'luci2.system',
1319 method: 'upgrade_start',
1320 params: [ 'keep' ]
1321 }),
1322
1323 cleanUpgrade: _luci2.rpc.declare({
1324 object: 'luci2.system',
1325 method: 'upgrade_clean'
1326 }),
1327
1328
1329 restoreBackup: _luci2.rpc.declare({
1330 object: 'luci2.system',
1331 method: 'backup_restore'
1332 }),
1333
1334 cleanBackup: _luci2.rpc.declare({
1335 object: 'luci2.system',
1336 method: 'backup_clean'
1337 }),
1338
1339
1340 getBackupConfig: _luci2.rpc.declare({
1341 object: 'luci2.system',
1342 method: 'backup_config_get',
1343 expect: { config: '' }
1344 }),
1345
1346 setBackupConfig: _luci2.rpc.declare({
1347 object: 'luci2.system',
1348 method: 'backup_config_set',
1349 params: [ 'data' ]
1350 }),
1351
1352
1353 listBackup: _luci2.rpc.declare({
1354 object: 'luci2.system',
1355 method: 'backup_list',
1356 expect: { files: [ ] }
1357 }),
1358
1359
1360 testReset: _luci2.rpc.declare({
1361 object: 'luci2.system',
1362 method: 'reset_test',
1363 expect: { supported: false }
1364 }),
1365
1366 startReset: _luci2.rpc.declare({
1367 object: 'luci2.system',
1368 method: 'reset_start'
1369 }),
1370
1371
1372 performReboot: _luci2.rpc.declare({
1373 object: 'luci2.system',
1374 method: 'reboot'
1375 })
1376 };
1377
1378 this.opkg = {
1379 updateLists: _luci2.rpc.declare({
1380 object: 'luci2.opkg',
1381 method: 'update',
1382 expect: { '': { } }
1383 }),
1384
1385 _allPackages: _luci2.rpc.declare({
1386 object: 'luci2.opkg',
1387 method: 'list',
1388 params: [ 'offset', 'limit', 'pattern' ],
1389 expect: { '': { } }
1390 }),
1391
1392 _installedPackages: _luci2.rpc.declare({
1393 object: 'luci2.opkg',
1394 method: 'list_installed',
1395 params: [ 'offset', 'limit', 'pattern' ],
1396 expect: { '': { } }
1397 }),
1398
1399 _findPackages: _luci2.rpc.declare({
1400 object: 'luci2.opkg',
1401 method: 'find',
1402 params: [ 'offset', 'limit', 'pattern' ],
1403 expect: { '': { } }
1404 }),
1405
1406 _fetchPackages: function(action, offset, limit, pattern)
1407 {
1408 var packages = [ ];
1409
1410 return action(offset, limit, pattern).then(function(list) {
1411 if (!list.total || !list.packages)
1412 return { length: 0, total: 0 };
1413
1414 packages.push.apply(packages, list.packages);
1415 packages.total = list.total;
1416
1417 if (limit <= 0)
1418 limit = list.total;
1419
1420 if (packages.length >= limit)
1421 return packages;
1422
1423 _luci2.rpc.batch();
1424
1425 for (var i = offset + packages.length; i < limit; i += 100)
1426 action(i, (Math.min(i + 100, limit) % 100) || 100, pattern);
1427
1428 return _luci2.rpc.flush();
1429 }).then(function(lists) {
1430 for (var i = 0; i < lists.length; i++)
1431 {
1432 if (!lists[i].total || !lists[i].packages)
1433 continue;
1434
1435 packages.push.apply(packages, lists[i].packages);
1436 packages.total = lists[i].total;
1437 }
1438
1439 return packages;
1440 });
1441 },
1442
1443 listPackages: function(offset, limit, pattern)
1444 {
1445 return _luci2.opkg._fetchPackages(_luci2.opkg._allPackages, offset, limit, pattern);
1446 },
1447
1448 installedPackages: function(offset, limit, pattern)
1449 {
1450 return _luci2.opkg._fetchPackages(_luci2.opkg._installedPackages, offset, limit, pattern);
1451 },
1452
1453 findPackages: function(offset, limit, pattern)
1454 {
1455 return _luci2.opkg._fetchPackages(_luci2.opkg._findPackages, offset, limit, pattern);
1456 },
1457
1458 installPackage: _luci2.rpc.declare({
1459 object: 'luci2.opkg',
1460 method: 'install',
1461 params: [ 'package' ],
1462 expect: { '': { } }
1463 }),
1464
1465 removePackage: _luci2.rpc.declare({
1466 object: 'luci2.opkg',
1467 method: 'remove',
1468 params: [ 'package' ],
1469 expect: { '': { } }
1470 }),
1471
1472 getConfig: _luci2.rpc.declare({
1473 object: 'luci2.opkg',
1474 method: 'config_get',
1475 expect: { config: '' }
1476 }),
1477
1478 setConfig: _luci2.rpc.declare({
1479 object: 'luci2.opkg',
1480 method: 'config_set',
1481 params: [ 'data' ]
1482 })
1483 };
1484
1485 this.session = {
1486
1487 login: _luci2.rpc.declare({
1488 object: 'session',
1489 method: 'login',
1490 params: [ 'username', 'password' ],
1491 expect: { '': { } }
1492 }),
1493
1494 access: _luci2.rpc.declare({
1495 object: 'session',
1496 method: 'access',
1497 params: [ 'scope', 'object', 'function' ],
1498 expect: { access: false }
1499 }),
1500
1501 isAlive: function()
1502 {
1503 return _luci2.session.access('ubus', 'session', 'access');
1504 },
1505
1506 startHeartbeat: function()
1507 {
1508 this._hearbeatInterval = window.setInterval(function() {
1509 _luci2.session.isAlive().then(function(alive) {
1510 if (!alive)
1511 {
1512 _luci2.session.stopHeartbeat();
1513 _luci2.ui.login(true);
1514 }
1515
1516 });
1517 }, _luci2.globals.timeout * 2);
1518 },
1519
1520 stopHeartbeat: function()
1521 {
1522 if (typeof(this._hearbeatInterval) != 'undefined')
1523 {
1524 window.clearInterval(this._hearbeatInterval);
1525 delete this._hearbeatInterval;
1526 }
1527 }
1528 };
1529
1530 this.ui = {
1531
1532 saveScrollTop: function()
1533 {
1534 this._scroll_top = $(document).scrollTop();
1535 },
1536
1537 restoreScrollTop: function()
1538 {
1539 if (typeof(this._scroll_top) == 'undefined')
1540 return;
1541
1542 $(document).scrollTop(this._scroll_top);
1543
1544 delete this._scroll_top;
1545 },
1546
1547 loading: function(enable)
1548 {
1549 var win = $(window);
1550 var body = $('body');
1551
1552 var state = _luci2.ui._loading || (_luci2.ui._loading = {
1553 modal: $('<div />')
1554 .addClass('cbi-modal-loader')
1555 .append($('<div />').text(_luci2.tr('Loading data...')))
1556 .appendTo(body)
1557 });
1558
1559 if (enable)
1560 {
1561 body.css('overflow', 'hidden');
1562 body.css('padding', 0);
1563 body.css('width', win.width());
1564 body.css('height', win.height());
1565 state.modal.css('width', win.width());
1566 state.modal.css('height', win.height());
1567 state.modal.show();
1568 }
1569 else
1570 {
1571 state.modal.hide();
1572 body.css('overflow', '');
1573 body.css('padding', '');
1574 body.css('width', '');
1575 body.css('height', '');
1576 }
1577 },
1578
1579 dialog: function(title, content, options)
1580 {
1581 var win = $(window);
1582 var body = $('body');
1583
1584 var state = _luci2.ui._dialog || (_luci2.ui._dialog = {
1585 dialog: $('<div />')
1586 .addClass('cbi-modal-dialog')
1587 .append($('<div />')
1588 .append($('<div />')
1589 .addClass('cbi-modal-dialog-header'))
1590 .append($('<div />')
1591 .addClass('cbi-modal-dialog-body'))
1592 .append($('<div />')
1593 .addClass('cbi-modal-dialog-footer')
1594 .append($('<button />')
1595 .addClass('cbi-button')
1596 .text(_luci2.tr('Close'))
1597 .click(function() {
1598 $('body')
1599 .css('overflow', '')
1600 .css('padding', '')
1601 .css('width', '')
1602 .css('height', '');
1603
1604 $(this).parent().parent().parent().hide();
1605 }))))
1606 .appendTo(body)
1607 });
1608
1609 if (typeof(options) != 'object')
1610 options = { };
1611
1612 if (title === false)
1613 {
1614 body
1615 .css('overflow', '')
1616 .css('padding', '')
1617 .css('width', '')
1618 .css('height', '');
1619
1620 state.dialog.hide();
1621
1622 return;
1623 }
1624
1625 var cnt = state.dialog.children().children('div.cbi-modal-dialog-body');
1626 var ftr = state.dialog.children().children('div.cbi-modal-dialog-footer');
1627
1628 ftr.empty();
1629
1630 if (options.style == 'confirm')
1631 {
1632 ftr.append($('<button />')
1633 .addClass('cbi-button')
1634 .text(_luci2.tr('Ok'))
1635 .click(options.confirm || function() { _luci2.ui.dialog(false) }));
1636
1637 ftr.append($('<button />')
1638 .addClass('cbi-button')
1639 .text(_luci2.tr('Cancel'))
1640 .click(options.cancel || function() { _luci2.ui.dialog(false) }));
1641 }
1642 else if (options.style == 'close')
1643 {
1644 ftr.append($('<button />')
1645 .addClass('cbi-button')
1646 .text(_luci2.tr('Close'))
1647 .click(options.close || function() { _luci2.ui.dialog(false) }));
1648 }
1649 else if (options.style == 'wait')
1650 {
1651 ftr.append($('<button />')
1652 .addClass('cbi-button')
1653 .text(_luci2.tr('Close'))
1654 .attr('disabled', true));
1655 }
1656
1657 state.dialog.find('div.cbi-modal-dialog-header').text(title);
1658 state.dialog.show();
1659
1660 cnt
1661 .css('max-height', Math.floor(win.height() * 0.70) + 'px')
1662 .empty()
1663 .append(content);
1664
1665 state.dialog.children()
1666 .css('margin-top', -Math.floor(state.dialog.children().height() / 2) + 'px');
1667
1668 body.css('overflow', 'hidden');
1669 body.css('padding', 0);
1670 body.css('width', win.width());
1671 body.css('height', win.height());
1672 state.dialog.css('width', win.width());
1673 state.dialog.css('height', win.height());
1674 },
1675
1676 upload: function(title, content, options)
1677 {
1678 var state = _luci2.ui._upload || (_luci2.ui._upload = {
1679 form: $('<form />')
1680 .attr('method', 'post')
1681 .attr('action', '/cgi-bin/luci-upload')
1682 .attr('enctype', 'multipart/form-data')
1683 .attr('target', 'cbi-fileupload-frame')
1684 .append($('<p />'))
1685 .append($('<input />')
1686 .attr('type', 'hidden')
1687 .attr('name', 'sessionid'))
1688 .append($('<input />')
1689 .attr('type', 'hidden')
1690 .attr('name', 'filename'))
1691 .append($('<input />')
1692 .attr('type', 'file')
1693 .attr('name', 'filedata')
1694 .addClass('cbi-input-file'))
1695 .append($('<div />')
1696 .css('width', '100%')
1697 .addClass('progressbar')
1698 .addClass('intermediate')
1699 .append($('<div />')
1700 .css('width', '100%')))
1701 .append($('<iframe />')
1702 .attr('name', 'cbi-fileupload-frame')
1703 .css('width', '1px')
1704 .css('height', '1px')
1705 .css('visibility', 'hidden')),
1706
1707 finish_cb: function(ev) {
1708 $(this).off('load');
1709
1710 var body = (this.contentDocument || this.contentWindow.document).body;
1711 if (body.firstChild.tagName.toLowerCase() == 'pre')
1712 body = body.firstChild;
1713
1714 var json;
1715 try {
1716 json = $.parseJSON(body.innerHTML);
1717 } catch(e) {
1718 json = {
1719 message: _luci2.tr('Invalid server response received'),
1720 error: [ -1, _luci2.tr('Invalid data') ]
1721 };
1722 };
1723
1724 if (json.error)
1725 {
1726 L.ui.dialog(L.tr('File upload'), [
1727 $('<p />').text(_luci2.tr('The file upload failed with the server response below:')),
1728 $('<pre />').addClass('alert-message').text(json.message || json.error[1]),
1729 $('<p />').text(_luci2.tr('In case of network problems try uploading the file again.'))
1730 ], { style: 'close' });
1731 }
1732 else if (typeof(state.success_cb) == 'function')
1733 {
1734 state.success_cb(json);
1735 }
1736 },
1737
1738 confirm_cb: function() {
1739 var f = state.form.find('.cbi-input-file');
1740 var b = state.form.find('.progressbar');
1741 var p = state.form.find('p');
1742
1743 if (!f.val())
1744 return;
1745
1746 state.form.find('iframe').on('load', state.finish_cb);
1747 state.form.submit();
1748
1749 f.hide();
1750 b.show();
1751 p.text(_luci2.tr('File upload in progress …'));
1752
1753 state.form.parent().parent().find('button').prop('disabled', true);
1754 }
1755 });
1756
1757 state.form.find('.progressbar').hide();
1758 state.form.find('.cbi-input-file').val('').show();
1759 state.form.find('p').text(content || _luci2.tr('Select the file to upload and press "%s" to proceed.').format(_luci2.tr('Ok')));
1760
1761 state.form.find('[name=sessionid]').val(_luci2.globals.sid);
1762 state.form.find('[name=filename]').val(options.filename);
1763
1764 state.success_cb = options.success;
1765
1766 _luci2.ui.dialog(title || _luci2.tr('File upload'), state.form, {
1767 style: 'confirm',
1768 confirm: state.confirm_cb
1769 });
1770 },
1771
1772 reconnect: function()
1773 {
1774 var protocols = (location.protocol == 'https:') ? [ 'http', 'https' ] : [ 'http' ];
1775 var ports = (location.protocol == 'https:') ? [ 80, location.port || 443 ] : [ location.port || 80 ];
1776 var address = location.hostname.match(/^[A-Fa-f0-9]*:[A-Fa-f0-9:]+$/) ? '[' + location.hostname + ']' : location.hostname;
1777 var images = $();
1778 var interval, timeout;
1779
1780 _luci2.ui.dialog(
1781 _luci2.tr('Waiting for device'), [
1782 $('<p />').text(_luci2.tr('Please stand by while the device is reconfiguring …')),
1783 $('<div />')
1784 .css('width', '100%')
1785 .addClass('progressbar')
1786 .addClass('intermediate')
1787 .append($('<div />')
1788 .css('width', '100%'))
1789 ], { style: 'wait' }
1790 );
1791
1792 for (var i = 0; i < protocols.length; i++)
1793 images = images.add($('<img />').attr('url', protocols[i] + '://' + address + ':' + ports[i]));
1794
1795 //_luci2.network.getNetworkStatus(function(s) {
1796 // for (var i = 0; i < protocols.length; i++)
1797 // {
1798 // for (var j = 0; j < s.length; j++)
1799 // {
1800 // for (var k = 0; k < s[j]['ipv4-address'].length; k++)
1801 // images = images.add($('<img />').attr('url', protocols[i] + '://' + s[j]['ipv4-address'][k].address + ':' + ports[i]));
1802 //
1803 // for (var l = 0; l < s[j]['ipv6-address'].length; l++)
1804 // images = images.add($('<img />').attr('url', protocols[i] + '://[' + s[j]['ipv6-address'][l].address + ']:' + ports[i]));
1805 // }
1806 // }
1807 //}).then(function() {
1808 images.on('load', function() {
1809 var url = this.getAttribute('url');
1810 _luci2.session.isAlive().then(function(access) {
1811 if (access)
1812 {
1813 window.clearTimeout(timeout);
1814 window.clearInterval(interval);
1815 _luci2.ui.dialog(false);
1816 images = null;
1817 }
1818 else
1819 {
1820 location.href = url;
1821 }
1822 });
1823 });
1824
1825 interval = window.setInterval(function() {
1826 images.each(function() {
1827 this.setAttribute('src', this.getAttribute('url') + _luci2.globals.resource + '/icons/loading.gif?r=' + Math.random());
1828 });
1829 }, 5000);
1830
1831 timeout = window.setTimeout(function() {
1832 window.clearInterval(interval);
1833 images.off('load');
1834
1835 _luci2.ui.dialog(
1836 _luci2.tr('Device not responding'),
1837 _luci2.tr('The device was not responding within 180 seconds, you might need to manually reconnect your computer or use SSH to regain access.'),
1838 { style: 'close' }
1839 );
1840 }, 180000);
1841 //});
1842 },
1843
1844 login: function(invalid)
1845 {
1846 var state = _luci2.ui._login || (_luci2.ui._login = {
1847 form: $('<form />')
1848 .attr('target', '')
1849 .attr('method', 'post')
1850 .append($('<p />')
1851 .addClass('alert-message')
1852 .text(_luci2.tr('Wrong username or password given!')))
1853 .append($('<p />')
1854 .append($('<label />')
1855 .text(_luci2.tr('Username'))
1856 .append($('<br />'))
1857 .append($('<input />')
1858 .attr('type', 'text')
1859 .attr('name', 'username')
1860 .attr('value', 'root')
1861 .addClass('cbi-input-text')
1862 .keypress(function(ev) {
1863 if (ev.which == 10 || ev.which == 13)
1864 state.confirm_cb();
1865 }))))
1866 .append($('<p />')
1867 .append($('<label />')
1868 .text(_luci2.tr('Password'))
1869 .append($('<br />'))
1870 .append($('<input />')
1871 .attr('type', 'password')
1872 .attr('name', 'password')
1873 .addClass('cbi-input-password')
1874 .keypress(function(ev) {
1875 if (ev.which == 10 || ev.which == 13)
1876 state.confirm_cb();
1877 }))))
1878 .append($('<p />')
1879 .text(_luci2.tr('Enter your username and password above, then click "%s" to proceed.').format(_luci2.tr('Ok')))),
1880
1881 response_cb: function(response) {
1882 if (!response.ubus_rpc_session)
1883 {
1884 _luci2.ui.login(true);
1885 }
1886 else
1887 {
1888 _luci2.globals.sid = response.ubus_rpc_session;
1889 _luci2.setHash('id', _luci2.globals.sid);
1890 _luci2.session.startHeartbeat();
1891 _luci2.ui.dialog(false);
1892 state.deferred.resolve();
1893 }
1894 },
1895
1896 confirm_cb: function() {
1897 var u = state.form.find('[name=username]').val();
1898 var p = state.form.find('[name=password]').val();
1899
1900 if (!u)
1901 return;
1902
1903 _luci2.ui.dialog(
1904 _luci2.tr('Logging in'), [
1905 $('<p />').text(_luci2.tr('Log in in progress …')),
1906 $('<div />')
1907 .css('width', '100%')
1908 .addClass('progressbar')
1909 .addClass('intermediate')
1910 .append($('<div />')
1911 .css('width', '100%'))
1912 ], { style: 'wait' }
1913 );
1914
1915 _luci2.globals.sid = '00000000000000000000000000000000';
1916 _luci2.session.login(u, p).then(state.response_cb);
1917 }
1918 });
1919
1920 if (!state.deferred || state.deferred.state() != 'pending')
1921 state.deferred = $.Deferred();
1922
1923 /* try to find sid from hash */
1924 var sid = _luci2.getHash('id');
1925 if (sid && sid.match(/^[a-f0-9]{32}$/))
1926 {
1927 _luci2.globals.sid = sid;
1928 _luci2.session.isAlive().then(function(access) {
1929 if (access)
1930 {
1931 _luci2.session.startHeartbeat();
1932 state.deferred.resolve();
1933 }
1934 else
1935 {
1936 _luci2.setHash('id', undefined);
1937 _luci2.ui.login();
1938 }
1939 });
1940
1941 return state.deferred;
1942 }
1943
1944 if (invalid)
1945 state.form.find('.alert-message').show();
1946 else
1947 state.form.find('.alert-message').hide();
1948
1949 _luci2.ui.dialog(_luci2.tr('Authorization Required'), state.form, {
1950 style: 'confirm',
1951 confirm: state.confirm_cb
1952 });
1953
1954 state.form.find('[name=password]').focus();
1955
1956 return state.deferred;
1957 },
1958
1959 cryptPassword: _luci2.rpc.declare({
1960 object: 'luci2.ui',
1961 method: 'crypt',
1962 params: [ 'data' ],
1963 expect: { crypt: '' }
1964 }),
1965
1966
1967 _acl_merge_scope: function(acl_scope, scope)
1968 {
1969 if ($.isArray(scope))
1970 {
1971 for (var i = 0; i < scope.length; i++)
1972 acl_scope[scope[i]] = true;
1973 }
1974 else if ($.isPlainObject(scope))
1975 {
1976 for (var object_name in scope)
1977 {
1978 if (!$.isArray(scope[object_name]))
1979 continue;
1980
1981 var acl_object = acl_scope[object_name] || (acl_scope[object_name] = { });
1982
1983 for (var i = 0; i < scope[object_name].length; i++)
1984 acl_object[scope[object_name][i]] = true;
1985 }
1986 }
1987 },
1988
1989 _acl_merge_permission: function(acl_perm, perm)
1990 {
1991 if ($.isPlainObject(perm))
1992 {
1993 for (var scope_name in perm)
1994 {
1995 var acl_scope = acl_perm[scope_name] || (acl_perm[scope_name] = { });
1996 this._acl_merge_scope(acl_scope, perm[scope_name]);
1997 }
1998 }
1999 },
2000
2001 _acl_merge_group: function(acl_group, group)
2002 {
2003 if ($.isPlainObject(group))
2004 {
2005 if (!acl_group.description)
2006 acl_group.description = group.description;
2007
2008 if (group.read)
2009 {
2010 var acl_perm = acl_group.read || (acl_group.read = { });
2011 this._acl_merge_permission(acl_perm, group.read);
2012 }
2013
2014 if (group.write)
2015 {
2016 var acl_perm = acl_group.write || (acl_group.write = { });
2017 this._acl_merge_permission(acl_perm, group.write);
2018 }
2019 }
2020 },
2021
2022 _acl_merge_tree: function(acl_tree, tree)
2023 {
2024 if ($.isPlainObject(tree))
2025 {
2026 for (var group_name in tree)
2027 {
2028 var acl_group = acl_tree[group_name] || (acl_tree[group_name] = { });
2029 this._acl_merge_group(acl_group, tree[group_name]);
2030 }
2031 }
2032 },
2033
2034 listAvailableACLs: _luci2.rpc.declare({
2035 object: 'luci2.ui',
2036 method: 'acls',
2037 expect: { acls: [ ] },
2038 filter: function(trees) {
2039 var acl_tree = { };
2040 for (var i = 0; i < trees.length; i++)
2041 _luci2.ui._acl_merge_tree(acl_tree, trees[i]);
2042 return acl_tree;
2043 }
2044 }),
2045
2046 renderMainMenu: _luci2.rpc.declare({
2047 object: 'luci2.ui',
2048 method: 'menu',
2049 expect: { menu: { } },
2050 filter: function(entries) {
2051 _luci2.globals.mainMenu = new _luci2.ui.menu();
2052 _luci2.globals.mainMenu.entries(entries);
2053
2054 $('#mainmenu')
2055 .empty()
2056 .append(_luci2.globals.mainMenu.render(0, 1));
2057 }
2058 }),
2059
2060 renderViewMenu: function()
2061 {
2062 $('#viewmenu')
2063 .empty()
2064 .append(_luci2.globals.mainMenu.render(2, 900));
2065 },
2066
2067 renderView: function(node)
2068 {
2069 var name = node.view.split(/\//).join('.');
2070
2071 if (_luci2.globals.currentView)
2072 _luci2.globals.currentView.finish();
2073
2074 _luci2.ui.renderViewMenu();
2075
2076 if (!_luci2._views)
2077 _luci2._views = { };
2078
2079 _luci2.setHash('view', node.view);
2080
2081 if (_luci2._views[name] instanceof _luci2.ui.view)
2082 {
2083 _luci2.globals.currentView = _luci2._views[name];
2084 return _luci2._views[name].render();
2085 }
2086
2087 var url = _luci2.globals.resource + '/view/' + name + '.js';
2088
2089 return $.ajax(url, {
2090 method: 'GET',
2091 cache: true,
2092 dataType: 'text'
2093 }).then(function(data) {
2094 try {
2095 var viewConstructorSource = (
2096 '(function(L, $) { ' +
2097 'return %s' +
2098 '})(_luci2, $);\n\n' +
2099 '//@ sourceURL=%s'
2100 ).format(data, url);
2101
2102 var viewConstructor = eval(viewConstructorSource);
2103
2104 _luci2._views[name] = new viewConstructor({
2105 name: name,
2106 acls: node.write || { }
2107 });
2108
2109 _luci2.globals.currentView = _luci2._views[name];
2110 return _luci2._views[name].render();
2111 }
2112 catch(e) {
2113 alert('Unable to instantiate view "%s": %s'.format(url, e));
2114 };
2115
2116 return $.Deferred().resolve();
2117 });
2118 },
2119
2120 updateHostname: function()
2121 {
2122 return _luci2.system.getBoardInfo().then(function(info) {
2123 if (info.hostname)
2124 $('#hostname').text(info.hostname);
2125 });
2126 },
2127
2128 updateChanges: function()
2129 {
2130 return _luci2.uci.changes().then(function(changes) {
2131 var n = 0;
2132 var html = '';
2133
2134 for (var config in changes)
2135 {
2136 var log = [ ];
2137
2138 for (var i = 0; i < changes[config].length; i++)
2139 {
2140 var c = changes[config][i];
2141
2142 switch (c[0])
2143 {
2144 case 'order':
2145 break;
2146
2147 case 'remove':
2148 if (c.length < 3)
2149 log.push('uci delete %s.<del>%s</del>'.format(config, c[1]));
2150 else
2151 log.push('uci delete %s.%s.<del>%s</del>'.format(config, c[1], c[2]));
2152 break;
2153
2154 case 'rename':
2155 if (c.length < 4)
2156 log.push('uci rename %s.<ins>%s=<strong>%s</strong></ins>'.format(config, c[1], c[2], c[3]));
2157 else
2158 log.push('uci rename %s.%s.<ins>%s=<strong>%s</strong></ins>'.format(config, c[1], c[2], c[3], c[4]));
2159 break;
2160
2161 case 'add':
2162 log.push('uci add %s <ins>%s</ins> (= <ins><strong>%s</strong></ins>)'.format(config, c[2], c[1]));
2163 break;
2164
2165 case 'list-add':
2166 log.push('uci add_list %s.%s.<ins>%s=<strong>%s</strong></ins>'.format(config, c[1], c[2], c[3], c[4]));
2167 break;
2168
2169 case 'list-del':
2170 log.push('uci del_list %s.%s.<del>%s=<strong>%s</strong></del>'.format(config, c[1], c[2], c[3], c[4]));
2171 break;
2172
2173 case 'set':
2174 if (c.length < 4)
2175 log.push('uci set %s.<ins>%s=<strong>%s</strong></ins>'.format(config, c[1], c[2]));
2176 else
2177 log.push('uci set %s.%s.<ins>%s=<strong>%s</strong></ins>'.format(config, c[1], c[2], c[3], c[4]));
2178 break;
2179 }
2180 }
2181
2182 html += '<code>/etc/config/%s</code><pre class="uci-changes">%s</pre>'.format(config, log.join('\n'));
2183 n += changes[config].length;
2184 }
2185
2186 if (n > 0)
2187 $('#changes')
2188 .empty()
2189 .show()
2190 .append($('<a />')
2191 .attr('href', '#')
2192 .addClass('label')
2193 .addClass('notice')
2194 .text(_luci2.trcp('Pending configuration changes', '1 change', '%d changes', n).format(n))
2195 .click(function(ev) {
2196 _luci2.ui.dialog(_luci2.tr('Staged configuration changes'), html, { style: 'close' });
2197 ev.preventDefault();
2198 }));
2199 else
2200 $('#changes')
2201 .hide();
2202 });
2203 },
2204
2205 init: function()
2206 {
2207 _luci2.ui.loading(true);
2208
2209 $.when(
2210 _luci2.ui.updateHostname(),
2211 _luci2.ui.updateChanges(),
2212 _luci2.ui.renderMainMenu()
2213 ).then(function() {
2214 _luci2.ui.renderView(_luci2.globals.defaultNode).then(function() {
2215 _luci2.ui.loading(false);
2216 })
2217 });
2218 }
2219 };
2220
2221 var AbstractWidget = Class.extend({
2222 i18n: function(text) {
2223 return text;
2224 },
2225
2226 toString: function() {
2227 var x = document.createElement('div');
2228 x.appendChild(this.render());
2229
2230 return x.innerHTML;
2231 },
2232
2233 insertInto: function(id) {
2234 return $(id).empty().append(this.render());
2235 }
2236 });
2237
2238 this.ui.view = AbstractWidget.extend({
2239 _fetch_template: function()
2240 {
2241 return $.ajax(_luci2.globals.resource + '/template/' + this.options.name + '.htm', {
2242 method: 'GET',
2243 cache: true,
2244 dataType: 'text',
2245 success: function(data) {
2246 data = data.replace(/<%([#:=])?(.+?)%>/g, function(match, p1, p2) {
2247 p2 = p2.replace(/^\s+/, '').replace(/\s+$/, '');
2248 switch (p1)
2249 {
2250 case '#':
2251 return '';
2252
2253 case ':':
2254 return _luci2.tr(p2);
2255
2256 case '=':
2257 return _luci2.globals[p2] || '';
2258
2259 default:
2260 return '(?' + match + ')';
2261 }
2262 });
2263
2264 $('#maincontent').append(data);
2265 }
2266 });
2267 },
2268
2269 execute: function()
2270 {
2271 throw "Not implemented";
2272 },
2273
2274 render: function()
2275 {
2276 var container = $('#maincontent');
2277
2278 container.empty();
2279
2280 if (this.title)
2281 container.append($('<h2 />').append(this.title));
2282
2283 if (this.description)
2284 container.append($('<div />').addClass('cbi-map-descr').append(this.description));
2285
2286 var self = this;
2287 return this._fetch_template().then(function() {
2288 return _luci2.deferrable(self.execute());
2289 });
2290 },
2291
2292 repeat: function(func, interval)
2293 {
2294 var self = this;
2295
2296 if (!self._timeouts)
2297 self._timeouts = [ ];
2298
2299 var index = self._timeouts.length;
2300
2301 if (typeof(interval) != 'number')
2302 interval = 5000;
2303
2304 var setTimer, runTimer;
2305
2306 setTimer = function() {
2307 self._timeouts[index] = window.setTimeout(runTimer, interval);
2308 };
2309
2310 runTimer = function() {
2311 _luci2.deferrable(func.call(self)).then(setTimer);
2312 };
2313
2314 runTimer();
2315 },
2316
2317 finish: function()
2318 {
2319 if ($.isArray(this._timeouts))
2320 {
2321 for (var i = 0; i < this._timeouts.length; i++)
2322 window.clearTimeout(this._timeouts[i]);
2323
2324 delete this._timeouts;
2325 }
2326 }
2327 });
2328
2329 this.ui.menu = AbstractWidget.extend({
2330 init: function() {
2331 this._nodes = { };
2332 },
2333
2334 entries: function(entries)
2335 {
2336 for (var entry in entries)
2337 {
2338 var path = entry.split(/\//);
2339 var node = this._nodes;
2340
2341 for (i = 0; i < path.length; i++)
2342 {
2343 if (!node.childs)
2344 node.childs = { };
2345
2346 if (!node.childs[path[i]])
2347 node.childs[path[i]] = { };
2348
2349 node = node.childs[path[i]];
2350 }
2351
2352 $.extend(node, entries[entry]);
2353 }
2354 },
2355
2356 _indexcmp: function(a, b)
2357 {
2358 var x = a.index || 0;
2359 var y = b.index || 0;
2360 return (x - y);
2361 },
2362
2363 firstChildView: function(node)
2364 {
2365 if (node.view)
2366 return node;
2367
2368 var nodes = [ ];
2369 for (var child in (node.childs || { }))
2370 nodes.push(node.childs[child]);
2371
2372 nodes.sort(this._indexcmp);
2373
2374 for (var i = 0; i < nodes.length; i++)
2375 {
2376 var child = this.firstChildView(nodes[i]);
2377 if (child)
2378 {
2379 for (var key in child)
2380 if (!node.hasOwnProperty(key) && child.hasOwnProperty(key))
2381 node[key] = child[key];
2382
2383 return node;
2384 }
2385 }
2386
2387 return undefined;
2388 },
2389
2390 _onclick: function(ev)
2391 {
2392 _luci2.ui.loading(true);
2393 _luci2.ui.renderView(ev.data).then(function() {
2394 _luci2.ui.loading(false);
2395 });
2396
2397 ev.preventDefault();
2398 this.blur();
2399 },
2400
2401 _render: function(childs, level, min, max)
2402 {
2403 var nodes = [ ];
2404 for (var node in childs)
2405 {
2406 var child = this.firstChildView(childs[node]);
2407 if (child)
2408 nodes.push(childs[node]);
2409 }
2410
2411 nodes.sort(this._indexcmp);
2412
2413 var list = $('<ul />');
2414
2415 if (level == 0)
2416 list.addClass('nav');
2417 else if (level == 1)
2418 list.addClass('dropdown-menu');
2419
2420 for (var i = 0; i < nodes.length; i++)
2421 {
2422 if (!_luci2.globals.defaultNode)
2423 {
2424 var v = _luci2.getHash('view');
2425 if (!v || v == nodes[i].view)
2426 _luci2.globals.defaultNode = nodes[i];
2427 }
2428
2429 var item = $('<li />')
2430 .append($('<a />')
2431 .attr('href', '#')
2432 .text(_luci2.tr(nodes[i].title))
2433 .click(nodes[i], this._onclick))
2434 .appendTo(list);
2435
2436 if (nodes[i].childs && level < max)
2437 {
2438 item.addClass('dropdown');
2439 item.find('a').addClass('menu');
2440 item.append(this._render(nodes[i].childs, level + 1));
2441 }
2442 }
2443
2444 return list.get(0);
2445 },
2446
2447 render: function(min, max)
2448 {
2449 var top = min ? this.getNode(_luci2.globals.defaultNode.view, min) : this._nodes;
2450 return this._render(top.childs, 0, min, max);
2451 },
2452
2453 getNode: function(path, max)
2454 {
2455 var p = path.split(/\//);
2456 var n = this._nodes;
2457
2458 if (typeof(max) == 'undefined')
2459 max = p.length;
2460
2461 for (var i = 0; i < max; i++)
2462 {
2463 if (!n.childs[p[i]])
2464 return undefined;
2465
2466 n = n.childs[p[i]];
2467 }
2468
2469 return n;
2470 }
2471 });
2472
2473 this.ui.table = AbstractWidget.extend({
2474 init: function()
2475 {
2476 this._rows = [ ];
2477 },
2478
2479 row: function(values)
2480 {
2481 if ($.isArray(values))
2482 {
2483 this._rows.push(values);
2484 }
2485 else if ($.isPlainObject(values))
2486 {
2487 var v = [ ];
2488 for (var i = 0; i < this.options.columns.length; i++)
2489 {
2490 var col = this.options.columns[i];
2491
2492 if (typeof col.key == 'string')
2493 v.push(values[col.key]);
2494 else
2495 v.push(null);
2496 }
2497 this._rows.push(v);
2498 }
2499 },
2500
2501 rows: function(rows)
2502 {
2503 for (var i = 0; i < rows.length; i++)
2504 this.row(rows[i]);
2505 },
2506
2507 render: function(id)
2508 {
2509 var fieldset = document.createElement('fieldset');
2510 fieldset.className = 'cbi-section';
2511
2512 if (this.options.caption)
2513 {
2514 var legend = document.createElement('legend');
2515 $(legend).append(this.options.caption);
2516 fieldset.appendChild(legend);
2517 }
2518
2519 var table = document.createElement('table');
2520 table.className = 'cbi-section-table';
2521
2522 var has_caption = false;
2523 var has_description = false;
2524
2525 for (var i = 0; i < this.options.columns.length; i++)
2526 if (this.options.columns[i].caption)
2527 {
2528 has_caption = true;
2529 break;
2530 }
2531 else if (this.options.columns[i].description)
2532 {
2533 has_description = true;
2534 break;
2535 }
2536
2537 if (has_caption)
2538 {
2539 var tr = table.insertRow(-1);
2540 tr.className = 'cbi-section-table-titles';
2541
2542 for (var i = 0; i < this.options.columns.length; i++)
2543 {
2544 var col = this.options.columns[i];
2545 var th = document.createElement('th');
2546 th.className = 'cbi-section-table-cell';
2547
2548 tr.appendChild(th);
2549
2550 if (col.width)
2551 th.style.width = col.width;
2552
2553 if (col.align)
2554 th.style.textAlign = col.align;
2555
2556 if (col.caption)
2557 $(th).append(col.caption);
2558 }
2559 }
2560
2561 if (has_description)
2562 {
2563 var tr = table.insertRow(-1);
2564 tr.className = 'cbi-section-table-descr';
2565
2566 for (var i = 0; i < this.options.columns.length; i++)
2567 {
2568 var col = this.options.columns[i];
2569 var th = document.createElement('th');
2570 th.className = 'cbi-section-table-cell';
2571
2572 tr.appendChild(th);
2573
2574 if (col.width)
2575 th.style.width = col.width;
2576
2577 if (col.align)
2578 th.style.textAlign = col.align;
2579
2580 if (col.description)
2581 $(th).append(col.description);
2582 }
2583 }
2584
2585 if (this._rows.length == 0)
2586 {
2587 if (this.options.placeholder)
2588 {
2589 var tr = table.insertRow(-1);
2590 var td = tr.insertCell(-1);
2591 td.className = 'cbi-section-table-cell';
2592
2593 td.colSpan = this.options.columns.length;
2594 $(td).append(this.options.placeholder);
2595 }
2596 }
2597 else
2598 {
2599 for (var i = 0; i < this._rows.length; i++)
2600 {
2601 var tr = table.insertRow(-1);
2602
2603 for (var j = 0; j < this.options.columns.length; j++)
2604 {
2605 var col = this.options.columns[j];
2606 var td = tr.insertCell(-1);
2607
2608 var val = this._rows[i][j];
2609
2610 if (typeof(val) == 'undefined')
2611 val = col.placeholder;
2612
2613 if (typeof(val) == 'undefined')
2614 val = '';
2615
2616 if (col.width)
2617 td.style.width = col.width;
2618
2619 if (col.align)
2620 td.style.textAlign = col.align;
2621
2622 if (typeof col.format == 'string')
2623 $(td).append(col.format.format(val));
2624 else if (typeof col.format == 'function')
2625 $(td).append(col.format(val, i));
2626 else
2627 $(td).append(val);
2628 }
2629 }
2630 }
2631
2632 this._rows = [ ];
2633 fieldset.appendChild(table);
2634
2635 return fieldset;
2636 }
2637 });
2638
2639 this.ui.progress = AbstractWidget.extend({
2640 render: function()
2641 {
2642 var vn = parseInt(this.options.value) || 0;
2643 var mn = parseInt(this.options.max) || 100;
2644 var pc = Math.floor((100 / mn) * vn);
2645
2646 var bar = document.createElement('div');
2647 bar.className = 'progressbar';
2648
2649 bar.appendChild(document.createElement('div'));
2650 bar.lastChild.appendChild(document.createElement('div'));
2651 bar.lastChild.style.width = pc + '%';
2652
2653 if (typeof(this.options.format) == 'string')
2654 $(bar.lastChild.lastChild).append(this.options.format.format(this.options.value, this.options.max, pc));
2655 else if (typeof(this.options.format) == 'function')
2656 $(bar.lastChild.lastChild).append(this.options.format(pc));
2657 else
2658 $(bar.lastChild.lastChild).append('%.2f%%'.format(pc));
2659
2660 return bar;
2661 }
2662 });
2663
2664 this.ui.devicebadge = AbstractWidget.extend({
2665 render: function()
2666 {
2667 var dev = this.options.l3_device || this.options.device || '?';
2668
2669 var span = document.createElement('span');
2670 span.className = 'ifacebadge';
2671
2672 if (typeof(this.options.signal) == 'number' ||
2673 typeof(this.options.noise) == 'number')
2674 {
2675 var r = 'none';
2676 if (typeof(this.options.signal) != 'undefined' &&
2677 typeof(this.options.noise) != 'undefined')
2678 {
2679 var q = (-1 * (this.options.noise - this.options.signal)) / 5;
2680 if (q < 1)
2681 r = '0';
2682 else if (q < 2)
2683 r = '0-25';
2684 else if (q < 3)
2685 r = '25-50';
2686 else if (q < 4)
2687 r = '50-75';
2688 else
2689 r = '75-100';
2690 }
2691
2692 span.appendChild(document.createElement('img'));
2693 span.lastChild.src = _luci2.globals.resource + '/icons/signal-' + r + '.png';
2694
2695 if (r == 'none')
2696 span.title = _luci2.tr('No signal');
2697 else
2698 span.title = '%s: %d %s / %s: %d %s'.format(
2699 _luci2.tr('Signal'), this.options.signal, _luci2.tr('dBm'),
2700 _luci2.tr('Noise'), this.options.noise, _luci2.tr('dBm')
2701 );
2702 }
2703 else
2704 {
2705 var type = 'ethernet';
2706 var desc = _luci2.tr('Ethernet device');
2707
2708 if (this.options.l3_device != this.options.device)
2709 {
2710 type = 'tunnel';
2711 desc = _luci2.tr('Tunnel interface');
2712 }
2713 else if (dev.indexOf('br-') == 0)
2714 {
2715 type = 'bridge';
2716 desc = _luci2.tr('Bridge');
2717 }
2718 else if (dev.indexOf('.') > 0)
2719 {
2720 type = 'vlan';
2721 desc = _luci2.tr('VLAN interface');
2722 }
2723 else if (dev.indexOf('wlan') == 0 ||
2724 dev.indexOf('ath') == 0 ||
2725 dev.indexOf('wl') == 0)
2726 {
2727 type = 'wifi';
2728 desc = _luci2.tr('Wireless Network');
2729 }
2730
2731 span.appendChild(document.createElement('img'));
2732 span.lastChild.src = _luci2.globals.resource + '/icons/' + type + (this.options.up ? '' : '_disabled') + '.png';
2733 span.title = desc;
2734 }
2735
2736 $(span).append(' ');
2737 $(span).append(dev);
2738
2739 return span;
2740 }
2741 });
2742
2743 var type = function(f, l)
2744 {
2745 f.message = l;
2746 return f;
2747 };
2748
2749 this.cbi = {
2750 validation: {
2751 i18n: function(msg)
2752 {
2753 _luci2.cbi.validation.message = _luci2.tr(msg);
2754 },
2755
2756 compile: function(code)
2757 {
2758 var pos = 0;
2759 var esc = false;
2760 var depth = 0;
2761 var types = _luci2.cbi.validation.types;
2762 var stack = [ ];
2763
2764 code += ',';
2765
2766 for (var i = 0; i < code.length; i++)
2767 {
2768 if (esc)
2769 {
2770 esc = false;
2771 continue;
2772 }
2773
2774 switch (code.charCodeAt(i))
2775 {
2776 case 92:
2777 esc = true;
2778 break;
2779
2780 case 40:
2781 case 44:
2782 if (depth <= 0)
2783 {
2784 if (pos < i)
2785 {
2786 var label = code.substring(pos, i);
2787 label = label.replace(/\\(.)/g, '$1');
2788 label = label.replace(/^[ \t]+/g, '');
2789 label = label.replace(/[ \t]+$/g, '');
2790
2791 if (label && !isNaN(label))
2792 {
2793 stack.push(parseFloat(label));
2794 }
2795 else if (label.match(/^(['"]).*\1$/))
2796 {
2797 stack.push(label.replace(/^(['"])(.*)\1$/, '$2'));
2798 }
2799 else if (typeof types[label] == 'function')
2800 {
2801 stack.push(types[label]);
2802 stack.push(null);
2803 }
2804 else
2805 {
2806 throw "Syntax error, unhandled token '"+label+"'";
2807 }
2808 }
2809 pos = i+1;
2810 }
2811 depth += (code.charCodeAt(i) == 40);
2812 break;
2813
2814 case 41:
2815 if (--depth <= 0)
2816 {
2817 if (typeof stack[stack.length-2] != 'function')
2818 throw "Syntax error, argument list follows non-function";
2819
2820 stack[stack.length-1] =
2821 arguments.callee(code.substring(pos, i));
2822
2823 pos = i+1;
2824 }
2825 break;
2826 }
2827 }
2828
2829 return stack;
2830 }
2831 }
2832 };
2833
2834 var validation = this.cbi.validation;
2835
2836 validation.types = {
2837 'integer': function()
2838 {
2839 if (this.match(/^-?[0-9]+$/) != null)
2840 return true;
2841
2842 validation.i18n('Must be a valid integer');
2843 return false;
2844 },
2845
2846 'uinteger': function()
2847 {
2848 if (validation.types['integer'].apply(this) && (this >= 0))
2849 return true;
2850
2851 validation.i18n('Must be a positive integer');
2852 return false;
2853 },
2854
2855 'float': function()
2856 {
2857 if (!isNaN(parseFloat(this)))
2858 return true;
2859
2860 validation.i18n('Must be a valid number');
2861 return false;
2862 },
2863
2864 'ufloat': function()
2865 {
2866 if (validation.types['float'].apply(this) && (this >= 0))
2867 return true;
2868
2869 validation.i18n('Must be a positive number');
2870 return false;
2871 },
2872
2873 'ipaddr': function()
2874 {
2875 if (validation.types['ip4addr'].apply(this) ||
2876 validation.types['ip6addr'].apply(this))
2877 return true;
2878
2879 validation.i18n('Must be a valid IP address');
2880 return false;
2881 },
2882
2883 'ip4addr': function()
2884 {
2885 if (this.match(/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})(\/(\S+))?$/))
2886 {
2887 if ((RegExp.$1 >= 0) && (RegExp.$1 <= 255) &&
2888 (RegExp.$2 >= 0) && (RegExp.$2 <= 255) &&
2889 (RegExp.$3 >= 0) && (RegExp.$3 <= 255) &&
2890 (RegExp.$4 >= 0) && (RegExp.$4 <= 255) &&
2891 ((RegExp.$6.indexOf('.') < 0)
2892 ? ((RegExp.$6 >= 0) && (RegExp.$6 <= 32))
2893 : (validation.types['ip4addr'].apply(RegExp.$6))))
2894 return true;
2895 }
2896
2897 validation.i18n('Must be a valid IPv4 address');
2898 return false;
2899 },
2900
2901 'ip6addr': function()
2902 {
2903 if (this.match(/^([a-fA-F0-9:.]+)(\/(\d+))?$/))
2904 {
2905 if (!RegExp.$2 || ((RegExp.$3 >= 0) && (RegExp.$3 <= 128)))
2906 {
2907 var addr = RegExp.$1;
2908
2909 if (addr == '::')
2910 {
2911 return true;
2912 }
2913
2914 if (addr.indexOf('.') > 0)
2915 {
2916 var off = addr.lastIndexOf(':');
2917
2918 if (!(off && validation.types['ip4addr'].apply(addr.substr(off+1))))
2919 {
2920 validation.i18n('Must be a valid IPv6 address');
2921 return false;
2922 }
2923
2924 addr = addr.substr(0, off) + ':0:0';
2925 }
2926
2927 if (addr.indexOf('::') >= 0)
2928 {
2929 var colons = 0;
2930 var fill = '0';
2931
2932 for (var i = 1; i < (addr.length-1); i++)
2933 if (addr.charAt(i) == ':')
2934 colons++;
2935
2936 if (colons > 7)
2937 {
2938 validation.i18n('Must be a valid IPv6 address');
2939 return false;
2940 }
2941
2942 for (var i = 0; i < (7 - colons); i++)
2943 fill += ':0';
2944
2945 if (addr.match(/^(.*?)::(.*?)$/))
2946 addr = (RegExp.$1 ? RegExp.$1 + ':' : '') + fill +
2947 (RegExp.$2 ? ':' + RegExp.$2 : '');
2948 }
2949
2950 if (addr.match(/^(?:[a-fA-F0-9]{1,4}:){7}[a-fA-F0-9]{1,4}$/) != null)
2951 return true;
2952
2953 validation.i18n('Must be a valid IPv6 address');
2954 return false;
2955 }
2956 }
2957
2958 return false;
2959 },
2960
2961 'port': function()
2962 {
2963 if (validation.types['integer'].apply(this) &&
2964 (this >= 0) && (this <= 65535))
2965 return true;
2966
2967 validation.i18n('Must be a valid port number');
2968 return false;
2969 },
2970
2971 'portrange': function()
2972 {
2973 if (this.match(/^(\d+)-(\d+)$/))
2974 {
2975 var p1 = RegExp.$1;
2976 var p2 = RegExp.$2;
2977
2978 if (validation.types['port'].apply(p1) &&
2979 validation.types['port'].apply(p2) &&
2980 (parseInt(p1) <= parseInt(p2)))
2981 return true;
2982 }
2983 else if (validation.types['port'].apply(this))
2984 {
2985 return true;
2986 }
2987
2988 validation.i18n('Must be a valid port range');
2989 return false;
2990 },
2991
2992 'macaddr': function()
2993 {
2994 if (this.match(/^([a-fA-F0-9]{2}:){5}[a-fA-F0-9]{2}$/) != null)
2995 return true;
2996
2997 validation.i18n('Must be a valid MAC address');
2998 return false;
2999 },
3000
3001 'host': function()
3002 {
3003 if (validation.types['hostname'].apply(this) ||
3004 validation.types['ipaddr'].apply(this))
3005 return true;
3006
3007 validation.i18n('Must be a valid hostname or IP address');
3008 return false;
3009 },
3010
3011 'hostname': function()
3012 {
3013 if ((this.length <= 253) &&
3014 ((this.match(/^[a-zA-Z0-9]+$/) != null ||
3015 (this.match(/^[a-zA-Z0-9_][a-zA-Z0-9_\-.]*[a-zA-Z0-9]$/) &&
3016 this.match(/[^0-9.]/)))))
3017 return true;
3018
3019 validation.i18n('Must be a valid host name');
3020 return false;
3021 },
3022
3023 'network': function()
3024 {
3025 if (validation.types['uciname'].apply(this) ||
3026 validation.types['host'].apply(this))
3027 return true;
3028
3029 validation.i18n('Must be a valid network name');
3030 return false;
3031 },
3032
3033 'wpakey': function()
3034 {
3035 var v = this;
3036
3037 if ((v.length == 64)
3038 ? (v.match(/^[a-fA-F0-9]{64}$/) != null)
3039 : ((v.length >= 8) && (v.length <= 63)))
3040 return true;
3041
3042 validation.i18n('Must be a valid WPA key');
3043 return false;
3044 },
3045
3046 'wepkey': function()
3047 {
3048 var v = this;
3049
3050 if (v.substr(0,2) == 's:')
3051 v = v.substr(2);
3052
3053 if (((v.length == 10) || (v.length == 26))
3054 ? (v.match(/^[a-fA-F0-9]{10,26}$/) != null)
3055 : ((v.length == 5) || (v.length == 13)))
3056 return true;
3057
3058 validation.i18n('Must be a valid WEP key');
3059 return false;
3060 },
3061
3062 'uciname': function()
3063 {
3064 if (this.match(/^[a-zA-Z0-9_]+$/) != null)
3065 return true;
3066
3067 validation.i18n('Must be a valid UCI identifier');
3068 return false;
3069 },
3070
3071 'range': function(min, max)
3072 {
3073 var val = parseFloat(this);
3074
3075 if (validation.types['integer'].apply(this) &&
3076 !isNaN(min) && !isNaN(max) && ((val >= min) && (val <= max)))
3077 return true;
3078
3079 validation.i18n('Must be a number between %d and %d');
3080 return false;
3081 },
3082
3083 'min': function(min)
3084 {
3085 var val = parseFloat(this);
3086
3087 if (validation.types['integer'].apply(this) &&
3088 !isNaN(min) && !isNaN(val) && (val >= min))
3089 return true;
3090
3091 validation.i18n('Must be a number greater or equal to %d');
3092 return false;
3093 },
3094
3095 'max': function(max)
3096 {
3097 var val = parseFloat(this);
3098
3099 if (validation.types['integer'].apply(this) &&
3100 !isNaN(max) && !isNaN(val) && (val <= max))
3101 return true;
3102
3103 validation.i18n('Must be a number lower or equal to %d');
3104 return false;
3105 },
3106
3107 'rangelength': function(min, max)
3108 {
3109 var val = '' + this;
3110
3111 if (!isNaN(min) && !isNaN(max) &&
3112 (val.length >= min) && (val.length <= max))
3113 return true;
3114
3115 validation.i18n('Must be between %d and %d characters');
3116 return false;
3117 },
3118
3119 'minlength': function(min)
3120 {
3121 var val = '' + this;
3122
3123 if (!isNaN(min) && (val.length >= min))
3124 return true;
3125
3126 validation.i18n('Must be at least %d characters');
3127 return false;
3128 },
3129
3130 'maxlength': function(max)
3131 {
3132 var val = '' + this;
3133
3134 if (!isNaN(max) && (val.length <= max))
3135 return true;
3136
3137 validation.i18n('Must be at most %d characters');
3138 return false;
3139 },
3140
3141 'or': function()
3142 {
3143 var msgs = [ ];
3144
3145 for (var i = 0; i < arguments.length; i += 2)
3146 {
3147 delete validation.message;
3148
3149 if (typeof(arguments[i]) != 'function')
3150 {
3151 if (arguments[i] == this)
3152 return true;
3153 i--;
3154 }
3155 else if (arguments[i].apply(this, arguments[i+1]))
3156 {
3157 return true;
3158 }
3159
3160 if (validation.message)
3161 msgs.push(validation.message.format.apply(validation.message, arguments[i+1]));
3162 }
3163
3164 validation.message = msgs.join( _luci2.tr(' - or - '));
3165 return false;
3166 },
3167
3168 'and': function()
3169 {
3170 var msgs = [ ];
3171
3172 for (var i = 0; i < arguments.length; i += 2)
3173 {
3174 delete validation.message;
3175
3176 if (typeof arguments[i] != 'function')
3177 {
3178 if (arguments[i] != this)
3179 return false;
3180 i--;
3181 }
3182 else if (!arguments[i].apply(this, arguments[i+1]))
3183 {
3184 return false;
3185 }
3186
3187 if (validation.message)
3188 msgs.push(validation.message.format.apply(validation.message, arguments[i+1]));
3189 }
3190
3191 validation.message = msgs.join(', ');
3192 return true;
3193 },
3194
3195 'neg': function()
3196 {
3197 return validation.types['or'].apply(
3198 this.replace(/^[ \t]*![ \t]*/, ''), arguments);
3199 },
3200
3201 'list': function(subvalidator, subargs)
3202 {
3203 if (typeof subvalidator != 'function')
3204 return false;
3205
3206 var tokens = this.match(/[^ \t]+/g);
3207 for (var i = 0; i < tokens.length; i++)
3208 if (!subvalidator.apply(tokens[i], subargs))
3209 return false;
3210
3211 return true;
3212 },
3213
3214 'phonedigit': function()
3215 {
3216 if (this.match(/^[0-9\*#!\.]+$/) != null)
3217 return true;
3218
3219 validation.i18n('Must be a valid phone number digit');
3220 return false;
3221 },
3222
3223 'string': function()
3224 {
3225 return true;
3226 }
3227 };
3228
3229
3230 this.cbi.AbstractValue = AbstractWidget.extend({
3231 init: function(name, options)
3232 {
3233 this.name = name;
3234 this.instance = { };
3235 this.dependencies = [ ];
3236 this.rdependency = { };
3237
3238 this.options = _luci2.defaults(options, {
3239 placeholder: '',
3240 datatype: 'string',
3241 optional: false,
3242 keep: true
3243 });
3244 },
3245
3246 id: function(sid)
3247 {
3248 return this.section.id('field', sid || '__unknown__', this.name);
3249 },
3250
3251 render: function(sid)
3252 {
3253 var i = this.instance[sid] = { };
3254
3255 i.top = $('<div />').addClass('cbi-value');
3256
3257 if (typeof(this.options.caption) == 'string')
3258 $('<label />')
3259 .addClass('cbi-value-title')
3260 .attr('for', this.id(sid))
3261 .text(this.options.caption)
3262 .appendTo(i.top);
3263
3264 i.widget = $('<div />').addClass('cbi-value-field').append(this.widget(sid)).appendTo(i.top);
3265 i.error = $('<div />').addClass('cbi-value-error').appendTo(i.top);
3266
3267 if (typeof(this.options.description) == 'string')
3268 $('<div />')
3269 .addClass('cbi-value-description')
3270 .text(this.options.description)
3271 .appendTo(i.top);
3272
3273 return i.top;
3274 },
3275
3276 ucipath: function(sid)
3277 {
3278 return {
3279 config: (this.options.uci_package || this.map.uci_package),
3280 section: (this.options.uci_section || sid),
3281 option: (this.options.uci_option || this.name)
3282 };
3283 },
3284
3285 ucivalue: function(sid)
3286 {
3287 var uci = this.ucipath(sid);
3288 var val = this.map.get(uci.config, uci.section, uci.option);
3289
3290 if (typeof(val) == 'undefined')
3291 return this.options.initial;
3292
3293 return val;
3294 },
3295
3296 formvalue: function(sid)
3297 {
3298 var v = $('#' + this.id(sid)).val();
3299 return (v === '') ? undefined : v;
3300 },
3301
3302 textvalue: function(sid)
3303 {
3304 var v = this.formvalue(sid);
3305
3306 if (typeof(v) == 'undefined' || ($.isArray(v) && !v.length))
3307 v = this.ucivalue(sid);
3308
3309 if (typeof(v) == 'undefined' || ($.isArray(v) && !v.length))
3310 v = this.options.placeholder;
3311
3312 if (typeof(v) == 'undefined' || v === '')
3313 return undefined;
3314
3315 if (typeof(v) == 'string' && $.isArray(this.choices))
3316 {
3317 for (var i = 0; i < this.choices.length; i++)
3318 if (v === this.choices[i][0])
3319 return this.choices[i][1];
3320 }
3321 else if (v === true)
3322 return _luci2.tr('yes');
3323 else if (v === false)
3324 return _luci2.tr('no');
3325 else if ($.isArray(v))
3326 return v.join(', ');
3327
3328 return v;
3329 },
3330
3331 changed: function(sid)
3332 {
3333 var a = this.ucivalue(sid);
3334 var b = this.formvalue(sid);
3335
3336 if (typeof(a) != typeof(b))
3337 return true;
3338
3339 if (typeof(a) == 'object')
3340 {
3341 if (a.length != b.length)
3342 return true;
3343
3344 for (var i = 0; i < a.length; i++)
3345 if (a[i] != b[i])
3346 return true;
3347
3348 return false;
3349 }
3350
3351 return (a != b);
3352 },
3353
3354 save: function(sid)
3355 {
3356 var uci = this.ucipath(sid);
3357
3358 if (this.instance[sid].disabled)
3359 {
3360 if (!this.options.keep)
3361 return this.map.set(uci.config, uci.section, uci.option, undefined);
3362
3363 return false;
3364 }
3365
3366 var chg = this.changed(sid);
3367 var val = this.formvalue(sid);
3368
3369 if (chg)
3370 this.map.set(uci.config, uci.section, uci.option, val);
3371
3372 return chg;
3373 },
3374
3375 validator: function(sid, elem, multi)
3376 {
3377 if (typeof(this.options.datatype) == 'undefined' && $.isEmptyObject(this.rdependency))
3378 return elem;
3379
3380 var vstack;
3381 if (typeof(this.options.datatype) == 'string')
3382 {
3383 try {
3384 vstack = _luci2.cbi.validation.compile(this.options.datatype);
3385 } catch(e) { };
3386 }
3387 else if (typeof(this.options.datatype) == 'function')
3388 {
3389 var vfunc = this.options.datatype;
3390 vstack = [ function(elem) {
3391 var rv = vfunc(this, elem);
3392 if (rv !== true)
3393 validation.message = rv;
3394 return (rv === true);
3395 }, [ elem ] ];
3396 }
3397
3398 var evdata = {
3399 self: this,
3400 sid: sid,
3401 elem: elem,
3402 multi: multi,
3403 inst: this.instance[sid],
3404 opt: this.options.optional
3405 };
3406
3407 var validator = function(ev)
3408 {
3409 var d = ev.data;
3410 var rv = true;
3411 var val = d.elem.val();
3412
3413 if (vstack && typeof(vstack[0]) == 'function')
3414 {
3415 delete validation.message;
3416
3417 if ((val.length == 0 && !d.opt))
3418 {
3419 d.elem.addClass('error');
3420 d.inst.top.addClass('error');
3421 d.inst.error.text(_luci2.tr('Field must not be empty'));
3422 rv = false;
3423 }
3424 else if (val.length > 0 && !vstack[0].apply(val, vstack[1]))
3425 {
3426 d.elem.addClass('error');
3427 d.inst.top.addClass('error');
3428 d.inst.error.text(validation.message.format.apply(validation.message, vstack[1]));
3429 rv = false;
3430 }
3431 else
3432 {
3433 d.elem.removeClass('error');
3434
3435 if (d.multi && d.inst.widget.find('input.error, select.error').length > 0)
3436 {
3437 rv = false;
3438 }
3439 else
3440 {
3441 d.inst.top.removeClass('error');
3442 d.inst.error.text('');
3443 }
3444 }
3445 }
3446
3447 if (rv)
3448 {
3449 for (var field in d.self.rdependency)
3450 d.self.rdependency[field].toggle(d.sid);
3451 }
3452
3453 return rv;
3454 };
3455
3456 if (elem.prop('tagName') == 'SELECT')
3457 {
3458 elem.change(evdata, validator);
3459 }
3460 else if (elem.prop('tagName') == 'INPUT' && elem.attr('type') == 'checkbox')
3461 {
3462 elem.click(evdata, validator);
3463 elem.blur(evdata, validator);
3464 }
3465 else
3466 {
3467 elem.keyup(evdata, validator);
3468 elem.blur(evdata, validator);
3469 }
3470
3471 elem.attr('cbi-validate', true).on('validate', evdata, validator);
3472
3473 return elem;
3474 },
3475
3476 validate: function(sid)
3477 {
3478 var i = this.instance[sid];
3479
3480 i.widget.find('[cbi-validate]').trigger('validate');
3481
3482 return (i.disabled || i.error.text() == '');
3483 },
3484
3485 depends: function(d, v)
3486 {
3487 var dep;
3488
3489 if ($.isArray(d))
3490 {
3491 dep = { };
3492 for (var i = 0; i < d.length; i++)
3493 {
3494 if (typeof(d[i]) == 'string')
3495 dep[d[i]] = true;
3496 else if (d[i] instanceof _luci2.cbi.AbstractValue)
3497 dep[d[i].name] = true;
3498 }
3499 }
3500 else if (d instanceof _luci2.cbi.AbstractValue)
3501 {
3502 dep = { };
3503 dep[d.name] = (typeof(v) == 'undefined') ? true : v;
3504 }
3505 else if (typeof(d) == 'object')
3506 {
3507 dep = d;
3508 }
3509 else if (typeof(d) == 'string')
3510 {
3511 dep = { };
3512 dep[d] = (typeof(v) == 'undefined') ? true : v;
3513 }
3514
3515 if (!dep || $.isEmptyObject(dep))
3516 return this;
3517
3518 for (var field in dep)
3519 {
3520 var f = this.section.fields[field];
3521 if (f)
3522 f.rdependency[this.name] = this;
3523 else
3524 delete dep[field];
3525 }
3526
3527 if ($.isEmptyObject(dep))
3528 return this;
3529
3530 this.dependencies.push(dep);
3531
3532 return this;
3533 },
3534
3535 toggle: function(sid)
3536 {
3537 var d = this.dependencies;
3538 var i = this.instance[sid];
3539
3540 if (!d.length)
3541 return true;
3542
3543 for (var n = 0; n < d.length; n++)
3544 {
3545 var rv = true;
3546
3547 for (var field in d[n])
3548 {
3549 var val = this.section.fields[field].formvalue(sid);
3550 var cmp = d[n][field];
3551
3552 if (typeof(cmp) == 'boolean')
3553 {
3554 if (cmp == (typeof(val) == 'undefined' || val === '' || val === false))
3555 {
3556 rv = false;
3557 break;
3558 }
3559 }
3560 else if (typeof(cmp) == 'string')
3561 {
3562 if (val != cmp)
3563 {
3564 rv = false;
3565 break;
3566 }
3567 }
3568 else if (typeof(cmp) == 'function')
3569 {
3570 if (!cmp(val))
3571 {
3572 rv = false;
3573 break;
3574 }
3575 }
3576 else if (cmp instanceof RegExp)
3577 {
3578 if (!cmp.test(val))
3579 {
3580 rv = false;
3581 break;
3582 }
3583 }
3584 }
3585
3586 if (rv)
3587 {
3588 if (i.disabled)
3589 {
3590 i.disabled = false;
3591 i.top.fadeIn();
3592 }
3593
3594 return true;
3595 }
3596 }
3597
3598 if (!i.disabled)
3599 {
3600 i.disabled = true;
3601 i.top.is(':visible') ? i.top.fadeOut() : i.top.hide();
3602 }
3603
3604 return false;
3605 }
3606 });
3607
3608 this.cbi.CheckboxValue = this.cbi.AbstractValue.extend({
3609 widget: function(sid)
3610 {
3611 var o = this.options;
3612
3613 if (typeof(o.enabled) == 'undefined') o.enabled = '1';
3614 if (typeof(o.disabled) == 'undefined') o.disabled = '0';
3615
3616 var i = $('<input />')
3617 .attr('id', this.id(sid))
3618 .attr('type', 'checkbox')
3619 .prop('checked', this.ucivalue(sid));
3620
3621 return this.validator(sid, i);
3622 },
3623
3624 ucivalue: function(sid)
3625 {
3626 var v = this.callSuper('ucivalue', sid);
3627
3628 if (typeof(v) == 'boolean')
3629 return v;
3630
3631 return (v == this.options.enabled);
3632 },
3633
3634 formvalue: function(sid)
3635 {
3636 var v = $('#' + this.id(sid)).prop('checked');
3637
3638 if (typeof(v) == 'undefined')
3639 return !!this.options.initial;
3640
3641 return v;
3642 },
3643
3644 save: function(sid)
3645 {
3646 var uci = this.ucipath(sid);
3647
3648 if (this.instance[sid].disabled)
3649 {
3650 if (!this.options.keep)
3651 return this.map.set(uci.config, uci.section, uci.option, undefined);
3652
3653 return false;
3654 }
3655
3656 var chg = this.changed(sid);
3657 var val = this.formvalue(sid);
3658
3659 if (chg)
3660 {
3661 if (this.options.optional && val == this.options.initial)
3662 this.map.set(uci.config, uci.section, uci.option, undefined);
3663 else
3664 this.map.set(uci.config, uci.section, uci.option, val ? this.options.enabled : this.options.disabled);
3665 }
3666
3667 return chg;
3668 }
3669 });
3670
3671 this.cbi.InputValue = this.cbi.AbstractValue.extend({
3672 widget: function(sid)
3673 {
3674 var i = $('<input />')
3675 .attr('id', this.id(sid))
3676 .attr('type', 'text')
3677 .attr('placeholder', this.options.placeholder)
3678 .val(this.ucivalue(sid));
3679
3680 return this.validator(sid, i);
3681 }
3682 });
3683
3684 this.cbi.PasswordValue = this.cbi.AbstractValue.extend({
3685 widget: function(sid)
3686 {
3687 var i = $('<input />')
3688 .attr('id', this.id(sid))
3689 .attr('type', 'password')
3690 .attr('placeholder', this.options.placeholder)
3691 .val(this.ucivalue(sid));
3692
3693 var t = $('<img />')
3694 .attr('src', _luci2.globals.resource + '/icons/cbi/reload.gif')
3695 .attr('title', _luci2.tr('Reveal or hide password'))
3696 .addClass('cbi-button')
3697 .click(function(ev) {
3698 var i = $(this).prev();
3699 var t = i.attr('type');
3700 i.attr('type', (t == 'password') ? 'text' : 'password');
3701 i = t = null;
3702 });
3703
3704 this.validator(sid, i);
3705
3706 return $('<div />')
3707 .addClass('cbi-input-password')
3708 .append(i)
3709 .append(t);
3710 }
3711 });
3712
3713 this.cbi.ListValue = this.cbi.AbstractValue.extend({
3714 widget: function(sid)
3715 {
3716 var s = $('<select />');
3717
3718 if (this.options.optional)
3719 $('<option />')
3720 .attr('value', '')
3721 .text(_luci2.tr('-- Please choose --'))
3722 .appendTo(s);
3723
3724 if (this.choices)
3725 for (var i = 0; i < this.choices.length; i++)
3726 $('<option />')
3727 .attr('value', this.choices[i][0])
3728 .text(this.choices[i][1])
3729 .appendTo(s);
3730
3731 s.attr('id', this.id(sid)).val(this.ucivalue(sid));
3732
3733 return this.validator(sid, s);
3734 },
3735
3736 value: function(k, v)
3737 {
3738 if (!this.choices)
3739 this.choices = [ ];
3740
3741 this.choices.push([k, v || k]);
3742 return this;
3743 }
3744 });
3745
3746 this.cbi.MultiValue = this.cbi.ListValue.extend({
3747 widget: function(sid)
3748 {
3749 var v = this.ucivalue(sid);
3750 var t = $('<div />').attr('id', this.id(sid));
3751
3752 if (!$.isArray(v))
3753 v = (typeof(v) != 'undefined') ? v.toString().split(/\s+/) : [ ];
3754
3755 var s = { };
3756 for (var i = 0; i < v.length; i++)
3757 s[v[i]] = true;
3758
3759 if (this.choices)
3760 for (var i = 0; i < this.choices.length; i++)
3761 {
3762 $('<label />')
3763 .append($('<input />')
3764 .addClass('cbi-input-checkbox')
3765 .attr('type', 'checkbox')
3766 .attr('value', this.choices[i][0])
3767 .prop('checked', s[this.choices[i][0]]))
3768 .append(this.choices[i][1])
3769 .appendTo(t);
3770
3771 $('<br />')
3772 .appendTo(t);
3773 }
3774
3775 return t;
3776 },
3777
3778 formvalue: function(sid)
3779 {
3780 var rv = [ ];
3781 var fields = $('#' + this.id(sid) + ' > label > input');
3782
3783 for (var i = 0; i < fields.length; i++)
3784 if (fields[i].checked)
3785 rv.push(fields[i].getAttribute('value'));
3786
3787 return rv;
3788 },
3789
3790 textvalue: function(sid)
3791 {
3792 var v = this.formvalue(sid);
3793 var c = { };
3794
3795 if (this.choices)
3796 for (var i = 0; i < this.choices.length; i++)
3797 c[this.choices[i][0]] = this.choices[i][1];
3798
3799 var t = [ ];
3800
3801 for (var i = 0; i < v.length; i++)
3802 t.push(c[v[i]] || v[i]);
3803
3804 return t.join(', ');
3805 }
3806 });
3807
3808 this.cbi.ComboBox = this.cbi.AbstractValue.extend({
3809 _change: function(ev)
3810 {
3811 var s = ev.target;
3812 var self = ev.data.self;
3813
3814 if (s.selectedIndex == (s.options.length - 1))
3815 {
3816 ev.data.select.hide();
3817 ev.data.input.show().focus();
3818
3819 var v = ev.data.input.val();
3820 ev.data.input.val(' ');
3821 ev.data.input.val(v);
3822 }
3823 else if (self.options.optional && s.selectedIndex == 0)
3824 {
3825 ev.data.input.val('');
3826 }
3827 else
3828 {
3829 ev.data.input.val(ev.data.select.val());
3830 }
3831 },
3832
3833 _blur: function(ev)
3834 {
3835 var seen = false;
3836 var val = this.value;
3837 var self = ev.data.self;
3838
3839 ev.data.select.empty();
3840
3841 if (self.options.optional)
3842 $('<option />')
3843 .attr('value', '')
3844 .text(_luci2.tr('-- please choose --'))
3845 .appendTo(ev.data.select);
3846
3847 if (self.choices)
3848 for (var i = 0; i < self.choices.length; i++)
3849 {
3850 if (self.choices[i][0] == val)
3851 seen = true;
3852
3853 $('<option />')
3854 .attr('value', self.choices[i][0])
3855 .text(self.choices[i][1])
3856 .appendTo(ev.data.select);
3857 }
3858
3859 if (!seen && val != '')
3860 $('<option />')
3861 .attr('value', val)
3862 .text(val)
3863 .appendTo(ev.data.select);
3864
3865 $('<option />')
3866 .attr('value', ' ')
3867 .text(_luci2.tr('-- custom --'))
3868 .appendTo(ev.data.select);
3869
3870 ev.data.input.hide();
3871 ev.data.select.val(val).show().focus();
3872 },
3873
3874 _enter: function(ev)
3875 {
3876 if (ev.which != 13)
3877 return true;
3878
3879 ev.preventDefault();
3880 ev.data.self._blur(ev);
3881 return false;
3882 },
3883
3884 widget: function(sid)
3885 {
3886 var d = $('<div />')
3887 .attr('id', this.id(sid));
3888
3889 var t = $('<input />')
3890 .attr('type', 'text')
3891 .hide()
3892 .appendTo(d);
3893
3894 var s = $('<select />')
3895 .appendTo(d);
3896
3897 var evdata = {
3898 self: this,
3899 input: this.validator(sid, t),
3900 select: this.validator(sid, s)
3901 };
3902
3903 s.change(evdata, this._change);
3904 t.blur(evdata, this._blur);
3905 t.keydown(evdata, this._enter);
3906
3907 t.val(this.ucivalue(sid));
3908 t.blur();
3909
3910 return d;
3911 },
3912
3913 value: function(k, v)
3914 {
3915 if (!this.choices)
3916 this.choices = [ ];
3917
3918 this.choices.push([k, v || k]);
3919 return this;
3920 },
3921
3922 formvalue: function(sid)
3923 {
3924 var v = $('#' + this.id(sid)).children('input').val();
3925 return (v == '') ? undefined : v;
3926 }
3927 });
3928
3929 this.cbi.DynamicList = this.cbi.ComboBox.extend({
3930 _redraw: function(focus, add, del, s)
3931 {
3932 var v = s.values || [ ];
3933 delete s.values;
3934
3935 $(s.parent).children('input').each(function(i) {
3936 if (i != del)
3937 v.push(this.value || '');
3938 });
3939
3940 $(s.parent).empty();
3941
3942 if (add >= 0)
3943 {
3944 focus = add + 1;
3945 v.splice(focus, 0, '');
3946 }
3947 else if (v.length == 0)
3948 {
3949 focus = 0;
3950 v.push('');
3951 }
3952
3953 for (var i = 0; i < v.length; i++)
3954 {
3955 var evdata = {
3956 sid: s.sid,
3957 self: s.self,
3958 parent: s.parent,
3959 index: i
3960 };
3961
3962 if (this.choices)
3963 {
3964 var txt = $('<input />')
3965 .attr('type', 'text')
3966 .hide()
3967 .appendTo(s.parent);
3968
3969 var sel = $('<select />')
3970 .appendTo(s.parent);
3971
3972 evdata.input = this.validator(s.sid, txt, true);
3973 evdata.select = this.validator(s.sid, sel, true);
3974
3975 sel.change(evdata, this._change);
3976 txt.blur(evdata, this._blur);
3977 txt.keydown(evdata, this._keydown);
3978
3979 txt.val(v[i]);
3980 txt.blur();
3981
3982 if (i == focus || -(i+1) == focus)
3983 sel.focus();
3984
3985 sel = txt = null;
3986 }
3987 else
3988 {
3989 var f = $('<input />')
3990 .attr('type', 'text')
3991 .attr('index', i)
3992 .attr('placeholder', (i == 0) ? this.options.placeholder : '')
3993 .addClass('cbi-input-text')
3994 .keydown(evdata, this._keydown)
3995 .keypress(evdata, this._keypress)
3996 .val(v[i]);
3997
3998 f.appendTo(s.parent);
3999
4000 if (i == focus)
4001 {
4002 f.focus();
4003 }
4004 else if (-(i+1) == focus)
4005 {
4006 f.focus();
4007
4008 /* force cursor to end */
4009 var val = f.val();
4010 f.val(' ');
4011 f.val(val);
4012 }
4013
4014 evdata.input = this.validator(s.sid, f, true);
4015
4016 f = null;
4017 }
4018
4019 $('<img />')
4020 .attr('src', _luci2.globals.resource + ((i+1) < v.length ? '/icons/cbi/remove.gif' : '/icons/cbi/add.gif'))
4021 .attr('title', (i+1) < v.length ? _luci2.tr('Remove entry') : _luci2.tr('Add entry'))
4022 .addClass('cbi-button')
4023 .click(evdata, this._btnclick)
4024 .appendTo(s.parent);
4025
4026 $('<br />')
4027 .appendTo(s.parent);
4028
4029 evdata = null;
4030 }
4031
4032 s = null;
4033 },
4034
4035 _keypress: function(ev)
4036 {
4037 switch (ev.which)
4038 {
4039 /* backspace, delete */
4040 case 8:
4041 case 46:
4042 if (ev.data.input.val() == '')
4043 {
4044 ev.preventDefault();
4045 return false;
4046 }
4047
4048 return true;
4049
4050 /* enter, arrow up, arrow down */
4051 case 13:
4052 case 38:
4053 case 40:
4054 ev.preventDefault();
4055 return false;
4056 }
4057
4058 return true;
4059 },
4060
4061 _keydown: function(ev)
4062 {
4063 var input = ev.data.input;
4064
4065 switch (ev.which)
4066 {
4067 /* backspace, delete */
4068 case 8:
4069 case 46:
4070 if (input.val().length == 0)
4071 {
4072 ev.preventDefault();
4073
4074 var index = ev.data.index;
4075 var focus = index;
4076
4077 if (ev.which == 8)
4078 focus = -focus;
4079
4080 ev.data.self._redraw(focus, -1, index, ev.data);
4081 return false;
4082 }
4083
4084 break;
4085
4086 /* enter */
4087 case 13:
4088 ev.data.self._redraw(NaN, ev.data.index, -1, ev.data);
4089 break;
4090
4091 /* arrow up */
4092 case 38:
4093 var prev = input.prevAll('input:first');
4094 if (prev.is(':visible'))
4095 prev.focus();
4096 else
4097 prev.next('select').focus();
4098 break;
4099
4100 /* arrow down */
4101 case 40:
4102 var next = input.nextAll('input:first');
4103 if (next.is(':visible'))
4104 next.focus();
4105 else
4106 next.next('select').focus();
4107 break;
4108 }
4109
4110 return true;
4111 },
4112
4113 _btnclick: function(ev)
4114 {
4115 if (!this.getAttribute('disabled'))
4116 {
4117 if (ev.target.src.indexOf('remove') > -1)
4118 {
4119 var index = ev.data.index;
4120 ev.data.self._redraw(-index, -1, index, ev.data);
4121 }
4122 else
4123 {
4124 ev.data.self._redraw(NaN, ev.data.index, -1, ev.data);
4125 }
4126 }
4127
4128 return false;
4129 },
4130
4131 widget: function(sid)
4132 {
4133 this.options.optional = true;
4134
4135 var v = this.ucivalue(sid);
4136
4137 if (!$.isArray(v))
4138 v = (typeof(v) != 'undefined') ? v.toString().split(/\s+/) : [ ];
4139
4140 var d = $('<div />')
4141 .attr('id', this.id(sid))
4142 .addClass('cbi-input-dynlist');
4143
4144 this._redraw(NaN, -1, -1, {
4145 self: this,
4146 parent: d[0],
4147 values: v,
4148 sid: sid
4149 });
4150
4151 return d;
4152 },
4153
4154 ucivalue: function(sid)
4155 {
4156 var v = this.callSuper('ucivalue', sid);
4157
4158 if (!$.isArray(v))
4159 v = (typeof(v) != 'undefined') ? v.toString().split(/\s+/) : [ ];
4160
4161 return v;
4162 },
4163
4164 formvalue: function(sid)
4165 {
4166 var rv = [ ];
4167 var fields = $('#' + this.id(sid) + ' > input');
4168
4169 for (var i = 0; i < fields.length; i++)
4170 if (typeof(fields[i].value) == 'string' && fields[i].value.length)
4171 rv.push(fields[i].value);
4172
4173 return rv;
4174 }
4175 });
4176
4177 this.cbi.DummyValue = this.cbi.AbstractValue.extend({
4178 widget: function(sid)
4179 {
4180 return $('<div />')
4181 .addClass('cbi-value-dummy')
4182 .attr('id', this.id(sid))
4183 .html(this.ucivalue(sid));
4184 },
4185
4186 formvalue: function(sid)
4187 {
4188 return this.ucivalue(sid);
4189 }
4190 });
4191
4192 this.cbi.NetworkList = this.cbi.AbstractValue.extend({
4193 load: function(sid)
4194 {
4195 var self = this;
4196
4197 if (!self.interfaces)
4198 {
4199 self.interfaces = [ ];
4200 return _luci2.network.getNetworkStatus().then(function(ifaces) {
4201 self.interfaces = ifaces;
4202 self = null;
4203 });
4204 }
4205
4206 return undefined;
4207 },
4208
4209 _device_icon: function(dev)
4210 {
4211 var type = 'ethernet';
4212 var desc = _luci2.tr('Ethernet device');
4213
4214 if (dev.type == 'IP tunnel')
4215 {
4216 type = 'tunnel';
4217 desc = _luci2.tr('Tunnel interface');
4218 }
4219 else if (dev['bridge-members'])
4220 {
4221 type = 'bridge';
4222 desc = _luci2.tr('Bridge');
4223 }
4224 else if (dev.wireless)
4225 {
4226 type = 'wifi';
4227 desc = _luci2.tr('Wireless Network');
4228 }
4229 else if (dev.device.indexOf('.') > 0)
4230 {
4231 type = 'vlan';
4232 desc = _luci2.tr('VLAN interface');
4233 }
4234
4235 return $('<img />')
4236 .attr('src', _luci2.globals.resource + '/icons/' + type + (dev.up ? '' : '_disabled') + '.png')
4237 .attr('title', '%s (%s)'.format(desc, dev.device));
4238 },
4239
4240 widget: function(sid)
4241 {
4242 var id = this.id(sid);
4243 var ul = $('<ul />')
4244 .attr('id', id)
4245 .addClass('cbi-input-networks');
4246
4247 var itype = this.options.multiple ? 'checkbox' : 'radio';
4248 var value = this.ucivalue(sid);
4249 var check = { };
4250
4251 if (!this.options.multiple)
4252 check[value] = true;
4253 else
4254 for (var i = 0; i < value.length; i++)
4255 check[value[i]] = true;
4256
4257 if (this.interfaces)
4258 {
4259 for (var i = 0; i < this.interfaces.length; i++)
4260 {
4261 var iface = this.interfaces[i];
4262 var badge = $('<span />')
4263 .addClass('ifacebadge')
4264 .text('%s: '.format(iface['interface']));
4265
4266 if (iface.device && iface.device.subdevices)
4267 for (var j = 0; j < iface.device.subdevices.length; j++)
4268 badge.append(this._device_icon(iface.device.subdevices[j]));
4269 else if (iface.device)
4270 badge.append(this._device_icon(iface.device));
4271 else
4272 badge.append($('<em />').text(_luci2.tr('(No devices attached)')));
4273
4274 $('<li />')
4275 .append($('<label />')
4276 .append($('<input />')
4277 .attr('name', itype + id)
4278 .attr('type', itype)
4279 .attr('value', iface['interface'])
4280 .prop('checked', !!check[iface['interface']])
4281 .addClass('cbi-input-' + itype))
4282 .append(badge))
4283 .appendTo(ul);
4284 }
4285 }
4286
4287 if (!this.options.multiple)
4288 {
4289 $('<li />')
4290 .append($('<label />')
4291 .append($('<input />')
4292 .attr('name', itype + id)
4293 .attr('type', itype)
4294 .attr('value', '')
4295 .prop('checked', !value)
4296 .addClass('cbi-input-' + itype))
4297 .append(_luci2.tr('unspecified')))
4298 .appendTo(ul);
4299 }
4300
4301 return ul;
4302 },
4303
4304 ucivalue: function(sid)
4305 {
4306 var v = this.callSuper('ucivalue', sid);
4307
4308 if (!this.options.multiple)
4309 {
4310 if ($.isArray(v))
4311 {
4312 return v[0];
4313 }
4314 else if (typeof(v) == 'string')
4315 {
4316 v = v.match(/\S+/);
4317 return v ? v[0] : undefined;
4318 }
4319
4320 return v;
4321 }
4322 else
4323 {
4324 if (typeof(v) == 'string')
4325 v = v.match(/\S+/g);
4326
4327 return v || [ ];
4328 }
4329 },
4330
4331 formvalue: function(sid)
4332 {
4333 var inputs = $('#' + this.id(sid) + ' input');
4334
4335 if (!this.options.multiple)
4336 {
4337 for (var i = 0; i < inputs.length; i++)
4338 if (inputs[i].checked && inputs[i].value !== '')
4339 return inputs[i].value;
4340
4341 return undefined;
4342 }
4343
4344 var rv = [ ];
4345
4346 for (var i = 0; i < inputs.length; i++)
4347 if (inputs[i].checked)
4348 rv.push(inputs[i].value);
4349
4350 return rv.length ? rv : undefined;
4351 }
4352 });
4353
4354
4355 this.cbi.AbstractSection = AbstractWidget.extend({
4356 id: function()
4357 {
4358 var s = [ arguments[0], this.map.uci_package, this.uci_type ];
4359
4360 for (var i = 1; i < arguments.length; i++)
4361 s.push(arguments[i].replace(/\./g, '_'));
4362
4363 return s.join('_');
4364 },
4365
4366 option: function(widget, name, options)
4367 {
4368 if (this.tabs.length == 0)
4369 this.tab({ id: '__default__', selected: true });
4370
4371 return this.taboption('__default__', widget, name, options);
4372 },
4373
4374 tab: function(options)
4375 {
4376 if (options.selected)
4377 this.tabs.selected = this.tabs.length;
4378
4379 this.tabs.push({
4380 id: options.id,
4381 caption: options.caption,
4382 description: options.description,
4383 fields: [ ],
4384 li: { }
4385 });
4386 },
4387
4388 taboption: function(tabid, widget, name, options)
4389 {
4390 var tab;
4391 for (var i = 0; i < this.tabs.length; i++)
4392 {
4393 if (this.tabs[i].id == tabid)
4394 {
4395 tab = this.tabs[i];
4396 break;
4397 }
4398 }
4399
4400 if (!tab)
4401 throw 'Cannot append to unknown tab ' + tabid;
4402
4403 var w = widget ? new widget(name, options) : null;
4404
4405 if (!(w instanceof _luci2.cbi.AbstractValue))
4406 throw 'Widget must be an instance of AbstractValue';
4407
4408 w.section = this;
4409 w.map = this.map;
4410
4411 this.fields[name] = w;
4412 tab.fields.push(w);
4413
4414 return w;
4415 },
4416
4417 ucipackages: function(pkg)
4418 {
4419 for (var i = 0; i < this.tabs.length; i++)
4420 for (var j = 0; j < this.tabs[i].fields.length; j++)
4421 if (this.tabs[i].fields[j].options.uci_package)
4422 pkg[this.tabs[i].fields[j].options.uci_package] = true;
4423 },
4424
4425 formvalue: function()
4426 {
4427 var rv = { };
4428
4429 this.sections(function(s) {
4430 var sid = s['.name'];
4431 var sv = rv[sid] || (rv[sid] = { });
4432
4433 for (var i = 0; i < this.tabs.length; i++)
4434 for (var j = 0; j < this.tabs[i].fields.length; j++)
4435 {
4436 var val = this.tabs[i].fields[j].formvalue(sid);
4437 sv[this.tabs[i].fields[j].name] = val;
4438 }
4439 });
4440
4441 return rv;
4442 },
4443
4444 validate: function(sid)
4445 {
4446 var rv = true;
4447
4448 if (!sid)
4449 {
4450 var as = this.sections();
4451 for (var i = 0; i < as.length; i++)
4452 if (!this.validate(as[i]['.name']))
4453 rv = false;
4454 return rv;
4455 }
4456
4457 var inst = this.instance[sid];
4458 var sv = rv[sid] || (rv[sid] = { });
4459
4460 var invals = 0;
4461 var legend = $('#' + this.id('sort', sid)).find('legend:first');
4462
4463 legend.children('span').detach();
4464
4465 for (var i = 0; i < this.tabs.length; i++)
4466 {
4467 var inval = 0;
4468 var tab = $('#' + this.id('tabhead', sid, this.tabs[i].id));
4469
4470 tab.children('span').detach();
4471
4472 for (var j = 0; j < this.tabs[i].fields.length; j++)
4473 if (!this.tabs[i].fields[j].validate(sid))
4474 inval++;
4475
4476 if (inval > 0)
4477 {
4478 $('<span />')
4479 .addClass('badge')
4480 .attr('title', _luci2.tr('%d Errors'.format(inval)))
4481 .text(inval)
4482 .appendTo(tab);
4483
4484 invals += inval;
4485 tab = null;
4486 rv = false;
4487 }
4488 }
4489
4490 if (invals > 0)
4491 $('<span />')
4492 .addClass('badge')
4493 .attr('title', _luci2.tr('%d Errors'.format(invals)))
4494 .text(invals)
4495 .appendTo(legend);
4496
4497 return rv;
4498 }
4499 });
4500
4501 this.cbi.TypedSection = this.cbi.AbstractSection.extend({
4502 init: function(uci_type, options)
4503 {
4504 this.uci_type = uci_type;
4505 this.options = options;
4506 this.tabs = [ ];
4507 this.fields = { };
4508 this.active_panel = 0;
4509 this.active_tab = { };
4510 },
4511
4512 filter: function(section)
4513 {
4514 return true;
4515 },
4516
4517 sections: function(cb)
4518 {
4519 var s1 = this.map.ucisections(this.map.uci_package);
4520 var s2 = [ ];
4521
4522 for (var i = 0; i < s1.length; i++)
4523 if (s1[i]['.type'] == this.uci_type)
4524 if (this.filter(s1[i]))
4525 s2.push(s1[i]);
4526
4527 if (typeof(cb) == 'function')
4528 for (var i = 0; i < s2.length; i++)
4529 cb.apply(this, [ s2[i] ]);
4530
4531 return s2;
4532 },
4533
4534 add: function(name)
4535 {
4536 this.map.add(this.map.uci_package, this.uci_type, name);
4537 },
4538
4539 remove: function(sid)
4540 {
4541 this.map.remove(this.map.uci_package, sid);
4542 },
4543
4544 _add: function(ev)
4545 {
4546 var addb = $(this);
4547 var name = undefined;
4548 var self = ev.data.self;
4549
4550 if (addb.prev().prop('nodeName') == 'INPUT')
4551 name = addb.prev().val();
4552
4553 if (addb.prop('disabled') || name === '')
4554 return;
4555
4556 _luci2.ui.saveScrollTop();
4557
4558 self.active_panel = -1;
4559 self.map.save();
4560 self.add(name);
4561 self.map.redraw();
4562
4563 _luci2.ui.restoreScrollTop();
4564 },
4565
4566 _remove: function(ev)
4567 {
4568 var self = ev.data.self;
4569 var sid = ev.data.sid;
4570
4571 if (ev.data.index == (self.sections().length - 1))
4572 self.active_panel = -1;
4573
4574 _luci2.ui.saveScrollTop();
4575
4576 self.map.save();
4577 self.remove(sid);
4578 self.map.redraw();
4579
4580 _luci2.ui.restoreScrollTop();
4581
4582 ev.stopPropagation();
4583 },
4584
4585 _sid: function(ev)
4586 {
4587 var self = ev.data.self;
4588 var text = $(this);
4589 var addb = text.next();
4590 var errt = addb.next();
4591 var name = text.val();
4592 var used = false;
4593
4594 if (!/^[a-zA-Z0-9_]*$/.test(name))
4595 {
4596 errt.text(_luci2.tr('Invalid section name')).show();
4597 text.addClass('error');
4598 addb.prop('disabled', true);
4599 return false;
4600 }
4601
4602 for (var sid in self.map.uci.values[self.map.uci_package])
4603 if (sid == name)
4604 {
4605 used = true;
4606 break;
4607 }
4608
4609 for (var sid in self.map.uci.creates[self.map.uci_package])
4610 if (sid == name)
4611 {
4612 used = true;
4613 break;
4614 }
4615
4616 if (used)
4617 {
4618 errt.text(_luci2.tr('Name already used')).show();
4619 text.addClass('error');
4620 addb.prop('disabled', true);
4621 return false;
4622 }
4623
4624 errt.text('').hide();
4625 text.removeClass('error');
4626 addb.prop('disabled', false);
4627 return true;
4628 },
4629
4630 teaser: function(sid)
4631 {
4632 var tf = this.teaser_fields;
4633
4634 if (!tf)
4635 {
4636 tf = this.teaser_fields = [ ];
4637
4638 if ($.isArray(this.options.teasers))
4639 {
4640 for (var i = 0; i < this.options.teasers.length; i++)
4641 {
4642 var f = this.options.teasers[i];
4643 if (f instanceof _luci2.cbi.AbstractValue)
4644 tf.push(f);
4645 else if (typeof(f) == 'string' && this.fields[f] instanceof _luci2.cbi.AbstractValue)
4646 tf.push(this.fields[f]);
4647 }
4648 }
4649 else
4650 {
4651 for (var i = 0; tf.length <= 5 && i < this.tabs.length; i++)
4652 for (var j = 0; tf.length <= 5 && j < this.tabs[i].fields.length; j++)
4653 tf.push(this.tabs[i].fields[j]);
4654 }
4655 }
4656
4657 var t = '';
4658
4659 for (var i = 0; i < tf.length; i++)
4660 {
4661 if (tf[i].instance[sid] && tf[i].instance[sid].disabled)
4662 continue;
4663
4664 var n = tf[i].options.caption || tf[i].name;
4665 var v = tf[i].textvalue(sid);
4666
4667 if (typeof(v) == 'undefined')
4668 continue;
4669
4670 t = t + '%s%s: <strong>%s</strong>'.format(t ? ' | ' : '', n, v);
4671 }
4672
4673 return t;
4674 },
4675
4676 _render_add: function()
4677 {
4678 var text = _luci2.tr('Add section');
4679 var ttip = _luci2.tr('Create new section...');
4680
4681 if ($.isArray(this.options.add_caption))
4682 text = this.options.add_caption[0], ttip = this.options.add_caption[1];
4683 else if (typeof(this.options.add_caption) == 'string')
4684 text = this.options.add_caption, ttip = '';
4685
4686 var add = $('<div />').addClass('cbi-section-add');
4687
4688 if (this.options.anonymous === false)
4689 {
4690 $('<input />')
4691 .addClass('cbi-input-text')
4692 .attr('type', 'text')
4693 .attr('placeholder', ttip)
4694 .blur({ self: this }, this._sid)
4695 .keyup({ self: this }, this._sid)
4696 .appendTo(add);
4697
4698 $('<img />')
4699 .attr('src', _luci2.globals.resource + '/icons/cbi/add.gif')
4700 .attr('title', text)
4701 .addClass('cbi-button')
4702 .click({ self: this }, this._add)
4703 .appendTo(add);
4704
4705 $('<div />')
4706 .addClass('cbi-value-error')
4707 .hide()
4708 .appendTo(add);
4709 }
4710 else
4711 {
4712 $('<input />')
4713 .attr('type', 'button')
4714 .addClass('cbi-button')
4715 .addClass('cbi-button-add')
4716 .val(text).attr('title', ttip)
4717 .click({ self: this }, this._add)
4718 .appendTo(add)
4719 }
4720
4721 return add;
4722 },
4723
4724 _render_remove: function(sid, index)
4725 {
4726 var text = _luci2.tr('Remove');
4727 var ttip = _luci2.tr('Remove this section');
4728
4729 if ($.isArray(this.options.remove_caption))
4730 text = this.options.remove_caption[0], ttip = this.options.remove_caption[1];
4731 else if (typeof(this.options.remove_caption) == 'string')
4732 text = this.options.remove_caption, ttip = '';
4733
4734 return $('<input />')
4735 .attr('type', 'button')
4736 .addClass('cbi-button')
4737 .addClass('cbi-button-remove')
4738 .val(text).attr('title', ttip)
4739 .click({ self: this, sid: sid, index: index }, this._remove);
4740 },
4741
4742 _render_caption: function(sid)
4743 {
4744 if (typeof(this.options.caption) == 'string')
4745 {
4746 return $('<legend />')
4747 .text(this.options.caption.format(sid));
4748 }
4749 else if (typeof(this.options.caption) == 'function')
4750 {
4751 return $('<legend />')
4752 .text(this.options.caption.call(this, sid));
4753 }
4754
4755 return '';
4756 },
4757
4758 render: function()
4759 {
4760 var allsections = $();
4761 var panel_index = 0;
4762
4763 this.instance = { };
4764
4765 var s = this.sections();
4766
4767 if (s.length == 0)
4768 {
4769 var fieldset = $('<fieldset />')
4770 .addClass('cbi-section');
4771
4772 var head = $('<div />')
4773 .addClass('cbi-section-head')
4774 .appendTo(fieldset);
4775
4776 head.append(this._render_caption(undefined));
4777
4778 if (typeof(this.options.description) == 'string')
4779 {
4780 $('<div />')
4781 .addClass('cbi-section-descr')
4782 .text(this.options.description)
4783 .appendTo(head);
4784 }
4785
4786 allsections = allsections.add(fieldset);
4787 }
4788
4789 for (var i = 0; i < s.length; i++)
4790 {
4791 var sid = s[i]['.name'];
4792 var inst = this.instance[sid] = { tabs: [ ] };
4793
4794 var fieldset = $('<fieldset />')
4795 .attr('id', this.id('sort', sid))
4796 .addClass('cbi-section');
4797
4798 var head = $('<div />')
4799 .addClass('cbi-section-head')
4800 .attr('cbi-section-num', this.index)
4801 .attr('cbi-section-id', sid);
4802
4803 head.append(this._render_caption(sid));
4804
4805 if (typeof(this.options.description) == 'string')
4806 {
4807 $('<div />')
4808 .addClass('cbi-section-descr')
4809 .text(this.options.description)
4810 .appendTo(head);
4811 }
4812
4813 var teaser;
4814 if ((s.length > 1 && this.options.collabsible) || this.map.options.collabsible)
4815 teaser = $('<div />')
4816 .addClass('cbi-section-teaser')
4817 .appendTo(head);
4818
4819 if (this.options.addremove)
4820 $('<div />')
4821 .addClass('cbi-section-remove')
4822 .addClass('right')
4823 .append(this._render_remove(sid, panel_index))
4824 .appendTo(head);
4825
4826 var body = $('<div />')
4827 .attr('index', panel_index++);
4828
4829 var fields = $('<fieldset />')
4830 .addClass('cbi-section-node');
4831
4832 if (this.tabs.length > 1)
4833 {
4834 var menu = $('<ul />')
4835 .addClass('cbi-tabmenu');
4836
4837 for (var j = 0; j < this.tabs.length; j++)
4838 {
4839 var tabid = this.id('tab', sid, this.tabs[j].id);
4840 var theadid = this.id('tabhead', sid, this.tabs[j].id);
4841
4842 var tabc = $('<div />')
4843 .addClass('cbi-tabcontainer')
4844 .attr('id', tabid)
4845 .attr('index', j);
4846
4847 if (typeof(this.tabs[j].description) == 'string')
4848 {
4849 $('<div />')
4850 .addClass('cbi-tab-descr')
4851 .text(this.tabs[j].description)
4852 .appendTo(tabc);
4853 }
4854
4855 for (var k = 0; k < this.tabs[j].fields.length; k++)
4856 this.tabs[j].fields[k].render(sid).appendTo(tabc);
4857
4858 tabc.appendTo(fields);
4859 tabc = null;
4860
4861 $('<li />').attr('id', theadid).append(
4862 $('<a />')
4863 .text(this.tabs[j].caption.format(this.tabs[j].id))
4864 .attr('href', '#' + tabid)
4865 ).appendTo(menu);
4866 }
4867
4868 menu.appendTo(body);
4869 menu = null;
4870
4871 fields.appendTo(body);
4872 fields = null;
4873
4874 var t = body.tabs({ active: this.active_tab[sid] });
4875
4876 t.on('tabsactivate', { self: this, sid: sid }, function(ev, ui) {
4877 var d = ev.data;
4878 d.self.validate();
4879 d.self.active_tab[d.sid] = parseInt(ui.newPanel.attr('index'));
4880 });
4881 }
4882 else
4883 {
4884 for (var j = 0; j < this.tabs[0].fields.length; j++)
4885 this.tabs[0].fields[j].render(sid).appendTo(fields);
4886
4887 fields.appendTo(body);
4888 fields = null;
4889 }
4890
4891 head.appendTo(fieldset);
4892 head = null;
4893
4894 body.appendTo(fieldset);
4895 body = null;
4896
4897 allsections = allsections.add(fieldset);
4898 fieldset = null;
4899
4900 //this.validate(sid);
4901 //
4902 //if (teaser)
4903 // teaser.append(this.teaser(sid));
4904 }
4905
4906 if (this.options.collabsible && s.length > 1)
4907 {
4908 var a = $('<div />').append(allsections).accordion({
4909 header: '> fieldset > div.cbi-section-head',
4910 heightStyle: 'content',
4911 active: this.active_panel
4912 });
4913
4914 a.on('accordionbeforeactivate', { self: this }, function(ev, ui) {
4915 var h = ui.oldHeader;
4916 var s = ev.data.self;
4917 var i = h.attr('cbi-section-id');
4918
4919 h.children('.cbi-section-teaser').empty().append(s.teaser(i));
4920 s.validate();
4921 });
4922
4923 a.on('accordionactivate', { self: this }, function(ev, ui) {
4924 ev.data.self.active_panel = parseInt(ui.newPanel.attr('index'));
4925 });
4926
4927 if (this.options.sortable)
4928 {
4929 var s = a.sortable({
4930 axis: 'y',
4931 handle: 'div.cbi-section-head'
4932 });
4933
4934 s.on('sortupdate', { self: this, ids: s.sortable('toArray') }, function(ev, ui) {
4935 var sections = [ ];
4936 for (var i = 0; i < ev.data.ids.length; i++)
4937 sections.push(ev.data.ids[i].substring(ev.data.ids[i].lastIndexOf('.') + 1));
4938 _luci2.uci.order(ev.data.self.map.uci_package, sections);
4939 });
4940
4941 s.on('sortstop', function(ev, ui) {
4942 ui.item.children('div.cbi-section-head').triggerHandler('focusout');
4943 });
4944 }
4945
4946 if (this.options.addremove)
4947 this._render_add().appendTo(a);
4948
4949 return a;
4950 }
4951
4952 if (this.options.addremove)
4953 allsections = allsections.add(this._render_add());
4954
4955 return allsections;
4956 },
4957
4958 finish: function()
4959 {
4960 var s = this.sections();
4961
4962 for (var i = 0; i < s.length; i++)
4963 {
4964 var sid = s[i]['.name'];
4965
4966 this.validate(sid);
4967
4968 $('#' + this.id('sort', sid))
4969 .children('.cbi-section-head')
4970 .children('.cbi-section-teaser')
4971 .append(this.teaser(sid));
4972 }
4973 }
4974 });
4975
4976 this.cbi.TableSection = this.cbi.TypedSection.extend({
4977 render: function()
4978 {
4979 var allsections = $();
4980 var panel_index = 0;
4981
4982 this.instance = { };
4983
4984 var s = this.sections();
4985
4986 var fieldset = $('<fieldset />')
4987 .addClass('cbi-section');
4988
4989 fieldset.append(this._render_caption(sid));
4990
4991 if (typeof(this.options.description) == 'string')
4992 {
4993 $('<div />')
4994 .addClass('cbi-section-descr')
4995 .text(this.options.description)
4996 .appendTo(fieldset);
4997 }
4998
4999 var fields = $('<div />')
5000 .addClass('cbi-section-node')
5001 .appendTo(fieldset);
5002
5003 var table = $('<table />')
5004 .addClass('cbi-section-table')
5005 .appendTo(fields);
5006
5007 var thead = $('<thead />')
5008 .append($('<tr />').addClass('cbi-section-table-titles'))
5009 .appendTo(table);
5010
5011 for (var j = 0; j < this.tabs[0].fields.length; j++)
5012 $('<th />')
5013 .addClass('cbi-section-table-cell')
5014 .css('width', this.tabs[0].fields[j].options.width || '')
5015 .append(this.tabs[0].fields[j].options.caption)
5016 .appendTo(thead.children());
5017
5018 if (this.options.sortable)
5019 $('<th />').addClass('cbi-section-table-cell').text(' ').appendTo(thead.children());
5020
5021 if (this.options.addremove !== false)
5022 $('<th />').addClass('cbi-section-table-cell').text(' ').appendTo(thead.children());
5023
5024 var tbody = $('<tbody />')
5025 .appendTo(table);
5026
5027 if (s.length == 0)
5028 {
5029 $('<tr />')
5030 .addClass('cbi-section-table-row')
5031 .append(
5032 $('<td />')
5033 .addClass('cbi-section-table-cell')
5034 .addClass('cbi-section-table-placeholder')
5035 .attr('colspan', thead.children().children().length)
5036 .text(this.options.placeholder || _luci2.tr('This section contains no values yet')))
5037 .appendTo(tbody);
5038 }
5039
5040 for (var i = 0; i < s.length; i++)
5041 {
5042 var sid = s[i]['.name'];
5043 var inst = this.instance[sid] = { tabs: [ ] };
5044
5045 var row = $('<tr />')
5046 .addClass('cbi-section-table-row')
5047 .appendTo(tbody);
5048
5049 for (var j = 0; j < this.tabs[0].fields.length; j++)
5050 {
5051 $('<td />')
5052 .addClass('cbi-section-table-cell')
5053 .css('width', this.tabs[0].fields[j].options.width || '')
5054 .append(this.tabs[0].fields[j].render(sid, true))
5055 .appendTo(row);
5056 }
5057
5058 if (this.options.sortable)
5059 {
5060 $('<td />')
5061 .addClass('cbi-section-table-cell')
5062 .addClass('cbi-section-table-sort')
5063 .append($('<img />').attr('src', _luci2.globals.resource + '/icons/cbi/up.gif').attr('title', _luci2.tr('Drag to sort')))
5064 .append($('<br />'))
5065 .append($('<img />').attr('src', _luci2.globals.resource + '/icons/cbi/down.gif').attr('title', _luci2.tr('Drag to sort')))
5066 .appendTo(row);
5067 }
5068
5069 if (this.options.addremove !== false)
5070 {
5071 $('<td />')
5072 .addClass('cbi-section-table-cell')
5073 .append(this._render_remove(sid))
5074 .appendTo(row);
5075 }
5076
5077 this.validate(sid);
5078
5079 row = null;
5080 }
5081
5082 if (this.options.sortable)
5083 {
5084 var s = tbody.sortable({
5085 handle: 'td.cbi-section-table-sort'
5086 });
5087
5088 s.on('sortupdate', { self: this, ids: s.sortable('toArray') }, function(ev, ui) {
5089 var sections = [ ];
5090 for (var i = 0; i < ev.data.ids.length; i++)
5091 sections.push(ev.data.ids[i].substring(ev.data.ids[i].lastIndexOf('.') + 1));
5092 _luci2.uci.order(ev.data.self.map.uci_package, sections);
5093 });
5094
5095 s.on('sortstop', function(ev, ui) {
5096 ui.item.children('div.cbi-section-head').triggerHandler('focusout');
5097 });
5098 }
5099
5100 if (this.options.addremove)
5101 this._render_add().appendTo(fieldset);
5102
5103 fields = table = thead = tbody = null;
5104
5105 return fieldset;
5106 }
5107 });
5108
5109 this.cbi.NamedSection = this.cbi.TypedSection.extend({
5110 sections: function(cb)
5111 {
5112 var sa = [ ];
5113 var pkg = this.map.uci.values[this.map.uci_package];
5114
5115 for (var s in pkg)
5116 if (pkg[s]['.name'] == this.uci_type)
5117 {
5118 sa.push(pkg[s]);
5119 break;
5120 }
5121
5122 if (typeof(cb) == 'function' && sa.length > 0)
5123 cb.apply(this, [ sa[0] ]);
5124
5125 return sa;
5126 }
5127 });
5128
5129 this.cbi.DummySection = this.cbi.TypedSection.extend({
5130 sections: function(cb)
5131 {
5132 if (typeof(cb) == 'function')
5133 cb.apply(this, [ { '.name': this.uci_type } ]);
5134
5135 return [ { '.name': this.uci_type } ];
5136 }
5137 });
5138
5139 this.cbi.Map = AbstractWidget.extend({
5140 init: function(uci_package, options)
5141 {
5142 var self = this;
5143
5144 this.uci_package = uci_package;
5145 this.sections = [ ];
5146 this.options = _luci2.defaults(options, {
5147 save: function() { },
5148 prepare: function() {
5149 return _luci2.uci.writable(function(writable) {
5150 self.options.readonly = !writable;
5151 });
5152 }
5153 });
5154 },
5155
5156 load: function()
5157 {
5158 this.uci = {
5159 newid: 0,
5160 values: { },
5161 creates: { },
5162 changes: { },
5163 deletes: { }
5164 };
5165
5166 if (typeof(this.active_panel) == 'undefined')
5167 this.active_panel = 0;
5168
5169 var packages = { };
5170
5171 for (var i = 0; i < this.sections.length; i++)
5172 this.sections[i].ucipackages(packages);
5173
5174 packages[this.uci_package] = true;
5175
5176 var load_cb = this._load_cb || (this._load_cb = $.proxy(function(packages) {
5177 for (var i = 0; i < packages.length; i++)
5178 {
5179 this.uci.values[packages[i]['.package']] = packages[i];
5180 delete packages[i]['.package'];
5181 }
5182
5183 var deferreds = [ _luci2.deferrable(this.options.prepare()) ];
5184
5185 for (var i = 0; i < this.sections.length; i++)
5186 {
5187 for (var f in this.sections[i].fields)
5188 {
5189 if (typeof(this.sections[i].fields[f].load) != 'function')
5190 continue;
5191
5192 var s = this.sections[i].sections();
5193 for (var j = 0; j < s.length; j++)
5194 {
5195 var rv = this.sections[i].fields[f].load(s[j]['.name']);
5196 if (_luci2.isDeferred(rv))
5197 deferreds.push(rv);
5198 }
5199 }
5200 }
5201
5202 return $.when.apply($, deferreds);
5203 }, this));
5204
5205 _luci2.rpc.batch();
5206
5207 for (var pkg in packages)
5208 _luci2.uci.get_all(pkg);
5209
5210 return _luci2.rpc.flush().then(load_cb);
5211 },
5212
5213 render: function()
5214 {
5215 var map = $('<div />').addClass('cbi-map');
5216
5217 if (typeof(this.options.caption) == 'string')
5218 $('<h2 />').text(this.options.caption).appendTo(map);
5219
5220 if (typeof(this.options.description) == 'string')
5221 $('<div />').addClass('cbi-map-descr').text(this.options.description).appendTo(map);
5222
5223 var sections = $('<div />').appendTo(map);
5224
5225 for (var i = 0; i < this.sections.length; i++)
5226 {
5227 var s = this.sections[i].render();
5228
5229 if (this.options.readonly || this.sections[i].options.readonly)
5230 s.find('input, select, button, img.cbi-button').attr('disabled', true);
5231
5232 s.appendTo(sections);
5233
5234 if (this.sections[i].options.active)
5235 this.active_panel = i;
5236 }
5237
5238 if (this.options.collabsible)
5239 {
5240 var a = sections.accordion({
5241 header: '> fieldset > div.cbi-section-head',
5242 heightStyle: 'content',
5243 active: this.active_panel
5244 });
5245
5246 a.on('accordionbeforeactivate', { self: this }, function(ev, ui) {
5247 var h = ui.oldHeader;
5248 var s = ev.data.self.sections[parseInt(h.attr('cbi-section-num'))];
5249 var i = h.attr('cbi-section-id');
5250
5251 h.children('.cbi-section-teaser').empty().append(s.teaser(i));
5252
5253 for (var i = 0; i < ev.data.self.sections.length; i++)
5254 ev.data.self.sections[i].validate();
5255 });
5256
5257 a.on('accordionactivate', { self: this }, function(ev, ui) {
5258 ev.data.self.active_panel = parseInt(ui.newPanel.attr('index'));
5259 });
5260 }
5261
5262 if (this.options.pageaction !== false)
5263 {
5264 var a = $('<div />')
5265 .addClass('cbi-page-actions')
5266 .appendTo(map);
5267
5268 $('<input />')
5269 .addClass('cbi-button').addClass('cbi-button-apply')
5270 .attr('type', 'button')
5271 .val(_luci2.tr('Save & Apply'))
5272 .appendTo(a);
5273
5274 $('<input />')
5275 .addClass('cbi-button').addClass('cbi-button-save')
5276 .attr('type', 'button')
5277 .val(_luci2.tr('Save'))
5278 .click({ self: this }, function(ev) { ev.data.self.send(); })
5279 .appendTo(a);
5280
5281 $('<input />')
5282 .addClass('cbi-button').addClass('cbi-button-reset')
5283 .attr('type', 'button')
5284 .val(_luci2.tr('Reset'))
5285 .click({ self: this }, function(ev) { ev.data.self.insertInto(ev.data.self.target); })
5286 .appendTo(a);
5287
5288 a = null;
5289 }
5290
5291 var top = $('<form />').append(map);
5292
5293 map = null;
5294
5295 return top;
5296 },
5297
5298 finish: function()
5299 {
5300 for (var i = 0; i < this.sections.length; i++)
5301 this.sections[i].finish();
5302
5303 this.validate();
5304 },
5305
5306 redraw: function()
5307 {
5308 this.target.hide().empty().append(this.render());
5309 this.finish();
5310 this.target.show();
5311 },
5312
5313 section: function(widget, uci_type, options)
5314 {
5315 var w = widget ? new widget(uci_type, options) : null;
5316
5317 if (!(w instanceof _luci2.cbi.AbstractSection))
5318 throw 'Widget must be an instance of AbstractSection';
5319
5320 w.map = this;
5321 w.index = this.sections.length;
5322
5323 this.sections.push(w);
5324 return w;
5325 },
5326
5327 formvalue: function()
5328 {
5329 var rv = { };
5330
5331 for (var i = 0; i < this.sections.length; i++)
5332 {
5333 var sids = this.sections[i].formvalue();
5334 for (var sid in sids)
5335 {
5336 var s = rv[sid] || (rv[sid] = { });
5337 $.extend(s, sids[sid]);
5338 }
5339 }
5340
5341 return rv;
5342 },
5343
5344 add: function(conf, type, name)
5345 {
5346 var c = this.uci.creates;
5347 var s = '.new.%d'.format(this.uci.newid++);
5348
5349 if (!c[conf])
5350 c[conf] = { };
5351
5352 c[conf][s] = {
5353 '.type': type,
5354 '.name': s,
5355 '.create': name,
5356 '.anonymous': !name
5357 };
5358
5359 return s;
5360 },
5361
5362 remove: function(conf, sid)
5363 {
5364 var n = this.uci.creates;
5365 var c = this.uci.changes;
5366 var d = this.uci.deletes;
5367
5368 /* requested deletion of a just created section */
5369 if (sid.indexOf('.new.') == 0)
5370 {
5371 if (n[conf])
5372 delete n[conf][sid];
5373 }
5374 else
5375 {
5376 if (c[conf])
5377 delete c[conf][sid];
5378
5379 if (!d[conf])
5380 d[conf] = { };
5381
5382 d[conf][sid] = true;
5383 }
5384 },
5385
5386 ucisections: function(conf, cb)
5387 {
5388 var sa = [ ];
5389 var pkg = this.uci.values[conf];
5390 var crt = this.uci.creates[conf];
5391 var del = this.uci.deletes[conf];
5392
5393 if (!pkg)
5394 return sa;
5395
5396 for (var s in pkg)
5397 if (!del || del[s] !== true)
5398 sa.push(pkg[s]);
5399
5400 sa.sort(function(a, b) { return a['.index'] - b['.index'] });
5401
5402 if (crt)
5403 for (var s in crt)
5404 sa.push(crt[s]);
5405
5406 if (typeof(cb) == 'function')
5407 for (var i = 0; i < sa.length; i++)
5408 cb.apply(this, [ sa[i] ]);
5409
5410 return sa;
5411 },
5412
5413 get: function(conf, sid, opt)
5414 {
5415 var v = this.uci.values;
5416 var n = this.uci.creates;
5417 var c = this.uci.changes;
5418 var d = this.uci.deletes;
5419
5420 /* requested option in a just created section */
5421 if (sid.indexOf('.new.') == 0)
5422 {
5423 if (!n[conf])
5424 return undefined;
5425
5426 if (typeof(opt) == 'undefined')
5427 return (n[conf][sid] || { });
5428
5429 return n[conf][sid][opt];
5430 }
5431
5432 /* requested an option value */
5433 if (typeof(opt) != 'undefined')
5434 {
5435 /* check whether option was deleted */
5436 if (d[conf] && d[conf][sid])
5437 {
5438 if (d[conf][sid] === true)
5439 return undefined;
5440
5441 for (var i = 0; i < d[conf][sid].length; i++)
5442 if (d[conf][sid][i] == opt)
5443 return undefined;
5444 }
5445
5446 /* check whether option was changed */
5447 if (c[conf] && c[conf][sid] && typeof(c[conf][sid][opt]) != 'undefined')
5448 return c[conf][sid][opt];
5449
5450 /* return base value */
5451 if (v[conf] && v[conf][sid])
5452 return v[conf][sid][opt];
5453
5454 return undefined;
5455 }
5456
5457 /* requested an entire section */
5458 if (v[conf])
5459 return (v[conf][sid] || { });
5460
5461 return undefined;
5462 },
5463
5464 set: function(conf, sid, opt, val)
5465 {
5466 var n = this.uci.creates;
5467 var c = this.uci.changes;
5468 var d = this.uci.deletes;
5469
5470 if (sid.indexOf('.new.') == 0)
5471 {
5472 if (n[conf] && n[conf][sid])
5473 {
5474 if (typeof(val) != 'undefined')
5475 n[conf][sid][opt] = val;
5476 else
5477 delete n[conf][sid][opt];
5478 }
5479 }
5480 else if (typeof(val) != 'undefined')
5481 {
5482 if (!c[conf])
5483 c[conf] = { };
5484
5485 if (!c[conf][sid])
5486 c[conf][sid] = { };
5487
5488 c[conf][sid][opt] = val;
5489 }
5490 else
5491 {
5492 if (!d[conf])
5493 d[conf] = { };
5494
5495 if (!d[conf][sid])
5496 d[conf][sid] = [ ];
5497
5498 d[conf][sid].push(opt);
5499 }
5500 },
5501
5502 validate: function()
5503 {
5504 var rv = true;
5505
5506 for (var i = 0; i < this.sections.length; i++)
5507 if (!this.sections[i].validate())
5508 rv = false;
5509
5510 return rv;
5511 },
5512
5513 save: function()
5514 {
5515 if (this.options.readonly)
5516 return _luci2.deferrable();
5517
5518 var deferreds = [ _luci2.deferrable(this.options.save()) ];
5519
5520 for (var i = 0; i < this.sections.length; i++)
5521 {
5522 if (this.sections[i].options.readonly)
5523 continue;
5524
5525 for (var f in this.sections[i].fields)
5526 {
5527 if (typeof(this.sections[i].fields[f].save) != 'function')
5528 continue;
5529
5530 var s = this.sections[i].sections();
5531 for (var j = 0; j < s.length; j++)
5532 {
5533 var rv = this.sections[i].fields[f].save(s[j]['.name']);
5534 if (_luci2.isDeferred(rv))
5535 deferreds.push(rv);
5536 }
5537 }
5538 }
5539
5540 return $.when.apply($, deferreds);
5541 },
5542
5543 send: function()
5544 {
5545 if (!this.validate())
5546 return _luci2.deferrable();
5547
5548 var send_cb = this._send_cb || (this._send_cb = $.proxy(function() {
5549 _luci2.rpc.batch();
5550
5551 if (this.uci.creates)
5552 for (var c in this.uci.creates)
5553 for (var s in this.uci.creates[c])
5554 {
5555 var r = {
5556 config: c,
5557 values: { }
5558 };
5559
5560 for (var k in this.uci.creates[c][s])
5561 {
5562 if (k == '.type')
5563 r.type = this.uci.creates[c][s][k];
5564 else if (k == '.create')
5565 r.name = this.uci.creates[c][s][k];
5566 else if (k.charAt(0) != '.')
5567 r.values[k] = this.uci.creates[c][s][k];
5568 }
5569
5570 _luci2.uci.add(r.config, r.type, r.name, r.values);
5571 }
5572
5573 if (this.uci.changes)
5574 for (var c in this.uci.changes)
5575 for (var s in this.uci.changes[c])
5576 _luci2.uci.set(c, s, this.uci.changes[c][s]);
5577
5578 if (this.uci.deletes)
5579 for (var c in this.uci.deletes)
5580 for (var s in this.uci.deletes[c])
5581 {
5582 var o = this.uci.deletes[c][s];
5583 _luci2.uci['delete'](c, s, (o === true) ? undefined : o);
5584 }
5585
5586 return _luci2.rpc.flush().then(function() {
5587 return _luci2.ui.updateChanges();
5588 });
5589 }, this));
5590
5591 var self = this;
5592
5593 _luci2.ui.saveScrollTop();
5594 _luci2.ui.loading(true);
5595
5596 return this.save().then(send_cb).then(function() {
5597 return self.load();
5598 }).then(function() {
5599 self.redraw();
5600 self = null;
5601
5602 _luci2.ui.loading(false);
5603 _luci2.ui.restoreScrollTop();
5604 });
5605 },
5606
5607 dialog: function(id)
5608 {
5609 var d = $('<div />');
5610 var p = $('<p />');
5611
5612 $('<img />')
5613 .attr('src', _luci2.globals.resource + '/icons/loading.gif')
5614 .css('vertical-align', 'middle')
5615 .css('padding-right', '10px')
5616 .appendTo(p);
5617
5618 p.append(_luci2.tr('Loading data...'));
5619
5620 p.appendTo(d);
5621 d.appendTo(id);
5622
5623 return d.dialog({
5624 modal: true,
5625 draggable: false,
5626 resizable: false,
5627 height: 90,
5628 open: function() {
5629 $(this).parent().children('.ui-dialog-titlebar').hide();
5630 }
5631 });
5632 },
5633
5634 insertInto: function(id)
5635 {
5636 var self = this;
5637 self.target = $(id);
5638
5639 _luci2.ui.loading(true);
5640 self.target.hide();
5641
5642 return self.load().then(function() {
5643 self.target.empty().append(self.render());
5644 self.finish();
5645 self.target.show();
5646 self = null;
5647 _luci2.ui.loading(false);
5648 });
5649 }
5650 });
5651 };