summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-splash/luasrc/controller
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-06-06 09:41:02 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-06-06 09:41:02 +0000
commit970dabd1dbbd9f693020a3b434cea1d23d6ec3d4 (patch)
treee8e84f941744fb1c72f46dc0cf84440ee9d29537 /applications/luci-splash/luasrc/controller
parente684a57a09c8710b026b9b45293b055ad5f5bcce (diff)
applications/luci-splash: merge splash rework to trunk
Diffstat (limited to 'applications/luci-splash/luasrc/controller')
-rw-r--r--applications/luci-splash/luasrc/controller/splash/splash.lua68
1 files changed, 68 insertions, 0 deletions
diff --git a/applications/luci-splash/luasrc/controller/splash/splash.lua b/applications/luci-splash/luasrc/controller/splash/splash.lua
index 8603b141f..88aafcdf5 100644
--- a/applications/luci-splash/luasrc/controller/splash/splash.lua
+++ b/applications/luci-splash/luasrc/controller/splash/splash.lua
@@ -6,6 +6,8 @@ function index()
node("splash").target = call("action_dispatch")
node("splash", "activate").target = call("action_activate")
node("splash", "splash").target = template("splash_splash/splash")
+
+ entry({"admin", "status", "splash"}, call("action_status_admin"), "Client-Splash")
end
function action_dispatch()
@@ -28,3 +30,69 @@ function action_activate()
luci.http.redirect(luci.dispatcher.build_url())
end
end
+
+function action_status_admin()
+ local uci = luci.model.uci.cursor_state()
+ local macs = luci.http.formvaluetable("save")
+
+ local function delete_mac(what, mac)
+ uci:delete_all("luci_splash", what,
+ function(s)
+ return ( s.mac and s.mac:lower() == mac )
+ end)
+ end
+
+ local function leases(mac)
+ local leases = { }
+
+ uci:foreach("luci_splash", "lease", function(s)
+ if s.start and s.mac and s.mac:lower() ~= mac then
+ leases[#leases+1] = {
+ start = s.start,
+ mac = s.mac
+ }
+ end
+ end)
+
+ uci:revert("luci_splash")
+
+ return leases
+ end
+
+ local function commit(leases, no_commit)
+ if not no_commit then
+ uci:save("luci_splash")
+ uci:commit("luci_splash")
+ end
+
+ for _, l in ipairs(leases) do
+ uci:section("luci_splash", "lease", nil, l)
+ end
+
+ uci:save("luci_splash")
+ os.execute("/etc/init.d/luci_splash restart")
+ end
+
+ for key, _ in pairs(macs) do
+ local policy = luci.http.formvalue("policy.%s" % key)
+ local mac = luci.http.protocol.urldecode(key)
+ local lslist = leases(policy ~= "kick" and mac)
+
+ delete_mac("blacklist", mac)
+ delete_mac("whitelist", mac)
+
+ if policy == "whitelist" or policy == "blacklist" then
+ uci:section("luci_splash", policy, nil, { mac = mac })
+ elseif policy == "normal" then
+ lslist[#lslist+1] = { mac = mac, start = os.time() }
+ elseif policy == "kick" then
+ for _, l in ipairs(lslist) do
+ if l.mac:lower() == mac then l.kicked="1" end
+ end
+ end
+
+ commit(lslist)
+ end
+
+ luci.template.render("admin_status/splash", { is_admin = true })
+end