gluon-luci-autoupdater: avoid use of CBI Maps

As convenient as the Map is, the underlying code is very complex and will
be removed.
This commit is contained in:
Matthias Schiffer 2017-01-25 22:37:27 +01:00
parent b5a3b9115b
commit 78d8645e19
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C
1 changed files with 27 additions and 10 deletions

View File

@ -12,18 +12,35 @@ You may obtain a copy of the License at
$Id$
]]--
m = Map("autoupdater", translate("Automatic updates"))
m.pageaction = false
m.template = "cbi/simpleform"
local uci = require("simple-uci").cursor()
local autoupdater = uci:get_first("autoupdater", "autoupdater")
s = m:section(TypedSection, "autoupdater", nil)
s.addremove = false
s.anonymous = true
local f = SimpleForm("autoupdater", translate("Automatic updates"))
local s = f:section(SimpleSection, nil, nil)
local o
s:option(Flag, "enabled", translate("Enable"))
f = s:option(ListValue, "branch", translate("Branch"))
o = s:option(Flag, "enabled", translate("Enable"))
o.default = uci:get_bool("autoupdater", autoupdater, "enabled") and o.enabled or o.disabled
o.rmempty = false
uci.cursor():foreach("autoupdater", "branch", function (section) f:value(section[".name"]) end)
o = s:option(ListValue, "branch", translate("Branch"))
uci:foreach("autoupdater", "branch",
function (section)
o:value(section[".name"])
end
)
o.default = uci:get("autoupdater", autoupdater, "branch")
return m
function f.handle(self, state, data)
if state ~= FORM_VALID then
return
end
uci:set("autoupdater", autoupdater, "enabled", data.enabled)
uci:set("autoupdater", autoupdater, "branch", data.branch)
uci:save("autoupdater")
uci:commit("autoupdater")
end
return f