获取角色和权限数据表中的数据将其组成键值存储到redis中
This commit is contained in:
parent
0308965255
commit
bf034e94c8
16
src/init.lua
16
src/init.lua
|
|
@ -7,9 +7,11 @@
|
||||||
在"ngx_lua"模块的"init_by_lua_file"命令中执行;
|
在"ngx_lua"模块的"init_by_lua_file"命令中执行;
|
||||||
只在启动nginx时初始化一次。
|
只在启动nginx时初始化一次。
|
||||||
--]]
|
--]]
|
||||||
require("config")
|
--只在第一个worker进程中执行一次
|
||||||
|
if ngx.worker.id() ~= 0 then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
print("init application...")
|
|
||||||
--判断程序是否加载权限数据
|
--判断程序是否加载权限数据
|
||||||
--local dict = ngx.shared.dict
|
--local dict = ngx.shared.dict
|
||||||
--local load = dict:get("RBAC")
|
--local load = dict:get("RBAC")
|
||||||
|
|
@ -17,10 +19,8 @@ print("init application...")
|
||||||
-- return
|
-- return
|
||||||
--end
|
--end
|
||||||
|
|
||||||
--只在第一个worker进程中执行一次
|
require("config")
|
||||||
if ngx.worker.id() ~= 0 then
|
print("init application woker id:", ngx.worker.id())
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
--初始化,获取系统默认的用户权限,为实现RBAC框架做权限数据准备
|
--初始化,获取系统默认的用户权限,为实现RBAC框架做权限数据准备
|
||||||
local function handler()
|
local function handler()
|
||||||
|
|
@ -60,10 +60,11 @@ local function handler()
|
||||||
--row.status:0,
|
--row.status:0,
|
||||||
local code, rest = roleDao:getPermission2roleId(id)
|
local code, rest = roleDao:getPermission2roleId(id)
|
||||||
for _, ret in pairs(rest) do
|
for _, ret in pairs(rest) do
|
||||||
--将数据存储到redis中
|
--获取数据表中的数据
|
||||||
local permid = ret.permission_id
|
local permid = ret.permission_id
|
||||||
local perm = ret.permission_code
|
local perm = ret.permission_code
|
||||||
local key = name.."-"..perm
|
local key = name.."-"..perm
|
||||||
|
--role_name-permission_code 组成key进行验证 存储到redis中
|
||||||
local ok, err = red:set(key, "1")
|
local ok, err = red:set(key, "1")
|
||||||
if not ok then
|
if not ok then
|
||||||
ngx.log(ngx.ERR, "redis failed to set key: "..err)
|
ngx.log(ngx.ERR, "redis failed to set key: "..err)
|
||||||
|
|
@ -73,6 +74,7 @@ local function handler()
|
||||||
--关闭redis连接
|
--关闭redis连接
|
||||||
red:close()
|
red:close()
|
||||||
|
|
||||||
|
--共享数据字典进行数据存储
|
||||||
--dict:set("RBAC", "1")
|
--dict:set("RBAC", "1")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user