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

52 lines
1.3 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 = alias("admin")
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
-- Empty services menu to be populated by addons
entry({"admin", "services"}, firstchild(), _("Services"), 40).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 utl = require "luci.util"
2008-12-14 21:43:05 +00:00
if dsp.context.authsession then
utl.ubus("session", "destroy", {
ubus_rpc_session = 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