2008-06-08 08:14:31 +00:00
|
|
|
--[[
|
|
|
|
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$
|
|
|
|
]]--
|
2011-08-12 13:16:27 +00:00
|
|
|
|
2008-05-25 17:00:30 +00:00
|
|
|
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
|
2011-10-26 03:04:18 +00:00
|
|
|
root.target = alias("admin")
|
2008-10-09 20:28:07 +00:00
|
|
|
root.index = true
|
2008-05-22 14:04:03 +00:00
|
|
|
end
|
2011-01-13 22:21:16 +00:00
|
|
|
|
2008-06-02 17:49:27 +00:00
|
|
|
local page = node("admin")
|
2011-10-26 00:50:58 +00:00
|
|
|
page.target = firstchild()
|
2011-08-12 13:16:27 +00:00
|
|
|
page.title = _("Administration")
|
2008-06-02 17:49:27 +00:00
|
|
|
page.order = 10
|
|
|
|
page.sysauth = "root"
|
2008-08-10 12:58:05 +00:00
|
|
|
page.sysauth_authenticator = "htmlauth"
|
2008-07-15 13:42:54 +00:00
|
|
|
page.ucidata = true
|
2008-10-09 20:28:07 +00:00
|
|
|
page.index = true
|
2009-01-16 12:35:25 +00:00
|
|
|
|
2011-10-26 00:58:12 +00:00
|
|
|
-- Empty services menu to be populated by addons
|
|
|
|
entry({"admin", "services"}, firstchild(), _("Services"), 40).index = true
|
|
|
|
|
2011-08-12 13:16:27 +00:00
|
|
|
entry({"admin", "logout"}, call("action_logout"), _("Logout"), 90)
|
2008-06-29 14:43:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function action_logout()
|
2008-12-14 21:43:05 +00:00
|
|
|
local dsp = require "luci.dispatcher"
|
2015-01-15 09:55:53 +00:00
|
|
|
local utl = require "luci.util"
|
2008-12-14 21:43:05 +00:00
|
|
|
if dsp.context.authsession then
|
2015-01-15 09:55:53 +00:00
|
|
|
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())
|
2008-06-29 14:43:06 +00:00
|
|
|
luci.http.redirect(luci.dispatcher.build_url())
|
2009-01-16 12:35:25 +00:00
|
|
|
end
|