diff options
author | Dirk Brenken <dev@brenken.org> | 2023-03-26 22:58:54 +0200 |
---|---|---|
committer | Dirk Brenken <dev@brenken.org> | 2023-03-26 23:00:51 +0200 |
commit | df9549e6bdf0c0d33e468765167c5e15338abcb1 (patch) | |
tree | 03613a2f70be5c575e8f046d1b7331e853085e71 /applications/luci-app-banip/htdocs/luci-static/resources | |
parent | cce10fdd8da4dc19b2a612824637078aeec85f4a (diff) |
luci-app-banip: sync with banIP 0.8.2-4
Signed-off-by: Dirk Brenken <dev@brenken.org>
Diffstat (limited to 'applications/luci-app-banip/htdocs/luci-static/resources')
-rw-r--r-- | applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js | 21 | ||||
-rw-r--r-- | applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js | 16 |
2 files changed, 33 insertions, 4 deletions
diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js index 2b8899dc85..d0f9973cad 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js @@ -47,6 +47,11 @@ return view.extend({ if (!inf_stat.classList.contains("spinning")) { inf_stat.classList.add("spinning"); } + } else if (rt_res.status === "disabled") { + if (inf_stat.classList.contains("spinning")) { + inf_stat.classList.remove("spinning"); + } + poll.stop(); } else { if (inf_stat.classList.contains("spinning")) { inf_stat.classList.remove("spinning"); @@ -297,6 +302,13 @@ return view.extend({ o.datatype = 'range(1,300)'; o.rmempty = true; + o = s.taboption('general', form.ListValue, 'ban_triggeraction', _('Trigger Action'), _('Trigger action on ifup interface events.')); + o.value('start', _('start (default)')); + o.value('reload', _('reload')); + o.value('restart', _('restart')); + o.optional = true; + o.rmempty = true; + o = s.taboption('general', form.Flag, 'ban_deduplicate', _('Deduplicate IPs'), _('Deduplicate IP addresses across all active sets and and tidy up the local blocklist.')); o.default = 1 o.rmempty = false; @@ -400,6 +412,8 @@ return view.extend({ feeds = JSON.parse(result[0]); o = s.taboption('adv_chain', form.MultiValue, 'ban_blockinput', _('WAN-Input Chain'), _('Limit certain feeds to the WAN-Input chain.')); + o.value('allowlist', _('local allowlist')); + o.value('blocklist', _('local blocklist')); for (var i = 0; i < Object.keys(feeds).length; i++) { feed = Object.keys(feeds)[i].trim(); o.value(feed); @@ -408,6 +422,8 @@ return view.extend({ o.rmempty = true; o = s.taboption('adv_chain', form.MultiValue, 'ban_blockforwardwan', _('WAN-Forward Chain'), _('Limit certain feeds to the WAN-Forward chain.')); + o.value('allowlist', _('local allowlist')); + o.value('blocklist', _('local blocklist')); for (var i = 0; i < Object.keys(feeds).length; i++) { feed = Object.keys(feeds)[i].trim(); o.value(feed); @@ -416,6 +432,8 @@ return view.extend({ o.rmempty = true; o = s.taboption('adv_chain', form.MultiValue, 'ban_blockforwardlan', _('LAN-Forward Chain'), _('Limit certain feeds to the LAN-Forward chain.')); + o.value('allowlist', _('local allowlist')); + o.value('blocklist', _('local blocklist')); for (var i = 0; i < Object.keys(feeds).length; i++) { feed = Object.keys(feeds)[i].trim(); o.value(feed); @@ -478,6 +496,9 @@ return view.extend({ o.rawhtml = true; o.default = '<em><b>To enable email notifications, set up the \'msmtp\' package and specify a vaild E-Mail receiver address.</b></em>'; + o = s.taboption('adv_email', form.Flag, 'ban_mailnotification', _('E-Mail Notification'), _('Receive E-Mail notifications with every banIP run.')); + o.rmempty = true; + o = s.taboption('adv_email', form.Value, 'ban_mailreceiver', _('E-Mail Receiver Address'), _('Receiver address for banIP notification E-Mails, this information is required to enable E-Mail functionality.')); o.placeholder = 'name@example.com'; o.rmempty = true; diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js index 2d39586435..acad67e289 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js @@ -67,7 +67,11 @@ function handleAction(report, ev) { if (ev === 'survey') { var content, selectO; - content = JSON.parse(report[1]); + if (report[1]) { + content = JSON.parse(report[1]); + } else { + content = ""; + } selectO = [E('option', { value: '' }, [_('-- Set Selection --')])]; for (var i = 0; i < Object.keys(content.nftables).length; i++) { if (content.nftables[i].set !== undefined && content.nftables[i].set.name !== undefined) { @@ -131,15 +135,19 @@ function handleAction(report, ev) { return view.extend({ load: function () { return Promise.all([ - L.resolveDefault(fs.exec_direct('/etc/init.d/banip', ['report', 'json']), '{}'), - L.resolveDefault(fs.exec_direct('/usr/sbin/nft', ['-tj', 'list', 'ruleset']), '{}') + L.resolveDefault(fs.exec_direct('/etc/init.d/banip', ['report', 'json']), ''), + L.resolveDefault(fs.exec_direct('/usr/sbin/nft', ['-tj', 'list', 'ruleset']), '') ]); }, render: function (report) { var content; - content = JSON.parse(report[0]); + if (report[0]) { + content = JSON.parse(report[0]); + } else { + content = ""; + } var rows_sets = []; var tbl_sets = E('table', { 'class': 'table', 'id': 'sets' }, [ E('tr', { 'class': 'tr table-titles' }, [ |