e5a05cf4cd13fe9b21e73f26eb610880ebb0c62e
[project/luci.git] / applications / luci-app-adblock / luasrc / model / cbi / adblock / whitelist_tab.lua
1 -- Copyright 2017 Dirk Brenken (dev@brenken.org)
2 -- This is free software, licensed under the Apache License, Version 2.0
3
4 local fs = require("nixio.fs")
5 local util = require("luci.util")
6 local uci = require("luci.model.uci").cursor()
7 local adbinput = uci:get("adblock", "global", "adb_whitelist") or "/etc/adblock/adblock.whitelist"
8
9 if not nixio.fs.access(adbinput) then
10         m = SimpleForm("error", nil, translate("Input file not found, please check your configuration."))
11         m.reset = false
12         m.submit = false
13         return m
14 end
15
16 if nixio.fs.stat(adbinput).size > 524288 then
17         m = SimpleForm("error", nil,
18         translate("The file size is too large for online editing in LuCI (> 512 KB). ")
19         .. translate("Please edit this file directly in a terminal session."))
20         m.reset = false
21         m.submit = false
22         return m
23 end
24
25 m = SimpleForm("input", nil)
26 m:append(Template("adblock/config_css"))
27 m.submit = translate("Save")
28 m.reset = false
29
30 s = m:section(SimpleSection, nil,
31         translatef("This form allows you to modify the content of the adblock whitelist (%s).<br />", adbinput)
32         .. translate("Please add only one domain per line. Comments introduced with '#' are allowed - ip addresses, wildcards and regex are not."))
33
34 f = s:option(TextValue, "data")
35 f.datatype = "string"
36 f.rows = 20
37 f.rmempty = true
38
39 function f.cfgvalue()
40         return nixio.fs.readfile(adbinput) or ""
41 end
42
43 function f.write(self, section, data)
44         return nixio.fs.writefile(adbinput, "\n" .. util.trim(data:gsub("\r\n", "\n")) .. "\n")
45 end
46
47 function s.handle(self, state, data)
48         return true
49 end
50
51 return m