1. you can integrate additional flags within the Extra Settings. 2. refactor UI 3. bump version to v1.1.0.
203 lines
7.0 KiB
JavaScript
203 lines
7.0 KiB
JavaScript
/* SPDX-License-Identifier: GPL-3.0-only
|
|
*
|
|
* Copyright (C) 2024 asvow
|
|
*/
|
|
|
|
'use strict';
|
|
'require form';
|
|
'require fs';
|
|
'require poll';
|
|
'require rpc';
|
|
'require uci';
|
|
'require view';
|
|
|
|
var callServiceList = rpc.declare({
|
|
object: 'service',
|
|
method: 'list',
|
|
params: ['name'],
|
|
expect: { '': {} }
|
|
});
|
|
|
|
function getStatus() {
|
|
var status = {};
|
|
return Promise.resolve(callServiceList('tailscale')).then(function (res) {
|
|
try {
|
|
status.isRunning = res['tailscale']['instances']['instance1']['running'];
|
|
} catch (e) {
|
|
status.isRunning = false;
|
|
}
|
|
return fs.exec("/usr/sbin/tailscale", ["status", "--json"]);
|
|
}).then(function(res) {
|
|
var tailscaleStatus = JSON.parse(res.stdout);
|
|
if (!tailscaleStatus.AuthURL && tailscaleStatus.BackendState == "NeedsLogin") {
|
|
fs.exec("/usr/sbin/tailscale", ["login"]);
|
|
}
|
|
status.backendState = tailscaleStatus.BackendState;
|
|
status.authURL = tailscaleStatus.AuthURL;
|
|
status.displayName = status.backendState == "Running" ? tailscaleStatus.User[tailscaleStatus.Self.UserID].DisplayName : undefined;
|
|
return status;
|
|
}).catch(function(error) {
|
|
status.backendState = undefined;
|
|
status.authURL = undefined;
|
|
status.displayName = undefined;
|
|
return status;
|
|
});
|
|
}
|
|
|
|
function renderStatus(isRunning) {
|
|
var spanTemp = '<em><span style="color:%s"><strong>%s %s</strong></span></em>';
|
|
var renderHTML;
|
|
if (isRunning) {
|
|
renderHTML = String.format(spanTemp, 'green', _('Tailscale'), _('RUNNING'));
|
|
} else {
|
|
renderHTML = String.format(spanTemp, 'red', _('Tailscale'), _('NOT RUNNING'));
|
|
}
|
|
|
|
return renderHTML;
|
|
}
|
|
|
|
function renderLogin(loginStatus, authURL, displayName) {
|
|
var spanTemp = '<span style="color:%s">%s</span>';
|
|
var renderHTML;
|
|
if (loginStatus == "NeedsLogin") {
|
|
renderHTML = String.format('<a href="%s" target="_blank">%s</a>', authURL, _('Needs Login'));
|
|
} else if (loginStatus == "Running") {
|
|
renderHTML = String.format('<a href="%s" target="_blank">%s</a>', 'https://login.tailscale.com/admin/machines', displayName);
|
|
renderHTML += String.format('<br><a style="color:green" id="logout_button">%s</a>', _('Logout and Unbind'));
|
|
} else {
|
|
renderHTML = String.format(spanTemp, 'orange', _('NOT RUNNING'));
|
|
}
|
|
|
|
return renderHTML;
|
|
}
|
|
|
|
return view.extend({
|
|
load: function() {
|
|
return Promise.all([
|
|
uci.load('tailscale')
|
|
]);
|
|
},
|
|
|
|
render: function(data) {
|
|
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.'));
|
|
|
|
s = m.section(form.TypedSection);
|
|
s.anonymous = true;
|
|
s.render = function () {
|
|
poll.add(function() {
|
|
return Promise.resolve(getStatus()).then(function(res) {
|
|
var service_view = document.getElementById("service_status");
|
|
var login_view = document.getElementById("login_status_div");
|
|
service_view.innerHTML = renderStatus(res.isRunning);
|
|
login_view.innerHTML = renderLogin(res.backendState, res.authURL, res.displayName);
|
|
var logoutButton = document.getElementById('logout_button');
|
|
if (logoutButton) {
|
|
logoutButton.onclick = function() {
|
|
if (confirm(_('Are you sure you want to logout and unbind the current device?'))) {
|
|
fs.exec("/usr/sbin/tailscale", ["logout"]);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
return E('div', { class: 'cbi-section', id: 'status_bar' }, [
|
|
E('p', { id: 'service_status' }, _('Collecting data ...'))
|
|
]);
|
|
}
|
|
|
|
s = m.section(form.NamedSection, 'settings', 'config');
|
|
s.tab('basic',_('Basic Settings'));
|
|
|
|
o = s.taboption('basic',form.Flag, 'enabled', _('Enable'));
|
|
o.default = o.disabled;
|
|
o.rmempty = false;
|
|
|
|
o = s.taboption('basic',form.DummyValue, 'login_status', _('Login Status'));
|
|
o.depends('enabled', '1');
|
|
o.renderWidget = function(section_id, option_id) {
|
|
return E('div', { 'id': 'login_status_div' }, _('Collecting data ...'));
|
|
};
|
|
|
|
o = s.taboption('basic',form.Value, 'port', _('Port'), _('Set the Tailscale port number.'));
|
|
o.datatype = 'port';
|
|
o.default = '41641';
|
|
o.rmempty = false;
|
|
|
|
o = s.taboption('basic',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.taboption('basic',form.ListValue, 'fw_mode', _('Firewall Mode'));
|
|
o.value('nftables', 'nftables');
|
|
o.value('iptables', 'iptables');
|
|
o.default = 'nftables';
|
|
o.rmempty = false;
|
|
|
|
o = s.taboption('basic',form.Flag, 'log_stdout', _('StdOut Log'), _('Logging program activities.'));
|
|
o.default = o.enabled;
|
|
o.rmempty = false;
|
|
|
|
o = s.taboption('basic',form.Flag, 'log_stderr', _('StdErr Log'), _('Logging program errors and exceptions.'));
|
|
o.default = o.enabled;
|
|
o.rmempty = false;
|
|
|
|
s.tab('advance',_('Advanced Settings'));
|
|
|
|
o = s.taboption('advance',form.Flag, 'acceptRoutes', _('Auto Mesh'), _('Accept subnet routes that other nodes advertise.'));
|
|
o.default = o.disabled;
|
|
o.rmempty = false;
|
|
|
|
o = s.taboption('advance',form.Value, 'hostname', _('Device Name'), _("Leave blank to use the device's hostname."));
|
|
o.default = '';
|
|
o.rmempty = true;
|
|
|
|
o = s.taboption('advance',form.Flag, 'acceptDNS', _('Accept DNS'), _('Accept DNS configuration from the Tailscale admin console.'));
|
|
o.default = o.enabled;
|
|
o.rmempty = false;
|
|
|
|
o = s.taboption('advance',form.Flag, 'advertiseExitNode', _('Exit Node'), _('Offer to be an exit node for outbound internet traffic from the Tailscale network.'));
|
|
o.default = o.disabled;
|
|
o.rmempty = false;
|
|
|
|
o = s.taboption('advance',form.Value, 'advertiseRoutes', _('Expose Subnets'), _('Expose physical network routes into Tailscale, e.g. <code>10.0.0.0/24</code>.'));
|
|
o.default = '';
|
|
o.depends('acceptRoutes', '1');
|
|
o.rmempty = true;
|
|
|
|
o = s.taboption('advance',form.Flag, 's2s', _('Site To Site'), _('Use site-to-site layer 3 networking to connect subnets on the Tailscale network.'));
|
|
o.default = o.disabled;
|
|
o.depends('acceptRoutes', '1');
|
|
o.rmempty = false;
|
|
|
|
o = s.taboption('advance',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.rmempty = false;
|
|
|
|
s.tab('extra',_('Extra Settings'));
|
|
|
|
o = s.taboption('extra', form.DynamicList, 'flags', _('Additional Flags'), String.format(_('List of extra flags. Format: --flags=value, e.g. <code>--exit-node=10.0.0.1</code>. <br> %s for enabling settings upon the initiation of Tailscale.'), '<a href="https://tailscale.com/kb/1080/cli#up" target="_blank">' + _('Available flags') + '</a>'));
|
|
|
|
s = m.section(form.NamedSection, 'settings', 'config');
|
|
s.title = _('Custom Server Settings');
|
|
s.description = String.format(_('Use %s to deploy a private server.'), '<a href="https://github.com/juanfont/headscale" target="_blank">headscale</a>');
|
|
|
|
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();
|
|
}
|
|
});
|