2008-05-25 17:00:30 +00:00
|
|
|
module("luci.controller.splash.splash", package.seeall)
|
2008-04-27 11:16:31 +00:00
|
|
|
|
2008-05-22 14:04:03 +00:00
|
|
|
function index()
|
2008-06-29 14:42:53 +00:00
|
|
|
entry({"admin", "services", "splash"}, cbi("splash/splash"), "Client-Splash")
|
2008-05-22 14:04:03 +00:00
|
|
|
|
2008-06-29 14:42:53 +00:00
|
|
|
node("splash").target = call("action_dispatch")
|
2009-02-19 21:31:33 +00:00
|
|
|
node("splash", "activate").target = call("action_activate")
|
|
|
|
node("splash", "splash").target = template("splash_splash/splash")
|
2009-06-06 09:41:02 +00:00
|
|
|
|
|
|
|
entry({"admin", "status", "splash"}, call("action_status_admin"), "Client-Splash")
|
2008-05-22 14:04:03 +00:00
|
|
|
end
|
|
|
|
|
2008-06-29 14:42:53 +00:00
|
|
|
function action_dispatch()
|
2008-07-15 22:55:25 +00:00
|
|
|
local mac = luci.sys.net.ip4mac(luci.http.getenv("REMOTE_ADDR")) or ""
|
2008-08-06 20:11:15 +00:00
|
|
|
local status = luci.util.execl("luci-splash status "..mac)[1]
|
2008-07-15 22:55:25 +00:00
|
|
|
if #mac > 0 and ( status == "whitelisted" or status == "lease" ) then
|
2008-06-29 14:42:53 +00:00
|
|
|
luci.http.redirect(luci.dispatcher.build_url())
|
|
|
|
else
|
2009-02-19 21:31:33 +00:00
|
|
|
luci.http.redirect(luci.dispatcher.build_url("splash", "splash"))
|
2008-06-29 14:42:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-04-27 11:16:31 +00:00
|
|
|
function action_activate()
|
2009-05-30 22:38:46 +00:00
|
|
|
local ip = luci.http.getenv("REMOTE_ADDR") or "127.0.0.1"
|
|
|
|
local mac = luci.sys.net.ip4mac(ip:match("^[\[::ffff:]*(%d+.%d+%.%d+%.%d+)\]*$"))
|
2008-05-25 17:00:30 +00:00
|
|
|
if mac and luci.http.formvalue("accept") then
|
2008-04-27 16:12:24 +00:00
|
|
|
os.execute("luci-splash add "..mac.." >/dev/null 2>&1")
|
2008-08-26 23:00:44 +00:00
|
|
|
luci.http.redirect(luci.model.uci.cursor():get("freifunk", "community", "homepage"))
|
2008-04-27 16:12:24 +00:00
|
|
|
else
|
2008-05-25 17:00:30 +00:00
|
|
|
luci.http.redirect(luci.dispatcher.build_url())
|
2008-04-27 16:12:24 +00:00
|
|
|
end
|
2008-07-15 22:55:25 +00:00
|
|
|
end
|
2009-06-06 09:41:02 +00:00
|
|
|
|
|
|
|
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
|