X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=applications%2Fluci-vnstat%2Fluasrc%2Fmodel%2Fcbi%2Fvnstat.lua;h=5c5e8f7aa21cac1ea085f05d6da139211d81e0a9;hp=71e7aca72b7c5c6c6ab05917853da44893bc7ebf;hb=8879c55bb39b31a03de5d798a436d73b30a011d6;hpb=f375c498f2058b9d8244a628ca78ef5110b2be79 diff --git a/applications/luci-vnstat/luasrc/model/cbi/vnstat.lua b/applications/luci-vnstat/luasrc/model/cbi/vnstat.lua index 71e7aca72..5c5e8f7aa 100644 --- a/applications/luci-vnstat/luasrc/model/cbi/vnstat.lua +++ b/applications/luci-vnstat/luasrc/model/cbi/vnstat.lua @@ -1,7 +1,7 @@ --[[ LuCI - Lua Configuration Interface -Copyright 2010 Jo-Philipp Wich +Copyright 2010-2011 Jo-Philipp Wich Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -25,7 +25,7 @@ end dbdir = dbdir or "/var/lib/vnstat" -m = SimpleForm("vnstat", translate("VnStat"), +m = Map("vnstat", translate("VnStat"), translate("VnStat is a network traffic monitor for Linux that keeps a log of network traffic for the selected interface(s).")) m.submit = translate("Restart VnStat") @@ -37,10 +37,12 @@ local ifaces = { } local enabled = { } local iface -for iface in fs.dir(dbdir) do - if iface:sub(1,1) ~= '.' then - ifaces[iface] = iface - enabled[iface] = iface +if fs.access(dbdir) then + for iface in fs.dir(dbdir) do + if iface:sub(1,1) ~= '.' then + ifaces[iface] = iface + enabled[iface] = iface + end end end @@ -49,14 +51,16 @@ for _, iface in ipairs(sys.net.devices()) do end -local s = m:section(SimpleSection) +local s = m:section(TypedSection, "vnstat") +s.anonymous = true +s.addremove = false -mon_ifaces = s:option(Value, "ifaces", translate("Monitor selected interfaces")) +mon_ifaces = s:option(Value, "interface", translate("Monitor selected interfaces")) mon_ifaces.template = "cbi/network_ifacelist" mon_ifaces.widget = "checkbox" -mon_ifaces.default = utl.keys(enabled) +mon_ifaces.cast = "table" -function mon_ifaces.write(self, s, val) +function mon_ifaces.write(self, section, val) local i local s = { } @@ -67,24 +71,19 @@ function mon_ifaces.write(self, s, val) end for i, _ in pairs(ifaces) do - if s[i] then - sys.call("vnstat -u -i %q" % i) - else + if not s[i] then fs.unlink(dbdir .. "/" .. i) fs.unlink(dbdir .. "/." .. i) end end - - sys.call("/etc/init.d/vnstat restart >/dev/null 2>/dev/null") - - m.message = "

%s

" - % translate("The VnStat service has been restarted."), cmd - - self.default = utl.keys(s) + if next(s) then + m.uci:set_list("vnstat", section, "interface", utl.keys(s)) + else + m.uci:delete("vnstat", section, "interface") + end end mon_ifaces.remove = mon_ifaces.write return m -