luci-app-banip: sync with banIP 0.3.0
authorDirk Brenken <dev@brenken.org>
Fri, 4 Oct 2019 07:21:11 +0000 (09:21 +0200)
committerDirk Brenken <dev@brenken.org>
Wed, 9 Oct 2019 17:46:00 +0000 (19:46 +0200)
* see package PR for details

Signed-off-by: Dirk Brenken <dev@brenken.org>
(cherry picked from commit 8343e58d7fb94bddb3fa5fb5308b1344021710c0)

applications/luci-app-banip/luasrc/model/cbi/banip/overview_tab.lua
applications/luci-app-banip/luasrc/view/banip/runtime.htm

index 9ce6703a4e0c25f36139b41e804ff4a3bc7f6589..4302f86063c15904dfc8041701550ca1c20c8f1c 100644 (file)
@@ -25,8 +25,8 @@ o2 = s:option(Flag, "ban_automatic", translate("Automatic WAN Interface Detectio
 o2.default = o2.enabled
 o2.rmempty = false
 
-o3 = s:option(MultiValue, "ban_iface", translate("Interface Selection"),
-       translate("Disable the automatic WAN detection and select your preferred interface(s) manually."))
+o3 = s:option(MultiValue, "ban_iface", translate("Manual WAN Interface Selection"),
+       translate("Select your preferred interface(s) manually."))
 if dump then
        local i, v
        for i, v in ipairs(dump.interface) do
@@ -36,18 +36,16 @@ if dump then
                end
        end
 end
+o3:depends("ban_automatic", 0)
 o3.widget = "checkbox"
-o3.rmempty = false
-
-o4 = s:option(ListValue, "ban_fetchutil", translate("Download Utility"),
-       translate("List of supported and fully pre-configured download utilities."))
-o4:value("uclient-fetch")
-o4:value("wget")
-o4:value("curl")
-o4:value("aria2c")
-o4.default = "uclient-fetch"
+o3.rmempty = true
+
+o4 = s:option(Flag, "ban_realtime", translate("SSH/LuCI RT Monitor"),
+       translate("Starts a small log/banIP monitor in the background to block SSH/LuCI brute force attacks in realtime."))
+o4.enabled = "true"
+o4.default = o4.disabled
 o4.rmempty = false
-       
+
 -- Runtime Information
 
 ds = s:option(DummyValue, "_dummy")
@@ -125,23 +123,31 @@ e7.rmempty = true
 
 -- Optional Extra Options
 
-e20 = e:option(Value, "ban_triggerdelay", translate("Trigger Delay"),
-       translate("Additional trigger delay in seconds before banIP processing begins."))
-e20.default = 2
-e20.datatype = "range(1,60)"
+e20 = e:option(ListValue, "ban_fetchutil", translate("Download Utility"),
+       translate("Select your preferred download utility."))
+e20:value("uclient-fetch")
+e20:value("wget")
+e20:value("curl")
+e20:value("aria2c")
 e20.optional = true
 
-e21 = e:option(ListValue, "ban_starttype", translate("Start Type"),
-       translate("Select the used start type during boot."))
-e21:value("start")
-e21:value("reload")
-e21.default = "start"
+e21 = e:option(Value, "ban_fetchparm", translate("Download Options"),
+       translate("Special options for the selected download utility, e.g. '--timeout=20 -O'."))
 e21.optional = true
 
-e22 = e:option(Value, "ban_fetchparm", translate("Download Options"),
-       translate("Special options for the selected download utility, e.g. '--timeout=20 --no-check-certificate -O'."))
+e22 = e:option(Value, "ban_triggerdelay", translate("Trigger Delay"),
+       translate("Additional trigger delay in seconds before banIP processing begins."))
+e22.default = 2
+e22.datatype = "range(1,60)"
 e22.optional = true
 
+e23 = e:option(ListValue, "ban_starttype", translate("Start Type"),
+       translate("Select the used start type during boot."))
+e23:value("start")
+e23:value("reload")
+e23.default = "start"
+e23.optional = true
+
 e30 = e:option(Value, "ban_wan_input_chain", translate("WAN Input Chain IPv4"))
 e30.default = "input_wan_rule"
 e30.datatype = "uciname"
index 44682206b7b987190023cb05f893ab840d14c7c7..f96b23dc80fbe05d09632f9c94cc1a0d50e76525 100644 (file)
@@ -32,7 +32,7 @@ This is free software, licensed under the Apache License, Version 2.0
                        input = json.data.version;
                        view.innerHTML = input || "-";
                        view = document.getElementById("value_3");
-                       input = json.data.fetch_info;
+                       input = json.data.util_info;
                        view.innerHTML = input || "-";
                        view = document.getElementById("value_4");
                        input = json.data.ipset_info;
@@ -123,7 +123,7 @@ function btn_action(action)
        </div>
 </div>
 <div class="cbi-value" id="status_3">
-       <label class="cbi-value-title" for="status_3"><%:Download Utility (SSL Library)%></label>
+       <label class="cbi-value-title" for="status_3"><%:Download Utility, RT Monitor%></label>
        <div class="cbi-value-field">
                <span class="runtime" id="value_3">-</span>
        </div>