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