luci-app-dnscrypt-proxy: major update
[project/luci.git] / applications / luci-app-dnscrypt-proxy / luasrc / model / cbi / dnscrypt-proxy / cfg_dnsmasq_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 nxfs      = require("nixio.fs")
5 local util      = require("luci.util")
6 local uci_input = "/etc/config/dhcp"
7
8 if not nxfs.access(uci_input) then
9         m = SimpleForm("error", nil, translate("Input file not found, please check your configuration."))
10         m.reset = false
11         m.submit = false
12         return m
13 end
14
15 m = SimpleForm("input", nil)
16 m:append(Template("dnscrypt-proxy/config_css"))
17 m.submit = translate("Save")
18 m.reset = false
19
20 s = m:section(SimpleSection, nil,
21         translate("This form allows you to modify the content of the main Dnsmasq configuration file (/etc/config/dhcp)."))
22
23 f = s:option(TextValue, "data")
24 f.rows = 20
25 f.rmempty = true
26
27 function f.cfgvalue()
28         return nxfs.readfile(uci_input) or ""
29 end
30
31 function f.write(self, section, data)
32         return nxfs.writefile(uci_input, "\n" .. util.trim(data:gsub("\r\n", "\n")) .. "\n")
33 end
34
35 function s.handle(self, state, data)
36         return true
37 end
38
39 return m