角色授权

master
hongtianzai 3 years ago
parent 71f991d73c
commit e61cdcf69c

@ -1,6 +1,7 @@
package com.glxp.udidl.admin.controller.sys;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
import com.glxp.udidl.admin.dto.sys.SysRoleMenuModel;
import com.glxp.udidl.admin.dto.sys.SysRoleModel;
import com.glxp.udidl.admin.dto.sys.SysRoleParam;
import com.glxp.udidl.admin.service.sys.SysRoleService;
@ -42,4 +43,14 @@ public class SysRoleController {
public BaseResponse delete(Integer id){
return sysRoleService.delete(id);
}
@AuthRuleAnnotation("sys_role_all")
@PostMapping("/getRoleMenu")
public BaseResponse getRoleMenu(Integer roleId){
return sysRoleService.getRoleMenu(roleId);
}
@AuthRuleAnnotation("sys_role_all")
@PostMapping("/saveRoleMenu")
public BaseResponse saveRoleMenu(@RequestBody SysRoleMenuModel model){
return sysRoleService.saveRoleMenu(model);
}
}

@ -0,0 +1,45 @@
package com.glxp.udidl.admin.controller.sys;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
import com.glxp.udidl.admin.dto.sys.SysUserModel;
import com.glxp.udidl.admin.dto.sys.SysUserParam;
import com.glxp.udidl.admin.service.sys.SysUserService;
import com.glxp.udidl.common.res.BaseResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("sys/user")
public class SysUserController {
@Autowired
SysUserService sysUserService;
@AuthRuleAnnotation("sys_user_all")
@PostMapping("/list")
public BaseResponse getList(@RequestBody SysUserParam param){
return sysUserService.list(param);
}
@AuthRuleAnnotation("sys_user_all")
@PostMapping("/insert")
public BaseResponse insert(@RequestBody SysUserModel model){
return sysUserService.insert(model);
}
@AuthRuleAnnotation("sys_user_all")
@PostMapping("update")
public BaseResponse update(@RequestBody SysUserModel model){
return sysUserService.update(model);
}
@AuthRuleAnnotation("sys_user_all")
@PostMapping("/detail")
public BaseResponse detail(Integer id){
return sysUserService.detail(id);
}
@AuthRuleAnnotation("sys_user_all")
@PostMapping("/delete")
public BaseResponse delete(Integer id){
return sysUserService.delete(id);
}
}

@ -17,4 +17,5 @@ public interface SysMenuMapper {
int updateByPrimaryKey(SysMenu record);
int getChildCount(Integer parentId);
List<SysMenu> selectActiveAll();
}

@ -2,6 +2,7 @@ package com.glxp.udidl.admin.dao.sys;
import com.glxp.udidl.admin.entity.sys.SysRoleMenu;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@ -11,4 +12,6 @@ public interface SysRoleMenuMapper {
int insert(SysRoleMenu record);
List<SysRoleMenu> selectAll();
List<Integer> selectByRoleId(@Param("roleId") Integer roleId);
int deleteByRoleId(@Param("roleId") Integer roleId);
}

@ -1,5 +1,6 @@
package com.glxp.udidl.admin.dao.sys;
import com.glxp.udidl.admin.dto.sys.SysUserParam;
import com.glxp.udidl.admin.entity.sys.SysUser;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@ -18,4 +19,5 @@ public interface SysUserMapper {
int updateByPrimaryKey(SysUser record);
int hasAuthPerms(@Param("userKey") String user_key, @Param("perms" ) String perms);
List<SysUser> list(SysUserParam param);
}

@ -0,0 +1,13 @@
package com.glxp.udidl.admin.dto.sys;
import lombok.Builder;
import lombok.Data;
import java.util.List;
@Data
@Builder
public class RoleMenuTreeModel {
private List<MenuTreeModel> menuTrees;
private List<Integer> roleMenuIds;
}

@ -0,0 +1,11 @@
package com.glxp.udidl.admin.dto.sys;
import lombok.Data;
import java.util.List;
@Data
public class SysRoleMenuModel {
private Integer roleId;
private List<Integer> menuIds;
}

@ -1,5 +1,8 @@
package com.glxp.udidl.admin.entity.sys;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.util.Date;
/**
@ -8,6 +11,7 @@ import java.util.Date;
* @author hong
* @date 2022/01/17
*/
@Data
public class SysUser {
/**
* ID
@ -41,6 +45,7 @@ public class SysUser {
/**
*
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
private Date createTime;
/**
@ -48,7 +53,7 @@ public class SysUser {
*/
private Integer roleId;
private String Udplat_appId;
private String Udplat_secretKey;
private String Udplat_userName;
private String udplat_appId;
private String udplat_secretKey;
private String udplat_userName;
}

@ -5,6 +5,7 @@ import com.glxp.udidl.common.res.BaseResponse;
public interface SysMenuService {
BaseResponse getMenuTree();
BaseResponse getMenuTreeActive();
BaseResponse insert(SysMenuModel model);
BaseResponse update(SysMenuModel model);
BaseResponse detail(Integer id);

@ -1,5 +1,6 @@
package com.glxp.udidl.admin.service.sys;
import com.glxp.udidl.admin.dto.sys.SysRoleMenuModel;
import com.glxp.udidl.admin.dto.sys.SysRoleModel;
import com.glxp.udidl.admin.dto.sys.SysRoleParam;
import com.glxp.udidl.common.res.BaseResponse;
@ -10,4 +11,6 @@ public interface SysRoleService {
BaseResponse update(SysRoleModel model);
BaseResponse detail(Integer id);
BaseResponse delete(Integer id);
BaseResponse getRoleMenu(Integer roleId);
BaseResponse saveRoleMenu(SysRoleMenuModel model);
}

@ -0,0 +1,13 @@
package com.glxp.udidl.admin.service.sys;
import com.glxp.udidl.admin.dto.sys.SysUserModel;
import com.glxp.udidl.admin.dto.sys.SysUserParam;
import com.glxp.udidl.common.res.BaseResponse;
public interface SysUserService {
BaseResponse list(SysUserParam param);
BaseResponse insert(SysUserModel model);
BaseResponse update(SysUserModel model);
BaseResponse detail(Integer id);
BaseResponse delete(Integer id);
}

@ -27,6 +27,12 @@ public class SysMenuServiceImpl implements SysMenuService {
List<MenuTreeModel> resutl = getChild(menus, 0);
return ResultVOUtils.success(resutl);
}
@Override
public BaseResponse getMenuTreeActive(){
List<SysMenu> menus = sysMenuMapper.selectActiveAll();
List<MenuTreeModel> resutl = getChild(menus, 0);
return ResultVOUtils.success(resutl);
}
public BaseResponse insert(SysMenuModel model){
SysMenu sysMenu = new SysMenu();
BeanUtils.copyProperties(model,sysMenu);

@ -3,10 +3,12 @@ package com.glxp.udidl.admin.service.sys.impl;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.dao.sys.SysRoleMapper;
import com.glxp.udidl.admin.dto.sys.SysRoleModel;
import com.glxp.udidl.admin.dto.sys.SysRoleParam;
import com.glxp.udidl.admin.dao.sys.SysRoleMenuMapper;
import com.glxp.udidl.admin.dto.sys.*;
import com.glxp.udidl.admin.entity.sys.SysRole;
import com.glxp.udidl.admin.entity.sys.SysRoleMenu;
import com.glxp.udidl.admin.res.PageSimpleResponse;
import com.glxp.udidl.admin.service.sys.SysMenuService;
import com.glxp.udidl.admin.service.sys.SysRoleService;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
@ -21,7 +23,10 @@ import java.util.List;
public class SysRoleServiceImpl implements SysRoleService {
@Autowired
SysRoleMapper mapper;
@Autowired
SysRoleMenuMapper sysRoleMenuMapper;
@Autowired
SysMenuService sysMenuService;
@Override
public BaseResponse list(SysRoleParam param) {
PageHelper.startPage(param.getPage(), param.getLimit());
@ -65,4 +70,22 @@ public class SysRoleServiceImpl implements SysRoleService {
mapper.deleteByPrimaryKey(id);
return ResultVOUtils.success();
}
@Override
public BaseResponse getRoleMenu(Integer roleId) {
List<MenuTreeModel> menuTree =(List<MenuTreeModel>)sysMenuService.getMenuTreeActive().getData();
List<Integer> list = sysRoleMenuMapper.selectByRoleId(roleId);
return ResultVOUtils.success(RoleMenuTreeModel.builder().menuTrees(menuTree).roleMenuIds(list).build());
}
@Override
public BaseResponse saveRoleMenu(SysRoleMenuModel model){
sysRoleMenuMapper.deleteByRoleId(model.getRoleId());
for(Integer menuId:model.getMenuIds()){
SysRoleMenu roleMenu = new SysRoleMenu();
roleMenu.setRoleId(model.getRoleId());
roleMenu.setMenuId(menuId);
sysRoleMenuMapper.insert(roleMenu);
}
return ResultVOUtils.success();
}
}

@ -0,0 +1,73 @@
package com.glxp.udidl.admin.service.sys.impl;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.dao.sys.SysUserMapper;
import com.glxp.udidl.admin.dto.sys.SysUserModel;
import com.glxp.udidl.admin.dto.sys.SysUserParam;
import com.glxp.udidl.admin.entity.sys.SysUser;
import com.glxp.udidl.admin.res.PageSimpleResponse;
import com.glxp.udidl.admin.service.sys.SysUserService;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Date;
import java.util.List;
import java.util.UUID;
@Service
public class SysUserServiceImpl implements SysUserService {
@Autowired
SysUserMapper mapper;
@Override
public BaseResponse list(SysUserParam param) {
PageHelper.startPage(param.getPage(), param.getLimit());
List<SysUser> list = mapper.list(param);
PageInfo<SysUser> pageInfo = new PageInfo<>(list);
PageSimpleResponse<SysUser> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(pageInfo.getTotal());
pageSimpleResponse.setList(list);
return ResultVOUtils.success(pageSimpleResponse);
}
@Override
public BaseResponse insert(SysUserModel model) {
SysUser sysUser = new SysUser();
BeanUtils.copyProperties(model, sysUser);
sysUser.setCreateTime(new Date());
sysUser.setUserKey(getUUId());
mapper.insert(sysUser);
return ResultVOUtils.success();
}
@Override
public BaseResponse update(SysUserModel model) {
SysUser sysUser = mapper.selectByPrimaryKey(model.getId());
if (sysUser == null)
return ResultVOUtils.error(-1, "找不到记录");
BeanUtils.copyProperties(model, sysUser);
mapper.updateByPrimaryKey(sysUser);
return ResultVOUtils.success();
}
@Override
public BaseResponse detail(Integer id) {
SysUser sysUser = mapper.selectByPrimaryKey(id);
if (sysUser == null)
return ResultVOUtils.error(-1, "找不到记录");
return ResultVOUtils.success(sysUser);
}
@Override
public BaseResponse delete(Integer id) {
mapper.deleteByPrimaryKey(id);
return ResultVOUtils.success();
}
private String getUUId() {
UUID uuid = UUID.randomUUID();
return uuid.toString().replace("-", "");
}
}

@ -39,10 +39,13 @@
where id = #{id,jdbcType=INTEGER}
</select>
<select id="selectAll" resultMap="BaseResultMap">
select id, name, parent_id, type, perms,sort, status, create_time
select *
from sys_menu
</select>
<select id="getChildCount" resultType="java.lang.Integer" parameterType="java.lang.Integer">
select count(0) from sys_menu where parent_id=#{parentId}
</select>
<select id="selectActiveAll" resultMap="BaseResultMap">
select * from sys_menu where status='0'
</select>
</mapper>

@ -9,8 +9,19 @@
insert into sys_role_menu (role_id, menu_id)
values (#{roleId,jdbcType=INTEGER}, #{menuId,jdbcType=INTEGER})
</insert>
<delete id="deleteByRoleId" parameterType="Integer">
delete
from sys_role_menu
where role_id=#{roleId}
</delete>
<select id="selectAll" resultMap="BaseResultMap">
select role_id, menu_id
from sys_role_menu
</select>
<select id="selectByRoleId" parameterType="Integer" resultType="Integer">
select m.id
from sys_menu m left join sys_role_menu rm on m.id = rm.menu_id
where rm.role_id = #{roleId} and m.id not in (select m.parent_id from sys_menu m inner join sys_role_menu rm on m.id = rm.menu_id and rm.role_id = #{roleId})
order by m.parent_id, m.sort
</select>
</mapper>

@ -6,9 +6,9 @@
<result column="user_key" jdbcType="VARCHAR" property="userKey" />
<result column="user_name" jdbcType="VARCHAR" property="userName" />
<result column="nick_name" jdbcType="VARCHAR" property="nickName" />
<result column="Udplat_appId" jdbcType="VARCHAR" property="Udplat_appId" />
<result column="Udplat_secretKey" jdbcType="VARCHAR" property="Udplat_secretKey" />
<result column="Udplat_userName" jdbcType="VARCHAR" property="Udplat_userName" />
<result column="udplat_appId" jdbcType="VARCHAR" property="udplat_appId" />
<result column="udplat_secretKey" jdbcType="VARCHAR" property="udplat_secretKey" />
<result column="udplat_userName" jdbcType="VARCHAR" property="udplat_userName" />
<result column="status" jdbcType="CHAR" property="status"/>
<result column="password" jdbcType="VARCHAR" property="password" />
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
@ -19,22 +19,21 @@
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.sys.SysUser">
insert into sys_user (id, user_key, user_name, Udplat_appId,Udplat_secretKey,Udplat_userName
nick_name, password, sort, create_time,
insert into sys_user (id, user_key, user_name, udplat_appId,udplat_secretKey,udplat_userName
nick_name, password, status, create_time,
role_id)
values (#{id,jdbcType=INTEGER}, #{userKey,jdbcType=VARCHAR}, #{userName,jdbcType=VARCHAR},
#{Udplat_appId,jdbcType=VARCHAR}, #{Udplat_secretKey,jdbcType=VARCHAR}, #{Udplat_userName,jdbcType=VARCHAR},
#{nickName,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR},#{sort,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP},
#{udplat_appId,jdbcType=VARCHAR}, #{udplat_secretKey,jdbcType=VARCHAR}, #{udplat_userName,jdbcType=VARCHAR},
#{nickName,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR},#{status,jdbcType=CHAR}, #{createTime,jdbcType=TIMESTAMP},
#{roleId,jdbcType=INTEGER})
</insert>
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.sys.SysUser">
update sys_user
set user_key = #{userKey,jdbcType=VARCHAR},
user_name = #{userName,jdbcType=VARCHAR},
set user_name = #{userName,jdbcType=VARCHAR},
nick_name = #{nickName,jdbcType=VARCHAR},
Udplat_appId = #{Udplat_appId,jdbcType=VARCHAR},
Udplat_secretKey = #{Udplat_secretKey,jdbcType=VARCHAR},
Udplat_userName = #{Udplat_userName,jdbcType=VARCHAR},
udplat_appId = #{udplat_appId,jdbcType=VARCHAR},
udplat_secretKey = #{udplat_secretKey,jdbcType=VARCHAR},
udplat_userName = #{udplat_userName,jdbcType=VARCHAR},
status = #{status,jdbcType=CHAR},
password = #{password,jdbcType=VARCHAR},
role_id = #{roleId,jdbcType=INTEGER}
@ -53,6 +52,17 @@
SELECT count(u.id) FROM `sys_user` as u LEFT JOIN sys_role r on u.role_id=r.id
LEFT JOIN sys_role_menu rm on r.id=rm.role_id
LEFT JOIN sys_menu m on rm.menu_id=m.id
where u.user_key= #{userKey,jdbcType=VARCHAR} and m.perms= #{perms,jdbcType=VARCHAR}
where u.user_key= #{userKey,jdbcType=VARCHAR} and m.perms= #{perms,jdbcType=VARCHAR} and m.status='0'
</select>
<select id="list" parameterType="com.glxp.udidl.admin.dto.sys.SysUserParam" resultMap="BaseResultMap">
select * from sys_user
<where>
<if test="status != null and status != '' ">
and status = #{status}
</if>
<if test="name != null and name != '' ">
and user_name like concat('%',#{name},'%')
</if>
</where>
</select>
</mapper>
Loading…
Cancel
Save