Files
luci/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js
Dirk Brenken 53137db0d4 luci-app-banip: release 1.8.5-1
* sync with base package

Signed-off-by: Dirk Brenken <dev@brenken.org>
2026-04-07 19:34:48 +02:00

324 lines
9.8 KiB
JavaScript

'use strict';
'require view';
'require form';
'require fs';
'require ui';
/*
include custom CSS
*/
document.querySelector('head').appendChild(E('link', {
'rel': 'stylesheet',
'type': 'text/css',
'href': L.resource('view/banip/custom.css')
}));
/*
module-level file size set during render, read by observer
*/
let fileSize = 0;
/*
button state helper
*/
function updateButtons() {
const buttons = document.querySelectorAll('#btnClear, #btnCreate, #btnSave, #btnUpload, #btnDownload');
if (fileSize === 0) {
if (buttons[1]) buttons[1].removeAttribute('disabled');
if (buttons[2]) buttons[2].removeAttribute('disabled');
} else {
if (buttons[0]) buttons[0].removeAttribute('disabled');
if (buttons[3]) buttons[3].removeAttribute('disabled');
if (buttons[4]) buttons[4].removeAttribute('disabled');
}
}
/*
observe DOM changes
*/
const observer = new MutationObserver(function (mutations) {
if (mutations) {
const inputs = document.querySelectorAll('input');
inputs.forEach(function (input) {
input.setAttribute('autocomplete', 'off')
input.setAttribute('autocorrect', 'off')
input.setAttribute('autocapitalize', 'off')
input.setAttribute('spellcheck', false)
})
const labels = document.querySelectorAll('label[for^="widget.cbid.json"][for$="name"]');
labels.forEach(function (label) {
label.setAttribute("style", "font-weight: bold !important; color: #595 !important;");
})
updateButtons();
}
});
const targetNode = document.getElementById('view');
const observerConfig = {
childList: true,
subtree: true,
attributes: false,
characterData: false
};
observer.observe(targetNode, observerConfig);
/*
button handling
*/
function handleEdit(ev) {
if (ev === 'upload') {
return ui.uploadFile('/etc/banip/banip.custom.feeds').then(function () {
L.resolveDefault(fs.read_direct('/etc/banip/banip.custom.feeds', 'json'), "").then(function (data) {
if (data && Object.keys(data).length > 0) {
for (let i = 0; i < Object.keys(data).length; i++) {
let feed = Object.keys(data)[i];
let descr = data[feed].descr;
if (feed && descr) {
continue;
}
return fs.write('/etc/banip/banip.custom.feeds', null).then(function () {
ui.addNotification(null, E('p', _('Upload of the custom feed file failed.')), 'error');
});
}
location.reload();
} else {
return fs.write('/etc/banip/banip.custom.feeds', null).then(function () {
ui.addNotification(null, E('p', _('Upload of the custom feed file failed.')), 'error');
});
}
});
}).catch(function () { });
}
if (ev === 'download') {
return fs.read_direct('/etc/banip/banip.custom.feeds', 'blob').then(function (blob) {
let url = window.URL.createObjectURL(blob),
date = new Date(),
name = 'banip.custom.feeds_%04d-%02d-%02d.json'.format(date.getFullYear(), date.getMonth() + 1, date.getDate()),
link = E('a', { 'style': 'display:none', 'href': url, 'download': name });
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
window.URL.revokeObjectURL(url);
}).catch(function () { });
}
if (ev === 'create') {
return fs.read_direct('/etc/banip/banip.feeds', 'json').then(function (content) {
fs.write('/etc/banip/banip.custom.feeds', JSON.stringify(content)).then(function () {
location.reload();
});
});
}
if (ev === 'clear') {
return fs.write('/etc/banip/banip.custom.feeds', null).then(function () {
location.reload();
});
}
if (ev === 'save') {
const invalid = document.querySelectorAll('.cbi-input-invalid');
if (invalid.length > 0) {
document.body.scrollTop = document.documentElement.scrollTop = 0;
return ui.addNotification(null, E('p', _('Invalid input values, unable to save modifications.')), 'error');
}
}
/*
gather all input data and fall through from 'save'
*/
const exportObj = {};
const nodeKeys = document.querySelectorAll('[id^="widget.cbid.json"][id$="name"]');
for (const keyNode of nodeKeys) {
const keyValue = keyNode.value?.trim();
if (!keyValue) continue;
const idParts = keyNode.id.split(".");
const ruleId = idParts[3];
if (!ruleId) continue;
const selector =
`[id^="widget.cbid.json.${ruleId}."], ` +
`[id^="cbid.json.${ruleId}.rule"]`;
const elements = document.querySelectorAll(selector);
const sub = {};
for (const el of elements) {
const parts = el.id.split(".");
const key = parts[parts.length - 1];
const value = el.value?.trim();
if (!value) continue;
if (["url_4", "url_6", "rule", "chain", "descr", "flag"].includes(key)) {
sub[key] = value;
}
}
/* require at least descr and rule to produce a valid feed entry */
if (sub.descr && sub.rule && (sub.url_4 || sub.url_6)) {
exportObj[keyValue] = sub;
}
}
/*
save to file and reload
*/
const exportJson = JSON.stringify(exportObj, null, 4);
return fs.write('/etc/banip/banip.custom.feeds', exportJson)
.then(() => location.reload());
}
return view.extend({
load: function () {
return L.resolveDefault(fs.stat('/etc/banip/banip.custom.feeds'), null)
.then(function (stat) {
if (!stat) {
return fs.write('/etc/banip/banip.custom.feeds', "").then(function () {
return { size: 0, data: null };
});
}
return L.resolveDefault(fs.read_direct('/etc/banip/banip.custom.feeds', 'json'), "")
.then(function (data) {
return { size: stat.size, data: data };
});
});
},
render: function (result) {
let m, s, o, feed, url_4, url_6, rule, chain, descr, flag;
const data = result.data;
fileSize = result.size;
m = new form.JSONMap(data, null, _('With this editor you can upload your local custom feed file or fill up an initial one (a 1:1 copy of the version shipped with the package). \
The file is located at \'/etc/banip/banip.custom.feeds\'. \
Then you can edit this file, delete entries, add new ones or make a local backup. To go back to the maintainers version just clear the custom feed file.'));
for (let i = 0; i < Object.keys(m.data.data).length; i++) {
feed = Object.keys(m.data.data)[i];
url_4 = m.data.data[feed].url_4;
url_6 = m.data.data[feed].url_6;
rule = m.data.data[feed].rule;
chain = m.data.data[feed].chain;
descr = m.data.data[feed].descr;
flag = m.data.data[feed].flag;
s = m.section(form.TypedSection, feed, null);
s.addremove = true;
s.anonymous = true;
o = s.option(form.Value, 'name', _('Feed Name'));
o.ucioption = '.name';
o.datatype = 'and(minlength(3),maxlength(15))';
o.validate = function (section_id, value) {
if (!value) {
return _('Empty field not allowed');
}
if (!value.match(/^[a-z0-9]+$/)) {
return _('Invalid characters');
}
return true;
}
o = s.option(form.Value, 'url_4', _('URLv4'));
o.validate = function (section_id, value) {
if (!value) {
return true;
}
if (!value.match(/^https?:\/\/[A-Za-z0-9[\]/.?&+_@%=:~#-]+$/)) {
return _('Protocol/URL format not supported');
}
return true;
}
o = s.option(form.Value, 'url_6', _('URLv6'));
o.validate = function (section_id, value) {
if (!value) {
return true;
}
if (!value.match(/^https?:\/\/[A-Za-z0-9[\]/.?&+_@%=:~#-]+$/)) {
return _('Protocol/URL format not supported');
}
return true;
}
o = s.option(form.Value, 'rule', _('Rule'));
o.value('feed 1', _('<IP-Address>'));
o.value('feed 1 ,', _('<IP-Address><CSV-Separator>'));
o.value('feed 13', _('<IP-Address><Space><Netmask>'));
o.value('suricata 1', _('<Suricata Syntax>'));
o.optional = true;
o.rmempty = true;
o = s.option(form.ListValue, 'chain', _('Chain'));
o.value('in', _('Inbound'));
o.value('out', _('Outbound'));
o.value('inout', _('Inbound & Outbound'));
o.default = 'in';
o = s.option(form.Value, 'descr', _('Description'));
o.datatype = 'and(minlength(5),maxlength(30))';
o.validate = function (section_id, value) {
if (!value) {
return _('Empty field not allowed');
}
return true;
}
o = s.option(form.Value, 'flag', _('Flag'));
o.validate = function (section_id, value) {
if (!value) {
return true;
}
if (!value.match(/^(\bgz\b|\btcp\b|\budp\b|\b[0-9-]+\b| )*$/)) {
return _('Flag not supported');
}
return true;
}
}
s = m.section(form.NamedSection, 'global');
s.render = L.bind(function () {
return E('div', { 'class': 'cbi-page-actions' }, [
E('button', {
'class': 'btn cbi-button cbi-button-action important',
'style': 'float:none;margin-right:.4em;',
'id': 'btnDownload',
'disabled': 'disabled',
'click': ui.createHandlerFn(this, function () {
return handleEdit('download');
})
}, [_('Download')]),
E('button', {
'class': 'btn cbi-button cbi-button-action important',
'style': 'float:none;margin-right:.4em;',
'id': 'btnUpload',
'disabled': 'disabled',
'click': ui.createHandlerFn(this, function () {
return handleEdit('upload');
})
}, [_('Upload')]),
E('button', {
'class': 'btn cbi-button cbi-button-action important',
'style': 'float:none;margin-right:.4em;',
'id': 'btnCreate',
'disabled': 'disabled',
'click': ui.createHandlerFn(this, function () {
return handleEdit('create');
})
}, [_('Fill')]),
E('button', {
'class': 'btn cbi-button cbi-button-negative important',
'style': 'float:none;margin-right:.4em;',
'id': 'btnClear',
'disabled': 'disabled',
'click': ui.createHandlerFn(this, function () {
return handleEdit('clear');
})
}, [_('Clear')]),
E('button', {
'class': 'btn cbi-button cbi-button-positive important',
'style': 'float:none',
'id': 'btnSave',
'disabled': 'disabled',
'click': ui.createHandlerFn(this, function () {
return handleEdit('save');
})
}, [_('Save')]),
])
});
return m.render();
},
handleSaveApply: null,
handleSave: null,
handleReset: null
});