treewide: remove rendundant proto handler options
[project/luci.git] / protocols / luci-proto-ppp / htdocs / luci-static / resources / protocol / pppoe.js
1 'use strict';
2 'require uci';
3 'require form';
4 'require network';
5
6 network.registerPatternVirtual(/^pppoe-.+$/);
7
8 function write_keepalive(section_id, value) {
9 var f_opt = this.map.lookupOption('_keepalive_failure', section_id),
10 i_opt = this.map.lookupOption('_keepalive_interval', section_id),
11 f = (f_opt != null) ? +f_opt[0].formvalue(section_id) : null,
12 i = (i_opt != null) ? +i_opt[0].formvalue(section_id) : null;
13
14 if (f == null || f == '' || isNaN(f))
15 f = 0;
16
17 if (i == null || i == '' || isNaN(i) || i < 1)
18 i = 1;
19
20 if (f > 0)
21 uci.set('network', section_id, 'keepalive', '%d %d'.format(f, i));
22 else
23 uci.unset('network', section_id, 'keepalive');
24 }
25
26 return network.registerProtocol('pppoe', {
27 getI18n: function() {
28 return _('PPPoE');
29 },
30
31 getIfname: function() {
32 return this._ubus('l3_device') || 'pppoe-%s'.format(this.sid);
33 },
34
35 getOpkgPackage: function() {
36 return 'ppp-mod-pppoe';
37 },
38
39 renderFormOptions: function(s) {
40 var dev = this.getL3Device() || this.getDevice(), o;
41
42 s.taboption('general', form.Value, 'username', _('PAP/CHAP username'));
43
44 o = s.taboption('general', form.Value, 'password', _('PAP/CHAP password'));
45 o.password = true;
46
47 o = s.taboption('general', form.Value, 'ac', _('Access Concentrator'), _('Leave empty to autodetect'));
48 o.placeholder = _('auto');
49
50 o = s.taboption('general', form.Value, 'service', _('Service Name'), _('Leave empty to autodetect'));
51 o.placeholder = _('auto');
52
53 if (L.hasSystemFeature('ipv6')) {
54 o = s.taboption('advanced', form.ListValue, 'ipv6', _('Obtain IPv6-Address'), _('Enable IPv6 negotiation on the PPP link'));
55 o.value('auto', _('Automatic'));
56 o.value('0', _('Disabled'));
57 o.value('1', _('Manual'));
58 o.default = 'auto';
59 }
60
61 o = s.taboption('advanced', form.Value, '_keepalive_failure', _('LCP echo failure threshold'), _('Presume peer to be dead after given amount of LCP echo failures, use 0 to ignore failures'));
62 o.placeholder = '0';
63 o.datatype = 'uinteger';
64 o.write = write_keepalive;
65 o.remove = write_keepalive;
66 o.cfgvalue = function(section_id) {
67 var v = uci.get('network', section_id, 'keepalive');
68 if (typeof(v) == 'string' && v != '') {
69 var m = v.match(/^(\d+)[ ,]\d+$/);
70 return m ? m[1] : v;
71 }
72 };
73
74 o = s.taboption('advanced', form.Value, '_keepalive_interval', _('LCP echo interval'), _('Send LCP echo requests at the given interval in seconds, only effective in conjunction with failure threshold'));
75 o.placeholder = '5';
76 o.datatype = 'min(1)';
77 o.write = write_keepalive;
78 o.remove = write_keepalive;
79 o.cfgvalue = function(section_id) {
80 var v = uci.get('network', section_id, 'keepalive');
81 if (typeof(v) == 'string' && v != '') {
82 var m = v.match(/^\d+[ ,](\d+)$/);
83 return m ? m[1] : v;
84 }
85 };
86
87 o = s.taboption('advanced', form.Value, 'host_uniq', _('Host-Uniq tag content'), _('Raw hex-encoded bytes. Leave empty unless your ISP require this'));
88 o.placeholder = _('auto');
89 o.datatype = 'hexstring';
90
91 o = s.taboption('advanced', form.Value, 'demand', _('Inactivity timeout'), _('Close inactive connection after the given amount of seconds, use 0 to persist connection'));
92 o.placeholder = '0';
93 o.datatype = 'uinteger';
94
95 o = s.taboption('advanced', form.Value, 'mtu', _('Override MTU'));
96 o.placeholder = dev ? (dev.getMTU() || '1500') : '1500';
97 o.datatype = 'max(9200)';
98 }
99 });