treewide: remove rendundant proto handler options
[project/luci.git] / protocols / luci-proto-ppp / htdocs / luci-static / resources / protocol / pptp.js
1 'use strict';
2 'require uci';
3 'require form';
4 'require network';
5
6 network.registerPatternVirtual(/^pptp-.+$/);
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('pptp', {
27 getI18n: function() {
28 return _('PPtP');
29 },
30
31 getIfname: function() {
32 return this._ubus('l3_device') || 'pptp-%s'.format(this.sid);
33 },
34
35 getOpkgPackage: function() {
36 return 'ppp-mod-pptp';
37 },
38
39 isFloating: function() {
40 return true;
41 },
42
43 isVirtual: function() {
44 return true;
45 },
46
47 getDevices: function() {
48 return null;
49 },
50
51 containsDevice: function(ifname) {
52 return (network.getIfnameOf(ifname) == this.getIfname());
53 },
54
55 renderFormOptions: function(s) {
56 var dev = this.getL3Device() || this.getDevice(), o;
57
58 o = s.taboption('general', form.Value, 'server', _('VPN Server'));
59 o.datatype = 'host(0)';
60
61 s.taboption('general', form.Value, 'username', _('PAP/CHAP username'));
62
63 o = s.taboption('general', form.Value, 'password', _('PAP/CHAP password'));
64 o.password = true;
65
66 if (L.hasSystemFeature('ipv6')) {
67 o = s.taboption('advanced', form.ListValue, 'ipv6', _('Obtain IPv6-Address'), _('Enable IPv6 negotiation on the PPP link'));
68 o.value('auto', _('Automatic'));
69 o.value('0', _('Disabled'));
70 o.value('1', _('Manual'));
71 o.default = 'auto';
72 }
73
74 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'));
75 o.placeholder = '0';
76 o.datatype = 'uinteger';
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, '_keepalive_interval', _('LCP echo interval'), _('Send LCP echo requests at the given interval in seconds, only effective in conjunction with failure threshold'));
88 o.placeholder = '5';
89 o.datatype = 'min(1)';
90 o.write = write_keepalive;
91 o.remove = write_keepalive;
92 o.cfgvalue = function(section_id) {
93 var v = uci.get('network', section_id, 'keepalive');
94 if (typeof(v) == 'string' && v != '') {
95 var m = v.match(/^\d+[ ,](\d+)$/);
96 return m ? m[1] : v;
97 }
98 };
99
100 o = s.taboption('advanced', form.Value, 'demand', _('Inactivity timeout'), _('Close inactive connection after the given amount of seconds, use 0 to persist connection'));
101 o.placeholder = '0';
102 o.datatype = 'uinteger';
103
104 o = s.taboption('advanced', form.Value, 'mtu', _('Override MTU'));
105 o.placeholder = dev ? (dev.getMTU() || '1500') : '1500';
106 o.datatype = 'max(9200)';
107 }
108 });