summaryrefslogtreecommitdiffhomepage
path: root/protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js
blob: b568f17018fe00cc9ddc28bc07cf930bfdd3044a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
'use strict';
'require form';
'require network';

network.registerPatternVirtual(/^sstp-.+$/);

return network.registerProtocol('sstp', {
	getI18n: function() {
		return _('SSTP');
	},

	getIfname: function() {
		return this._ubus('l3_device') || 'sstp-%s'.format(this.sid);
	},

	getOpkgPackage: function() {
		return 'sstp-client';
	},

	isFloating: function() {
		return true;
	},

	isVirtual: function() {
		return true;
	},

	getDevices: function() {
		return null;
	},

	containsDevice: function(ifname) {
		return (network.getIfnameOf(ifname) == this.getIfname());
	},

	renderFormOptions: function(s) {
		var dev = this.getL3Device() || this.getDevice(), o;

		// -- general ---------------------------------------------------------------------

		o = s.taboption('general', form.Value, 'server', _('SSTP Server'));
		o.datatype = 'host';

		o = s.taboption('general', form.Value, 'username', _('PAP/CHAP username'));

		o = s.taboption('general', form.Value, 'password', _('PAP/CHAP password'));
		o.password = true;

		// -- advanced --------------------------------------------------------------------

		o = s.taboption('advanced', form.Flag, 'ipv6', _('IPv6 support'), _('If checked, adds "+ipv6" to the pppd options'));

		o = s.taboption('advanced', form.ListValue, 'log_level', _('sstpc Log-level'));
		o.value('0', _('0', 'sstp log level value'));
		o.value('1', _('1', 'sstp log level value'));
		o.value('2', _('2', 'sstp log level value'));
		o.value('3', _('3', 'sstp log level value'));
		o.value('4', _('4', 'sstp log level value'));
		o.default = '0';

		o = s.taboption('advanced', form.Value, 'mtu', _('Override MTU'));
		o.placeholder = dev ? (dev.getMTU() || '1500') : '1500';
		o.datatype    = 'max(9200)';

		o = s.taboption('advanced', form.Value, 'sstp_options', _('Extra sstpc options'), _('e.g: --proxy 10.10.10.10'));

		o = s.taboption('advanced', form.Value, 'pppd_options', _('Extra pppd options'), _('e.g: dump'));
	}
});