diff --git a/hyp-admin/src/main/java/com/hyp/web/controller/apply/TestController.java b/hyp-admin/src/main/java/com/hyp/web/controller/apply/TestController.java new file mode 100644 index 0000000..a45f409 --- /dev/null +++ b/hyp-admin/src/main/java/com/hyp/web/controller/apply/TestController.java @@ -0,0 +1,13 @@ +package com.hyp.web.controller.apply; + +/** + * packageName com.hyp.web.controller.apply + * + * @author wangxy + * @version JDK 8 + * @className TestController + * @date 2024/4/10 + * @description TODO + */ +public class TestController { +} diff --git a/hyp-admin/src/main/resources/application.yml b/hyp-admin/src/main/resources/application.yml index 5dcebcd..1d6d33b 100644 --- a/hyp-admin/src/main/resources/application.yml +++ b/hyp-admin/src/main/resources/application.yml @@ -131,4 +131,4 @@ xss: # 排除链接(多个用逗号分隔) excludes: /system/notice # 匹配链接 - urlPatterns: /system/*,/monitor/*,/tool/* + urlPatterns: /system/*,/monitor/*,/tool/*,/apply/* diff --git a/hyp-common/src/main/java/com/hyp/common/core/domain/model/LoginBody.java b/hyp-common/src/main/java/com/hyp/common/core/domain/model/LoginBody.java index f6a3a77..4f17ef8 100644 --- a/hyp-common/src/main/java/com/hyp/common/core/domain/model/LoginBody.java +++ b/hyp-common/src/main/java/com/hyp/common/core/domain/model/LoginBody.java @@ -27,6 +27,11 @@ public class LoginBody */ private String uuid; + /** + * 角色key + */ + private String roleKey; + public String getUsername() { return username; @@ -66,4 +71,12 @@ public class LoginBody { this.uuid = uuid; } + + public String getRoleKey() { + return roleKey; + } + + public void setRoleKey(String roleKey) { + this.roleKey = roleKey; + } } diff --git a/hyp-framework/src/main/java/com/hyp/framework/web/service/SysRegisterService.java b/hyp-framework/src/main/java/com/hyp/framework/web/service/SysRegisterService.java index b11292b..cd6708d 100644 --- a/hyp-framework/src/main/java/com/hyp/framework/web/service/SysRegisterService.java +++ b/hyp-framework/src/main/java/com/hyp/framework/web/service/SysRegisterService.java @@ -1,5 +1,9 @@ package com.hyp.framework.web.service; +import com.hyp.common.core.domain.entity.SysRole; +import com.hyp.system.domain.SysUserRole; +import com.hyp.system.mapper.SysUserRoleMapper; +import com.hyp.system.service.ISysRoleService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import com.hyp.common.constant.CacheConstants; @@ -18,6 +22,10 @@ import com.hyp.framework.manager.factory.AsyncFactory; import com.hyp.system.service.ISysConfigService; import com.hyp.system.service.ISysUserService; +import java.util.ArrayList; +import java.util.List; +import java.util.Objects; + /** * 注册校验方法 * @@ -35,6 +43,13 @@ public class SysRegisterService @Autowired private RedisCache redisCache; + @Autowired + private SysUserRoleMapper userRoleMapper; + + + @Autowired + private ISysRoleService roleService; + /** * 注册 */ @@ -78,6 +93,8 @@ public class SysRegisterService sysUser.setNickName(username); sysUser.setPassword(SecurityUtils.encryptPassword(password)); boolean regFlag = userService.registerUser(sysUser); + //注册绑定角色 + roleBinding(sysUser,"yxxxj_xxl"); if (!regFlag) { msg = "注册失败,请联系系统管理人员"; @@ -90,6 +107,28 @@ public class SysRegisterService return msg; } + /** + * + * 注册绑定角色 + * @param sysUser + * @param roleKey + * @return void + */ + + public void roleBinding(SysUser sysUser,String roleKey) { + //注册绑定角色 + userRoleMapper.deleteUserRoleByUserId(sysUser.getUserId()); + List list = new ArrayList<>(); + SysUserRole ur = new SysUserRole(); + ur.setUserId(sysUser.getUserId()); + SysRole sysRole = roleService.selectRoleByKey(roleKey); + if(Objects.nonNull(sysRole)){ + ur.setRoleId(sysRole.getRoleId()); + } + list.add(ur); + userRoleMapper.batchUserRole(list); + } + /** * 校验验证码 * diff --git a/hyp-system/src/main/java/com/hyp/system/mapper/SysRoleMapper.java b/hyp-system/src/main/java/com/hyp/system/mapper/SysRoleMapper.java index 14e1535..fbddc6f 100644 --- a/hyp-system/src/main/java/com/hyp/system/mapper/SysRoleMapper.java +++ b/hyp-system/src/main/java/com/hyp/system/mapper/SysRoleMapper.java @@ -104,4 +104,12 @@ public interface SysRoleMapper * @return 结果 */ public int deleteRoleByIds(Long[] roleIds); + + /** + * 通过角色key查询角色 + * + * @param roleKey 角色Key + * @return 角色对象信息 + */ + public SysRole selectRoleByKey(String roleKey); } diff --git a/hyp-system/src/main/java/com/hyp/system/service/ISysRoleService.java b/hyp-system/src/main/java/com/hyp/system/service/ISysRoleService.java index a6eeb7b..37c7441 100644 --- a/hyp-system/src/main/java/com/hyp/system/service/ISysRoleService.java +++ b/hyp-system/src/main/java/com/hyp/system/service/ISysRoleService.java @@ -170,4 +170,13 @@ public interface ISysRoleService * @return 结果 */ public int insertAuthUsers(Long roleId, Long[] userIds); + + + /** + * 通过角色key查询角色 + * + * @param roleKey 角色Key + * @return 角色对象信息 + */ + public SysRole selectRoleByKey(String roleKey); } diff --git a/hyp-system/src/main/java/com/hyp/system/service/impl/SysRoleServiceImpl.java b/hyp-system/src/main/java/com/hyp/system/service/impl/SysRoleServiceImpl.java index 756f835..0872d65 100644 --- a/hyp-system/src/main/java/com/hyp/system/service/impl/SysRoleServiceImpl.java +++ b/hyp-system/src/main/java/com/hyp/system/service/impl/SysRoleServiceImpl.java @@ -421,4 +421,17 @@ public class SysRoleServiceImpl implements ISysRoleService } return userRoleMapper.batchUserRole(list); } + + + /** + * 通过角色ID查询角色 + * + * @param roleKey 角色KEY + * @return 角色对象信息 + */ + @Override + public SysRole selectRoleByKey(String roleKey) + { + return roleMapper.selectRoleByKey(roleKey); + } } diff --git a/hyp-system/src/main/resources/mapper/system/SysRoleMapper.xml b/hyp-system/src/main/resources/mapper/system/SysRoleMapper.xml index cce154b..78ccb06 100644 --- a/hyp-system/src/main/resources/mapper/system/SysRoleMapper.xml +++ b/hyp-system/src/main/resources/mapper/system/SysRoleMapper.xml @@ -92,8 +92,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" where r.role_key=#{roleKey} and r.del_flag = '0' limit 1 - - + + + insert into sys_role( role_id, role_name, @@ -148,5 +149,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" #{roleId} + + \ No newline at end of file