我最终创建了一个 Lua 函数,如下所述:http: //lua-users.org/wiki/SaveTableToFile,以从表中查找和删除不需要的键。
function remove_idx( tbl, index )
-- initiate variables for save procedure
local tables,lookup = { tbl },{ [tbl] = 1 }
for idx,t in ipairs( tables ) do
local thandled = {}
for i,v in ipairs( t ) do
thandled[i] = true
local stype = type( v )
-- only handle value
if stype == "table" then
if not lookup[v] then
table.insert( tables, v )
lookup[v] = #tables
end
else
if i == index then
t[i] = nil
return
end
end
end
for i,v in pairs( t ) do
-- escape handled values
if (not thandled[i]) then
local flag = 0
local stype = type( i )
-- handle index
if stype == "table" then
if not lookup[i] then
table.insert( tables,i )
lookup[i] = #tables
end
else
flag = 1
if i == index then
t[i] = nil
return
end
end
if flag == 1 then
stype = type( v )
-- handle value
if stype == "table" then
if not lookup[v] then
table.insert( tables,v )
lookup[v] = #tables
end
else
if i == index then
t[i] = nil
return
end
end
end
end
end
end
end
然后在 libs/web/luasrc/dispatcher.lua dispatch() 中插入我的用户检查和页面删除:
if c and c.index then
local tpl = require "luci.template"
if util.copcall(tpl.render, "indexer", {}) then
return true
end
end
这就是我根据谁登录删除不需要的页面的方式:
if ctx.authuser == "user" then
remove_idx(ctx.tree, "packages")
remove_idx(ctx.tree, "leds")
end
它有点快速和肮脏,但它有效。请注意,仍然可以通过操作 URL 进行直接访问。
更新
LuCI2 将提供 ACL 支持和多用户环境:http ://git.openwrt.org/?p=project/luci2/ui.git;a%3Dsummary