67 lines
2.0 KiB
JavaScript
67 lines
2.0 KiB
JavaScript
'use strict';
|
|
'require form';
|
|
'require poll';
|
|
'require rpc';
|
|
'require view';
|
|
'require fs';
|
|
|
|
const callServiceList = rpc.declare({
|
|
object: 'service',
|
|
method: 'list',
|
|
params: ['name'],
|
|
expect: { '': {} }
|
|
});
|
|
|
|
function getServiceStatus() {
|
|
return L.resolveDefault(callServiceList('vlmcsd'), {}).then(res =>
|
|
res?.['vlmcsd']?.['instances']?.['vlmcsd']?.['running']
|
|
);
|
|
}
|
|
|
|
function renderStatus(status) {
|
|
const color = status ? 'green' : 'red';
|
|
const service = _('Vlmcsd KMS Server');
|
|
const running = status ? _('RUNNING') : _('NOT RUNNING');
|
|
return `<em><span style="color:${color}"><strong>${service} ${running}</strong></span></em>`;
|
|
}
|
|
|
|
return view.extend({
|
|
render: function () {
|
|
const m = new form.Map('vlmcsd', _('Vlmcsd KMS Server'));
|
|
|
|
let s = m.section(form.TypedSection);
|
|
s.anonymous = true;
|
|
s.render = function () {
|
|
poll.add(function () {
|
|
return L.resolveDefault(getServiceStatus()).then(function (res) {
|
|
const stats = renderStatus(res);
|
|
const view = document.getElementById('vlmcsd_status');
|
|
view.innerHTML = stats;
|
|
});
|
|
});
|
|
|
|
return E('div', { class: 'cbi-section', id: 'status_bar' }, [
|
|
E('p', { id: 'vlmcsd_status' }, _('Collecting data…'))
|
|
]);
|
|
};
|
|
|
|
s = m.section(form.NamedSection, 'config', 'vlmcsd');
|
|
s.tab('general', _('General Settings'));
|
|
s.tab('config_file', _('Configuration File'), _('Edit the content of the /etc/vlmcsd.ini file.'));
|
|
|
|
s.taboption('general', form.Flag, 'enabled', _('Enable Vlmcsd KMS Server'));
|
|
s.taboption('general', form.Flag, 'auto_activate', _('Allow automatic activation'));
|
|
s.taboption('general', form.Flag, 'internet_access', _('Allow connection from Internet'));
|
|
|
|
const o = s.taboption('config_file', form.TextValue, '_tmpl',
|
|
null,
|
|
_("This is the content of the file '/etc/vlmcsd.ini', you can edit it here, usually no modification is needed."));
|
|
o.rows = 20;
|
|
o.monospace = true;
|
|
o.load = () => fs.trimmed('/etc/vlmcsd.ini');
|
|
o.write = (_, value) => fs.write('/etc/vlmcsd.ini', value.trim().replace(/\r\n/g, '\n') + '\n');
|
|
|
|
return m.render();
|
|
}
|
|
});
|