'use strict';
'require view';
'require fs';
'require ui';
let notMsg, errMsg;
return view.extend({
load: function () {
return Promise.all([
L.resolveDefault(fs.stat('/etc/banip/banip.allowlist'), {}),
L.resolveDefault(fs.read_direct('/etc/banip/banip.allowlist'), '')
]);
},
handleSave: function (ev) {
let value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n')) + '\n';
return fs.write('/etc/banip/banip.allowlist', value)
.then(function () {
document.querySelector('textarea').value = value;
document.body.scrollTop = document.documentElement.scrollTop = 0;
if (!notMsg) {
ui.addNotification(null, E('p', _('Allowlist modifications have been saved, reload banIP that changes take effect.')), 'info');
notMsg = true;
}
}).catch(function (e) {
document.body.scrollTop = document.documentElement.scrollTop = 0;
if (!errMsg) {
ui.addNotification(null, E('p', _('Unable to save modifications: %s').format(e.message)), 'error');
errMsg = true;
}
});
},
render: function (allowlist) {
if (allowlist[0].size >= 100000) {
document.body.scrollTop = document.documentElement.scrollTop = 0;
ui.addNotification(null, E('p', _('The allowlist is too big, unable to save modifications.')), 'error');
}
return E([
E('p', {},
_('This is the local banIP allowlist that will permit certain MAC-, IP-addresses or domain names.
\
Please note: add only exactly one MAC/IPv4/IPv6 address or domain name per line. Ranges in CIDR notation and MAC/IP-bindings are allowed.')),
E('p', {},
E('textarea', {
'style': 'width: 100% !important; padding: 5px; font-family: monospace',
'spellcheck': 'false',
'wrap': 'off',
'rows': 25
}, [allowlist[1] != null ? allowlist[1] : ''])
)
]);
},
handleSaveApply: null,
handleReset: null
});