118 lines
3.8 KiB
Lua
118 lines
3.8 KiB
Lua
---
|
|
--- Generated by EmmyLua(https://github.com/EmmyLua)
|
|
--- Created by .
|
|
--- DateTime: 2025/9/27 15:19
|
|
--- 业务逻辑 对用户角色数据表进行数据表业务处理
|
|
local status = require("util.status")
|
|
local resp = require("util.response")
|
|
local roleDao = require("dao.system.role")
|
|
local validator = require("validator.system.role")
|
|
local cjson = require("cjson.safe")
|
|
local perm = require("util.permissionfilter")
|
|
|
|
local _M = {}
|
|
|
|
--获取所有角色信息
|
|
function _M.getSystemRoles()
|
|
local role = ngx.ctx.role
|
|
--权限数据
|
|
local perms = ngx.ctx.perms
|
|
--判断当前接口用户和角色是否有权限
|
|
if perm:hasPermission(role, perms) == false then
|
|
ngx.exit(ngx.HTTP_FORBIDDEN)
|
|
end
|
|
--获取页码和请求的数据量
|
|
--local args = ngx.req.get_uri_args()
|
|
local pageNum = ngx.var.pagenum or 1
|
|
local pageSize = ngx.var.pagesize or 10
|
|
local code,ret = roleDao.getSystemRoles(pageNum, pageSize)
|
|
local state = status.SUCCESS
|
|
if code ~= 0 then state = status.DATA_IS_WRONG end
|
|
resp: response(state, ret)
|
|
end
|
|
|
|
--根据角色id获取角色信息
|
|
function _M.getSystemRole(m)
|
|
local role = ngx.ctx.role
|
|
--权限数据
|
|
local perms = ngx.ctx.perms
|
|
--判断当前接口用户和角色是否有权限
|
|
if perm:hasPermission(role, perms) == false then
|
|
ngx.exit(ngx.HTTP_FORBIDDEN)
|
|
end
|
|
local code,ret = roleDao.getSystemRole(m.id)
|
|
local state = status.SUCCESS
|
|
if code ~= 0 then state = status.DATA_IS_WRONG end
|
|
resp: response(state, ret)
|
|
end
|
|
|
|
--根据角色id获取角色信息
|
|
function _M.addSystemRole()
|
|
local role = ngx.ctx.role
|
|
--权限数据
|
|
local perms = ngx.ctx.perms
|
|
--判断当前接口用户和角色是否有权限
|
|
if perm:hasPermission(role, perms) == false then
|
|
ngx.exit(ngx.HTTP_FORBIDDEN)
|
|
end
|
|
--读取请求体的数据
|
|
ngx.req.read_body()
|
|
--获取请求数据
|
|
local body_data = ngx.req.get_body_data()
|
|
-- 验证数据是否符合schema
|
|
local ok = validator.validateJson(body_data)
|
|
--验证失败则返回
|
|
if not ok then
|
|
resp:response(status.PARAM_NOT_COMPLETE)
|
|
return
|
|
end
|
|
--ngx.say(body_data)
|
|
local code, ret = roleDao.addSystemRole(cjson.decode(body_data))
|
|
local state = status.SUCCESS
|
|
if code ~= 0 then state = status.DATA_IS_WRONG end
|
|
resp: response(state, ret)
|
|
end
|
|
|
|
--根据角色id删除角色信息
|
|
function _M.deleteSystemRole(m)
|
|
local role = ngx.ctx.role
|
|
--权限数据
|
|
local perms = ngx.ctx.perms
|
|
--判断当前接口用户和角色是否有权限
|
|
if perm:hasPermission(role, perms) == false then
|
|
ngx.exit(ngx.HTTP_FORBIDDEN)
|
|
end
|
|
local code, ret = roleDao.deleteSystemRole(m.id)
|
|
local state = status.SUCCESS
|
|
if code ~= 0 then state = status.DATA_IS_WRONG end
|
|
resp: response(state, ret)
|
|
end
|
|
|
|
--根据角色id删除角色信息
|
|
function _M.updateSystemRole(m)
|
|
local role = ngx.ctx.role
|
|
--权限数据
|
|
local perms = ngx.ctx.perms
|
|
--判断当前接口用户和角色是否有权限
|
|
if perm:hasPermission(role, perms) == false then
|
|
ngx.exit(ngx.HTTP_FORBIDDEN)
|
|
end
|
|
--读取请求体的数据
|
|
ngx.req.read_body()
|
|
--获取请求数据
|
|
local body_data = ngx.req.get_body_data()
|
|
-- 验证数据是否符合schema
|
|
local ok = validator.validateJson(body_data)
|
|
--验证失败则返回
|
|
if not ok then
|
|
resp:response(status.PARAM_TYPE_BIND_ERROR)
|
|
return
|
|
end
|
|
local code, ret = roleDao.updateSystemRole(m.id, cjson.decode(body_data))
|
|
local state = status.SUCCESS
|
|
if code ~= 0 then state = status.DATA_IS_WRONG end
|
|
resp: response(state, ret)
|
|
end
|
|
|
|
return _M
|