241 lines
7.7 KiB
JavaScript
241 lines
7.7 KiB
JavaScript
'use strict';
|
|
'require view';
|
|
'require ui';
|
|
'require form';
|
|
'require vhost-manager/api as API';
|
|
'require secubox-theme/theme as Theme';
|
|
'require vhost-manager/ui as VHostUI';
|
|
|
|
var lang = (typeof L !== 'undefined' && L.env && L.env.lang) ||
|
|
(document.documentElement && document.documentElement.getAttribute('lang')) ||
|
|
(navigator.language ? navigator.language.split('-')[0] : 'en');
|
|
Theme.init({ language: lang });
|
|
|
|
function normalizeCerts(payload) {
|
|
if (Array.isArray(payload))
|
|
return payload;
|
|
if (payload && Array.isArray(payload.certificates))
|
|
return payload.certificates;
|
|
return [];
|
|
}
|
|
|
|
function formatDate(value) {
|
|
if (!value)
|
|
return _('N/A');
|
|
try {
|
|
return new Date(value).toLocaleDateString();
|
|
} catch (err) {
|
|
return value;
|
|
}
|
|
}
|
|
|
|
return L.view.extend({
|
|
load: function() {
|
|
return Promise.all([
|
|
API.listVHosts(),
|
|
API.listCerts()
|
|
]);
|
|
},
|
|
|
|
render: function(data) {
|
|
var vhosts = data[0] || [];
|
|
var certs = normalizeCerts(data[1]);
|
|
|
|
var m = this.buildForm();
|
|
|
|
return E('div', { 'class': 'vhost-page' }, [
|
|
E('link', { 'rel': 'stylesheet', 'href': L.resource('secubox-theme/secubox-theme.css') }),
|
|
E('link', { 'rel': 'stylesheet', 'href': L.resource('vhost-manager/common.css') }),
|
|
E('link', { 'rel': 'stylesheet', 'href': L.resource('vhost-manager/dashboard.css') }),
|
|
VHostUI.renderTabs('vhosts'),
|
|
this.renderHeader(vhosts),
|
|
this.renderList(vhosts, certs),
|
|
E('div', { 'class': 'vhost-card' }, [
|
|
E('div', { 'class': 'vhost-card-title' }, ['📝', _('Virtual Host Form')]),
|
|
m.render()
|
|
])
|
|
]);
|
|
},
|
|
|
|
buildForm: function() {
|
|
var m = new form.Map('vhost_manager', null, null);
|
|
var s = m.section(form.GridSection, 'vhost', _('Virtual Hosts'));
|
|
s.anonymous = false;
|
|
s.addremove = true;
|
|
s.sortable = true;
|
|
s.modaltitle = function(section_id) {
|
|
return _('Edit VHost: ') + section_id;
|
|
};
|
|
|
|
var o;
|
|
|
|
o = s.option(form.Value, 'domain', _('Domain'));
|
|
o.rmempty = false;
|
|
o.placeholder = 'app.example.com';
|
|
o.description = _('Public hostname for this proxy.');
|
|
|
|
o = s.option(form.Value, 'backend', _('Backend URL'));
|
|
o.rmempty = false;
|
|
o.placeholder = 'http://192.168.1.100:8080';
|
|
o.description = _('Upstream origin (HTTP/HTTPS/WebSocket).');
|
|
|
|
o.renderWidget = function(section_id, option_index, cfgvalue) {
|
|
var widget = form.Value.prototype.renderWidget.apply(this, [section_id, option_index, cfgvalue]);
|
|
var testBtn = E('button', {
|
|
'class': 'cbi-button cbi-button-action',
|
|
'style': 'margin-left: 10px',
|
|
'click': function(ev) {
|
|
ev.preventDefault();
|
|
var backend = this.parentNode.querySelector('input').value;
|
|
if (!backend) {
|
|
ui.addNotification(null, E('p', _('Please enter a backend URL')), 'warning');
|
|
return;
|
|
}
|
|
ui.addNotification(null, E('p', _('Testing backend connectivity...')), 'info');
|
|
API.testBackend(backend).then(function(result) {
|
|
if (result.reachable) {
|
|
ui.addNotification(null, E('p', '✓ ' + _('Backend is reachable')), 'info');
|
|
} else {
|
|
ui.addNotification(null, E('p', '✗ ' + _('Backend is unreachable')), 'error');
|
|
}
|
|
});
|
|
}
|
|
}, _('Test'));
|
|
widget.appendChild(testBtn);
|
|
return widget;
|
|
};
|
|
|
|
o = s.option(form.Flag, 'ssl', _('Enable SSL'));
|
|
o.default = o.disabled;
|
|
o.description = _('Serve HTTPS (requires certificate).');
|
|
|
|
o = s.option(form.Flag, 'auth', _('Enable Authentication'));
|
|
o.default = o.disabled;
|
|
o.description = _('Protect with HTTP basic auth.');
|
|
|
|
o = s.option(form.Value, 'auth_user', _('Auth Username'));
|
|
o.depends('auth', '1');
|
|
|
|
o = s.option(form.Value, 'auth_pass', _('Auth Password'));
|
|
o.depends('auth', '1');
|
|
o.password = true;
|
|
|
|
o = s.option(form.Flag, 'websocket', _('WebSocket Support'));
|
|
o.default = o.disabled;
|
|
o.description = _('Forward upgrade headers for WS backends.');
|
|
|
|
s.addModalOptions = function(s, section_id) {
|
|
var domain = this.section.formvalue(section_id, 'domain');
|
|
var backend = this.section.formvalue(section_id, 'backend');
|
|
var ssl = this.section.formvalue(section_id, 'ssl') === '1';
|
|
var auth = this.section.formvalue(section_id, 'auth') === '1';
|
|
var websocket = this.section.formvalue(section_id, 'websocket') === '1';
|
|
|
|
if (!domain || !backend) {
|
|
ui.addNotification(null, E('p', _('Domain and backend are required')), 'error');
|
|
return;
|
|
}
|
|
|
|
API.addVHost(domain, backend, ssl, auth, websocket).then(function(result) {
|
|
if (result.success) {
|
|
ui.addNotification(null, E('p', _('VHost created successfully')), 'info');
|
|
|
|
if (result.reload_required) {
|
|
ui.showModal(_('Reload Nginx?'), [
|
|
E('p', {}, _('Configuration changed. Reload nginx to apply?')),
|
|
E('div', { 'class': 'right' }, [
|
|
E('button', {
|
|
'class': 'cbi-button cbi-button-neutral',
|
|
'click': ui.hideModal
|
|
}, _('Later')),
|
|
E('button', {
|
|
'class': 'cbi-button cbi-button-positive',
|
|
'click': function() {
|
|
API.reloadNginx().then(function(reload_result) {
|
|
ui.hideModal();
|
|
if (reload_result.success) {
|
|
ui.addNotification(null, E('p', '✓ ' + _('Nginx reloaded')), 'info');
|
|
} else {
|
|
ui.addNotification(null, E('p', '✗ ' + reload_result.message), 'error');
|
|
}
|
|
});
|
|
}
|
|
}, _('Reload Now'))
|
|
])
|
|
]);
|
|
}
|
|
} else {
|
|
ui.addNotification(null, E('p', '✗ ' + result.message), 'error');
|
|
}
|
|
});
|
|
};
|
|
|
|
return m;
|
|
},
|
|
|
|
renderHeader: function(vhosts) {
|
|
var sslEnabled = vhosts.filter(function(v) { return v.ssl; }).length;
|
|
var authEnabled = vhosts.filter(function(v) { return v.auth; }).length;
|
|
var websocketEnabled = vhosts.filter(function(v) { return v.websocket; }).length;
|
|
|
|
return E('div', { 'class': 'sh-page-header' }, [
|
|
E('div', {}, [
|
|
E('h2', { 'class': 'sh-page-title' }, [
|
|
E('span', { 'class': 'sh-page-title-icon' }, '🗂️'),
|
|
_('Virtual Hosts')
|
|
]),
|
|
E('p', { 'class': 'sh-page-subtitle' },
|
|
_('Publish LAN services through SecuBox with SSL, auth, and WebSocket support.'))
|
|
]),
|
|
E('div', { 'class': 'sh-stats-grid' }, [
|
|
this.renderStatBadge(vhosts.length, _('Defined')),
|
|
this.renderStatBadge(sslEnabled, _('TLS')),
|
|
this.renderStatBadge(authEnabled, _('Auth')),
|
|
this.renderStatBadge(websocketEnabled, _('WebSocket'))
|
|
])
|
|
]);
|
|
},
|
|
|
|
renderStatBadge: function(value, label) {
|
|
return E('div', { 'class': 'sh-stat-badge' }, [
|
|
E('div', { 'class': 'sh-stat-value' }, value.toString()),
|
|
E('div', { 'class': 'sh-stat-label' }, label)
|
|
]);
|
|
},
|
|
|
|
renderList: function(vhosts, certs) {
|
|
var certMap = {};
|
|
certs.forEach(function(cert) {
|
|
certMap[cert.domain] = cert;
|
|
});
|
|
|
|
if (!vhosts.length) {
|
|
return E('div', { 'class': 'vhost-card' }, [
|
|
E('div', { 'class': 'vhost-card-title' }, ['📂', _('Configured VHosts')]),
|
|
E('div', { 'class': 'vhost-empty' }, _('No vhosts yet — add your first reverse proxy below.'))
|
|
]);
|
|
}
|
|
|
|
return E('div', { 'class': 'vhost-card-grid' },
|
|
vhosts.map(function(vhost) {
|
|
return this.renderVhostCard(vhost, certMap[vhost.domain]);
|
|
}, this)
|
|
);
|
|
},
|
|
|
|
renderVhostCard: function(vhost, cert) {
|
|
var pills = [];
|
|
if (vhost.ssl) pills.push(E('span', { 'class': 'vhost-pill success' }, _('SSL')));
|
|
if (vhost.auth) pills.push(E('span', { 'class': 'vhost-pill warn' }, _('Auth')));
|
|
if (vhost.websocket) pills.push(E('span', { 'class': 'vhost-pill' }, _('WebSocket')));
|
|
|
|
return E('div', { 'class': 'vhost-card' }, [
|
|
E('div', { 'class': 'vhost-card-title' }, ['🌐', vhost.domain || _('Unnamed')]),
|
|
E('div', { 'class': 'vhost-card-meta' }, vhost.backend || _('No backend defined')),
|
|
pills.length ? E('div', { 'class': 'vhost-filter-tags' }, pills) : '',
|
|
E('div', { 'class': 'vhost-card-meta' },
|
|
cert ? _('Certificate expires %s').format(formatDate(cert.expires)) : _('No certificate detected'))
|
|
]);
|
|
}
|
|
});
|