luci-app-adblock: remove deprecated options
[project/luci.git] / applications / luci-app-adblock / luasrc / model / cbi / adblock.lua
1 -- Copyright 2016 Openwrt.org
2 -- Licensed to the public under the Apache License 2.0.
3
4 m = Map("adblock", translate("Adblock"),
5         translate("Configuration of the adblock package to block ad/abuse domains by using DNS."))
6
7 -- General options
8
9 s = m:section(NamedSection, "global", "adblock", translate("Global options"))
10
11 o1 = s:option(Flag, "adb_enabled", translate("Enable adblock"))
12 o1.rmempty = false
13 o1.default = 0
14
15 o2 = s:option(Value, "adb_blacklist", translate("Blacklist file"),
16      translate("File with explicitly blacklisted hosts/domains."))
17 o2.rmempty = false
18 o2.datatype = "file"
19
20 o3 = s:option(Value, "adb_whitelist", translate("Whitelist file"),
21      translate("File with whitelisted hosts/domains that are allowed despite being on a blocklist."))
22 o3.rmempty = false
23 o3.datatype = "file"
24
25 -- Blocklist options
26
27 bl = m:section(TypedSection, "source", translate("Blocklist sources"),
28         translate("Available blocklist sources (")
29         .. [[<a href="https://github.com/openwrt/packages/blob/master/net/adblock/files/README.md" target="_blank">]]
30         .. translate("see list details")
31         .. [[</a>]]
32         .. translate("). Note that list URLs and Shallalist category selections are not configurable via Luci."))
33 bl.template = "cbi/tblsection"
34
35 name = bl:option(Flag, "enabled", translate("Enabled"))
36 name.rmempty  = false
37
38 des = bl:option(DummyValue, "adb_srcdesc", translate("Description"))
39 des.rmempty  = false
40
41 -- Additional options
42
43 s2 = m:section(NamedSection, "backup", "service", translate("Backup options"))
44
45 o4 = s2:option(Flag, "enabled", translate("Enable blocklist backup"))
46 o4.rmempty = false
47 o4.default = 0
48
49 o5 = s2:option(Value, "adb_backupdir", translate("Backup directory"))
50 o5.rmempty = false
51 o5.datatype = "directory"
52
53 s3 = m:section(NamedSection, "log", "service", translate("Log options"))
54
55 o6 = s3:option(Flag, "enabled", translate("Enable log"))
56 o6.rmempty = false
57 o6.default = 0
58
59 o7 = s3:option(Value, "adb_logfile", translate("Log file"))
60 o7.rmempty = false
61 o7.datatype = "string"
62
63 -- Extra options
64
65 e = m:section(NamedSection, "global", "adblock", translate("Extra options"),
66         translate("Options for further tweaking in case the defaults are not suitable for you."))
67
68 a1 = e:option(Value, "adb_port", translate("Port of the adblock uhttpd instance"))
69 a1.optional = true
70 a1.rmempty = true
71 a1.default = 65535
72 a1.datatype = "port"
73
74 a2 = e:option(Value, "adb_nullipv4", translate("IPv4 blackhole ip address"))
75 a2.optional = true
76 a2.rmempty = true
77 a2.default = "192.0.2.1"
78 a2.datatype = "ip4addr"
79
80 a3 = e:option(Value, "adb_nullipv6", translate("IPv6 blackhole ip address"))
81 a3.optional = true
82 a3.rmempty = true
83 a3.default = "::ffff:c000:0201"
84 a3.datatype = "ip6addr"
85
86 a6 = e:option(Value, "adb_wanif", translate("Name of the logical wan interface"))
87 a6.optional = true
88 a6.rmempty = true
89 a6.default = "wan"
90 a6.datatype = "network"
91
92 a7 = e:option(Value, "adb_lanif", translate("Name of the logical lan interface"))
93 a7.optional = true
94 a7.rmempty = true
95 a7.default = "lan"
96 a7.datatype = "network"
97
98 return m
99