support for commonly used Tailscale param settings

This commit is contained in:
asvow
2024-01-29 18:06:40 +08:00
parent 02e213b1cd
commit 764d9576be
2 changed files with 204 additions and 30 deletions

View File

@@ -19,7 +19,7 @@ var callServiceList = rpc.declare({
});
function getServiceStatus() {
return L.resolveDefault(callServiceList('tailscale'), {}).then(function (res) {
return Promise.resolve(callServiceList('tailscale')).then(function (res) {
var isRunning = false;
try {
isRunning = res['tailscale']['instances']['instance1']['running'];
@@ -83,8 +83,9 @@ return view.extend({
var m, s, o;
var isRunning = data[1];
m = new form.Map('tailscale', _('Tailscale'),
_('Tailscale is a cross-platform and easy to use virtual LAN.'));
var tailscaleLink = E('a', { href: 'https://login.tailscale.com/admin/machines', target: '_blank' }, _('Tailscale'));
var description = E('span', {}, _(' is a cross-platform and easy to use virtual LAN.'));
m = new form.Map('tailscale', _('Tailscale'), [tailscaleLink, description]);
s = m.section(form.TypedSection);
s.anonymous = true;
@@ -95,23 +96,84 @@ return view.extend({
}
s = m.section(form.NamedSection, 'settings', 'config');
s.title = _('Basic Settings');
o = s.option(form.Flag, 'enabled', _('Enable'));
o.default = o.disabled;
o.rmempty = false;
o = s.option(form.DummyValue, 'login_status', _('Login Status'));
o.depends('enabled', '1');
o.renderWidget = function(section_id, option_id) {
poll.add(function() {
return L.resolveDefault(getLoginStatus()).then(function(res) {
return Promise.resolve(getLoginStatus()).then(function(res) {
document.getElementById('login_status_div').innerHTML = renderLogin(res.backendState, res.authURL);
});
});
return E('div', { 'id': 'login_status_div' }, _('Collecting data ...'));
};
o = s.option(form.Value, 'port', _('Port'), _('Set the Tailscale port number.'));
o.datatype = 'port';
o.default = '41641';
o.rmempty = false;
o = s.option(form.Value, 'config_path', _('Workdir'), _('The working directory contains config files, audit logs, and runtime info.'));
o.default = '/etc/tailscale';
o.rmempty = false;
o = s.option(form.ListValue, 'fw_mode', _('Firewall Mode'));
o.value('nftables', 'nftables');
o.value('iptables', 'iptables');
o.default = 'nftables';
o.rmempty = false;
o = s.option(form.Flag, 'log_stdout', _('Output Log'), _('Logging program activities.'));
o.default = o.enabled;
o.rmempty = false;
o = s.option(form.Flag, 'log_stderr', _('Error Log'), _('Logging program errors and exceptions.'));
o.default = o.enabled;
o.rmempty = false;
s = m.section(form.NamedSection, 'settings', 'config');
s.title = _('Advanced Settings');
o = s.option(form.Flag, 'acceptRoutes', _('Auto NAT clients'), _('Expose physical network routes onto Tailscale.'));
o.default = o.disabled;
o.rmempty = false;
o = s.option(form.Value, 'hostname', _('Hostname'),
_("Leave blank to use the device's hostname."));
o.default = '';
o.rmempty = true;
o = s.option(form.Value, 'advertiseRoutes', _('Expose Subnets'), _('e.g. 10.0.0.0/24'));
o.datatype = 'cidr4';
o.default = '';
o.rmempty = true;
o = s.option(form.MultiValue, 'access', _('Access Control'));
o.value('tsfwlan', _('Tailscale access LAN'));
o.value('tsfwwan', _('Tailscale access WAN'));
o.value('lanfwts', _('LAN access Tailscale'));
o.value('wanfwts', _('WAN access Tailscale'));
o.default = "tsfwlan tsfwwan lanfwts";
o.depends('acceptRoutes', '1');
o.rmempty = false;
s = m.section(form.NamedSection, 'settings', 'config');
s.title = _('Custom Server Settings');
o = s.option(form.Value, 'loginServer', _('Server address'));
o.default = '';
o.rmempty = true;
o = s.option(form.Value, 'authKey', _('Auth Key'));
o.default = '';
o.rmempty = true;
return m.render();
}
});