luci/modules/admin-full/luasrc/controller/admin/index.lua

47 lines
1.1 KiB
Lua
Raw Normal View History

--[[
LuCI - Lua Configuration Interface
Copyright 2008 Steven Barth <steven@midlink.org>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
$Id$
]]--
module("luci.controller.admin.index", package.seeall)
2008-05-22 14:04:03 +00:00
function index()
local root = node()
if not root.target then
root.target = firstchild()
2008-10-09 20:28:07 +00:00
root.index = true
2008-05-22 14:04:03 +00:00
end
local page = node("admin")
page.target = firstchild()
page.title = _("Administration")
page.order = 10
page.sysauth = "root"
2008-08-10 12:58:05 +00:00
page.sysauth_authenticator = "htmlauth"
page.ucidata = true
2008-10-09 20:28:07 +00:00
page.index = true
entry({"admin", "logout"}, call("action_logout"), _("Logout"), 90)
end
function action_logout()
2008-12-14 21:43:05 +00:00
local dsp = require "luci.dispatcher"
local sauth = require "luci.sauth"
if dsp.context.authsession then
sauth.kill(dsp.context.authsession)
2008-12-15 10:40:45 +00:00
dsp.context.urltoken.stok = nil
2008-12-14 21:43:05 +00:00
end
2008-12-15 10:40:45 +00:00
luci.http.header("Set-Cookie", "sysauth=; path=" .. dsp.build_url())
luci.http.redirect(luci.dispatcher.build_url())
end