Merge pull request #1108 from dibdot/app-adblock
luci-app-adblock: sync with adblock 2.6.0
This commit is contained in:
commit
fa6dc645e8
9 changed files with 137 additions and 121 deletions
|
@ -1,4 +1,3 @@
|
||||||
# Copyright 2016 Hannu Nyman
|
|
||||||
# Copyright 2017 Dirk Brenken (dev@brenken.org)
|
# Copyright 2017 Dirk Brenken (dev@brenken.org)
|
||||||
# This is free software, licensed under the Apache License, Version 2.0
|
# This is free software, licensed under the Apache License, Version 2.0
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
-- Copyright 2016 Hannu Nyman
|
|
||||||
-- Copyright 2017 Dirk Brenken (dev@brenken.org)
|
-- Copyright 2017 Dirk Brenken (dev@brenken.org)
|
||||||
-- This is free software, licensed under the Apache License, Version 2.0
|
-- This is free software, licensed under the Apache License, Version 2.0
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
-- Copyright 2016 Hannu Nyman
|
|
||||||
-- Copyright 2017 Dirk Brenken (dev@brenken.org)
|
-- Copyright 2017 Dirk Brenken (dev@brenken.org)
|
||||||
-- This is free software, licensed under the Apache License, Version 2.0
|
-- This is free software, licensed under the Apache License, Version 2.0
|
||||||
|
|
||||||
local fs = require("nixio.fs")
|
local fs = require("nixio.fs")
|
||||||
local util = require("luci.util")
|
local util = require("luci.util")
|
||||||
local uci = require("uci")
|
local uci = require("uci")
|
||||||
local adbinput = uci.get("adblock", "blacklist", "adb_src")
|
local adbinput = uci.get("adblock", "blacklist", "adb_src" or "/etc/adblock/adblock.blacklist")
|
||||||
|
|
||||||
if not nixio.fs.access(adbinput) then
|
if not nixio.fs.access(adbinput) then
|
||||||
m = SimpleForm("error", nil, translate("Input file not found, please check your configuration."))
|
m = SimpleForm("error", nil, translate("Input file not found, please check your configuration."))
|
||||||
|
@ -20,9 +19,9 @@ s = m:section(SimpleSection, nil,
|
||||||
.. translate("Please add only one domain per line. Comments introduced with '#' are allowed - ip addresses, wildcards and regex are not."))
|
.. translate("Please add only one domain per line. Comments introduced with '#' are allowed - ip addresses, wildcards and regex are not."))
|
||||||
|
|
||||||
f = s:option(TextValue, "data")
|
f = s:option(TextValue, "data")
|
||||||
f.rmempty = true
|
|
||||||
f.datatype = "string"
|
f.datatype = "string"
|
||||||
f.rows = 20
|
f.rows = 20
|
||||||
|
f.rmempty = true
|
||||||
|
|
||||||
function f.cfgvalue()
|
function f.cfgvalue()
|
||||||
return nixio.fs.readfile(adbinput) or ""
|
return nixio.fs.readfile(adbinput) or ""
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
-- Copyright 2016 Hannu Nyman
|
|
||||||
-- Copyright 2017 Dirk Brenken (dev@brenken.org)
|
-- Copyright 2017 Dirk Brenken (dev@brenken.org)
|
||||||
-- This is free software, licensed under the Apache License, Version 2.0
|
-- This is free software, licensed under the Apache License, Version 2.0
|
||||||
|
|
||||||
|
@ -18,8 +17,8 @@ s = m:section(SimpleSection, nil,
|
||||||
translate("This form allows you to modify the content of the main adblock configuration file (/etc/config/adblock)."))
|
translate("This form allows you to modify the content of the main adblock configuration file (/etc/config/adblock)."))
|
||||||
|
|
||||||
f = s:option(TextValue, "data")
|
f = s:option(TextValue, "data")
|
||||||
f.rmempty = true
|
|
||||||
f.rows = 20
|
f.rows = 20
|
||||||
|
f.rmempty = true
|
||||||
|
|
||||||
function f.cfgvalue()
|
function f.cfgvalue()
|
||||||
return nixio.fs.readfile(adbinput) or ""
|
return nixio.fs.readfile(adbinput) or ""
|
||||||
|
|
|
@ -1,12 +1,14 @@
|
||||||
-- Copyright 2016 Hannu Nyman
|
|
||||||
-- Copyright 2017 Dirk Brenken (dev@brenken.org)
|
-- Copyright 2017 Dirk Brenken (dev@brenken.org)
|
||||||
-- This is free software, licensed under the Apache License, Version 2.0
|
-- This is free software, licensed under the Apache License, Version 2.0
|
||||||
|
|
||||||
|
local fs = require("nixio.fs")
|
||||||
|
local uci = require("uci")
|
||||||
local sys = require("luci.sys")
|
local sys = require("luci.sys")
|
||||||
local util = require("luci.util")
|
local json = require("luci.jsonc")
|
||||||
local data = util.ubus("service", "get_data", "name", "adblock") or { }
|
local adbinput = uci.get("adblock", "global", "adb_rtfile") or "/tmp/adb_runtime.json"
|
||||||
local dnsFile1 = sys.exec("find '/tmp/dnsmasq.d' -maxdepth 1 -type f -name 'adb_list*' -print 2>/dev/null")
|
local parse = json.parse(fs.readfile(adbinput) or "")
|
||||||
local dnsFile2 = sys.exec("find '/var/lib/unbound' -maxdepth 1 -type f -name 'adb_list*' -print 2>/dev/null")
|
local dnsFile1 = sys.exec("find '/tmp/dnsmasq.d/.adb_hidden' -maxdepth 1 -type f -name 'adb_list*' -print 2>/dev/null")
|
||||||
|
local dnsFile2 = sys.exec("find '/var/lib/unbound/.adb_hidden' -maxdepth 1 -type f -name 'adb_list*' -print 2>/dev/null")
|
||||||
|
|
||||||
m = Map("adblock", translate("Adblock"),
|
m = Map("adblock", translate("Adblock"),
|
||||||
translate("Configuration of the adblock package to block ad/abuse domains by using DNS. ")
|
translate("Configuration of the adblock package to block ad/abuse domains by using DNS. ")
|
||||||
|
@ -21,87 +23,99 @@ m = Map("adblock", translate("Adblock"),
|
||||||
s = m:section(NamedSection, "global", "adblock")
|
s = m:section(NamedSection, "global", "adblock")
|
||||||
|
|
||||||
o1 = s:option(Flag, "adb_enabled", translate("Enable adblock"))
|
o1 = s:option(Flag, "adb_enabled", translate("Enable adblock"))
|
||||||
|
o1.default = o1.enabled
|
||||||
o1.rmempty = false
|
o1.rmempty = false
|
||||||
o1.default = 0
|
|
||||||
|
|
||||||
btn = s:option(Button, "", translate("Suspend / Resume adblock"))
|
btn = s:option(Button, "", translate("Suspend / Resume adblock"))
|
||||||
if data.adblock == nil then
|
if dnsFile1 ~= "" or dnsFile2 ~= "" then
|
||||||
btn.inputtitle = "n/a"
|
|
||||||
btn.inputstyle = nil
|
|
||||||
btn.disabled = true
|
|
||||||
elseif dnsFile1 ~= "" or dnsFile2 ~= "" then
|
|
||||||
btn.inputtitle = translate("Suspend adblock")
|
|
||||||
btn.inputstyle = "reset"
|
|
||||||
btn.disabled = false
|
|
||||||
function btn.write()
|
|
||||||
luci.sys.call("/etc/init.d/adblock suspend >/dev/null 2>&1")
|
|
||||||
end
|
|
||||||
else
|
|
||||||
btn.inputtitle = translate("Resume adblock")
|
btn.inputtitle = translate("Resume adblock")
|
||||||
btn.inputstyle = "apply"
|
btn.inputstyle = "apply"
|
||||||
btn.disabled = false
|
btn.disabled = false
|
||||||
function btn.write()
|
function btn.write()
|
||||||
luci.sys.call("/etc/init.d/adblock resume >/dev/null 2>&1")
|
luci.sys.call("/etc/init.d/adblock resume >/dev/null 2>&1")
|
||||||
end
|
end
|
||||||
|
else
|
||||||
|
btn.inputtitle = translate("Suspend adblock")
|
||||||
|
btn.inputstyle = "reset"
|
||||||
|
btn.disabled = false
|
||||||
|
function btn.write()
|
||||||
|
luci.sys.call("/etc/init.d/adblock suspend >/dev/null 2>&1")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
o2 = s:option(Flag, "adb_debug", translate("Enable verbose debug logging"))
|
o2 = s:option(Value, "adb_iface", translate("Restrict interface trigger to certain interface(s)"),
|
||||||
o2.default = o2.disabled
|
translate("Space separated list of interfaces that trigger adblock processing. "..
|
||||||
o2.rmempty = false
|
"To disable event driven (re-)starts remove all entries."))
|
||||||
|
o2.rmempty = true
|
||||||
|
|
||||||
o3 = s:option(Value, "adb_iface", translate("Restrict interface reload trigger to certain interface(s)"),
|
o3 = s:option(Value, "adb_triggerdelay", translate("Trigger delay"),
|
||||||
translate("Space separated list of interfaces that trigger a reload action. "..
|
translate("Additional trigger delay in seconds before adblock processing begins."))
|
||||||
"To disable reload trigger at all remove all entries."))
|
o3.default = 1
|
||||||
o3.rmempty =true
|
o3.datatype = "range(1,90)"
|
||||||
|
o3.rmempty = false
|
||||||
|
|
||||||
|
o4 = s:option(Flag, "adb_debug", translate("Enable verbose debug logging"))
|
||||||
|
o4.default = o4.disabled
|
||||||
|
o4.rmempty = false
|
||||||
|
|
||||||
-- Runtime information
|
-- Runtime information
|
||||||
|
|
||||||
ds = s:option(DummyValue, "_dummy", translate("Runtime information"))
|
ds = s:option(DummyValue, "_dummy", translate("Runtime information"))
|
||||||
ds.template = "cbi/nullsection"
|
ds.template = "cbi/nullsection"
|
||||||
|
|
||||||
dv1 = s:option(DummyValue, "adblock_version", translate("Adblock version"))
|
dv1 = s:option(DummyValue, "status", translate("Status"))
|
||||||
dv1.template = "adblock/runtime"
|
dv1.template = "adblock/runtime"
|
||||||
if data.adblock ~= nil then
|
if parse == nil then
|
||||||
dv1.value = data.adblock.adblock.adblock_version or "n/a"
|
dv1.value = translate("n/a")
|
||||||
else
|
elseif parse.data.blocked_domains == "0" then
|
||||||
dv1.value = "n/a"
|
dv1.value = translate("no domains blocked")
|
||||||
end
|
|
||||||
|
|
||||||
dv2 = s:option(DummyValue, "status", translate("Status"))
|
|
||||||
dv2.template = "adblock/runtime"
|
|
||||||
if data.adblock == nil then
|
|
||||||
dv2.value = "n/a"
|
|
||||||
elseif dnsFile1 ~= "" or dnsFile2 ~= "" then
|
elseif dnsFile1 ~= "" or dnsFile2 ~= "" then
|
||||||
dv2.value = "active"
|
dv1.value = translate("suspended")
|
||||||
else
|
else
|
||||||
dv2.value = "suspended"
|
dv1.value = translate("active")
|
||||||
|
end
|
||||||
|
dv2 = s:option(DummyValue, "adblock_version", translate("Adblock version"))
|
||||||
|
dv2.template = "adblock/runtime"
|
||||||
|
if parse ~= nil then
|
||||||
|
dv2.value = parse.data.adblock_version or translate("n/a")
|
||||||
|
else
|
||||||
|
dv2.value = translate("n/a")
|
||||||
end
|
end
|
||||||
|
|
||||||
dv3 = s:option(DummyValue, "dns_backend", translate("DNS backend"))
|
dv3 = s:option(DummyValue, "fetch_info", translate("Download Utility (SSL Library)"),
|
||||||
|
translate("For SSL protected blocklist sources you need a suitable SSL library, e.g. 'libustream-ssl' or the wget 'built-in'."))
|
||||||
dv3.template = "adblock/runtime"
|
dv3.template = "adblock/runtime"
|
||||||
if data.adblock ~= nil then
|
if parse ~= nil then
|
||||||
dv3.value = data.adblock.adblock.dns_backend or "n/a"
|
dv3.value = parse.data.fetch_info or translate("n/a")
|
||||||
else
|
else
|
||||||
dv3.value = "n/a"
|
dv3.value = translate("n/a")
|
||||||
end
|
end
|
||||||
|
|
||||||
dv4 = s:option(DummyValue, "blocked_domains", translate("Blocked domains (overall)"))
|
dv4 = s:option(DummyValue, "dns_backend", translate("DNS backend"))
|
||||||
dv4.template = "adblock/runtime"
|
dv4.template = "adblock/runtime"
|
||||||
if data.adblock ~= nil then
|
if parse ~= nil then
|
||||||
dv4.value = data.adblock.adblock.blocked_domains or "n/a"
|
dv4.value = parse.data.dns_backend or translate("n/a")
|
||||||
else
|
else
|
||||||
dv4.value = "n/a"
|
dv4.value = translate("n/a")
|
||||||
end
|
end
|
||||||
|
|
||||||
dv5 = s:option(DummyValue, "last_rundate", translate("Last rundate"))
|
dv5 = s:option(DummyValue, "blocked_domains", translate("Blocked domains (overall)"))
|
||||||
dv5.template = "adblock/runtime"
|
dv5.template = "adblock/runtime"
|
||||||
if data.adblock ~= nil then
|
if parse ~= nil then
|
||||||
dv5.value = data.adblock.adblock.last_rundate or "n/a"
|
dv5.value = parse.data.blocked_domains or translate("n/a")
|
||||||
else
|
else
|
||||||
dv5.value = "n/a"
|
dv5.value = translate("n/a")
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Blocklist options
|
dv6 = s:option(DummyValue, "last_rundate", translate("Last rundate"))
|
||||||
|
dv6.template = "adblock/runtime"
|
||||||
|
if parse ~= nil then
|
||||||
|
dv6.value = parse.data.last_rundate or translate("n/a")
|
||||||
|
else
|
||||||
|
dv6.value = translate("n/a")
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Blocklist table
|
||||||
|
|
||||||
bl = m:section(TypedSection, "source", translate("Blocklist sources"),
|
bl = m:section(TypedSection, "source", translate("Blocklist sources"),
|
||||||
translate("Available blocklist sources. ")
|
translate("Available blocklist sources. ")
|
||||||
|
@ -111,18 +125,28 @@ bl.template = "cbi/tblsection"
|
||||||
name = bl:option(Flag, "enabled", translate("Enabled"))
|
name = bl:option(Flag, "enabled", translate("Enabled"))
|
||||||
name.rmempty = false
|
name.rmempty = false
|
||||||
|
|
||||||
|
ssl = bl:option(DummyValue, "adb_src", translate("SSL req."))
|
||||||
|
function ssl.cfgvalue(self, section)
|
||||||
|
local source = self.map:get(section, "adb_src")
|
||||||
|
if source and source:match("https://") then
|
||||||
|
return translate("Yes")
|
||||||
|
else
|
||||||
|
return translate("No")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
des = bl:option(DummyValue, "adb_src_desc", translate("Description"))
|
des = bl:option(DummyValue, "adb_src_desc", translate("Description"))
|
||||||
|
|
||||||
-- Backup options
|
-- Backup options
|
||||||
|
|
||||||
s = m:section(NamedSection, "global", "adblock", translate("Backup options"))
|
s = m:section(NamedSection, "global", "adblock", translate("Backup options"))
|
||||||
|
|
||||||
o4 = s:option(Flag, "adb_backup", translate("Enable blocklist backup"))
|
o5 = s:option(Flag, "adb_backup", translate("Enable blocklist backup"))
|
||||||
o4.rmempty = false
|
o5.default = o5.disabled
|
||||||
o4.default = 0
|
|
||||||
|
|
||||||
o5 = s:option(Value, "adb_backupdir", translate("Backup directory"))
|
|
||||||
o5.rmempty = false
|
o5.rmempty = false
|
||||||
o5.datatype = "directory"
|
|
||||||
|
o6 = s:option(Value, "adb_backupdir", translate("Backup directory"))
|
||||||
|
o6.datatype = "directory"
|
||||||
|
o6.rmempty = false
|
||||||
|
|
||||||
return m
|
return m
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
-- Copyright 2016 Hannu Nyman
|
|
||||||
-- Copyright 2017 Dirk Brenken (dev@brenken.org)
|
-- Copyright 2017 Dirk Brenken (dev@brenken.org)
|
||||||
-- This is free software, licensed under the Apache License, Version 2.0
|
-- This is free software, licensed under the Apache License, Version 2.0
|
||||||
|
|
||||||
local fs = require("nixio.fs")
|
local fs = require("nixio.fs")
|
||||||
local util = require("luci.util")
|
local util = require("luci.util")
|
||||||
local uci = require("uci")
|
local uci = require("uci")
|
||||||
local adbinput = uci.get("adblock", "global", "adb_whitelist") or " "
|
local adbinput = uci.get("adblock", "global", "adb_whitelist") or "/etc/adblock/adblock.whitelist"
|
||||||
|
|
||||||
if not nixio.fs.access(adbinput) then
|
if not nixio.fs.access(adbinput) then
|
||||||
m = SimpleForm("error", nil, translate("Input file not found, please check your configuration."))
|
m = SimpleForm("error", nil, translate("Input file not found, please check your configuration."))
|
||||||
|
@ -20,9 +19,9 @@ s = m:section(SimpleSection, nil,
|
||||||
.. translate("Please add only one domain per line. Comments introduced with '#' are allowed - ip addresses, wildcards and regex are not."))
|
.. translate("Please add only one domain per line. Comments introduced with '#' are allowed - ip addresses, wildcards and regex are not."))
|
||||||
|
|
||||||
f = s:option(TextValue, "data")
|
f = s:option(TextValue, "data")
|
||||||
f.rmempty = true
|
|
||||||
f.datatype = "string"
|
f.datatype = "string"
|
||||||
f.rows = 20
|
f.rows = 20
|
||||||
|
f.rmempty = true
|
||||||
|
|
||||||
function f.cfgvalue()
|
function f.cfgvalue()
|
||||||
return nixio.fs.readfile(adbinput) or ""
|
return nixio.fs.readfile(adbinput) or ""
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
<%#
|
<%#
|
||||||
Copyright 2016 Hannu Nyman
|
|
||||||
Copyright 2017 Dirk Brenken (dev@brenken.org)
|
Copyright 2017 Dirk Brenken (dev@brenken.org)
|
||||||
This is free software, licensed under the Apache License, Version 2.0
|
This is free software, licensed under the Apache License, Version 2.0
|
||||||
-%>
|
-%>
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
<%#
|
<%#
|
||||||
Copyright 2016 Hannu Nyman
|
|
||||||
Copyright 2017 Dirk Brenken (dev@brenken.org)
|
Copyright 2017 Dirk Brenken (dev@brenken.org)
|
||||||
This is free software, licensed under the Apache License, Version 2.0
|
This is free software, licensed under the Apache License, Version 2.0
|
||||||
-%>
|
-%>
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
<%#
|
<%#
|
||||||
Copyright 2016 Hannu Nyman
|
|
||||||
Copyright 2017 Dirk Brenken (dev@brenken.org)
|
Copyright 2017 Dirk Brenken (dev@brenken.org)
|
||||||
This is free software, licensed under the Apache License, Version 2.0
|
This is free software, licensed under the Apache License, Version 2.0
|
||||||
-%>
|
-%>
|
||||||
|
|
Loading…
Reference in a new issue