|
@@ -1,5 +1,6 @@
|
|
|
package com.ruoyi.common.utils;
|
|
|
|
|
|
+import com.ruoyi.common.core.domain.entity.DataSource;
|
|
|
import org.springframework.security.core.Authentication;
|
|
|
import org.springframework.security.core.context.SecurityContextHolder;
|
|
|
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
|
|
@@ -9,22 +10,17 @@ import com.ruoyi.common.exception.ServiceException;
|
|
|
|
|
|
/**
|
|
|
* 安全服务工具类
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ruoyi
|
|
|
*/
|
|
|
-public class SecurityUtils
|
|
|
-{
|
|
|
+public class SecurityUtils {
|
|
|
/**
|
|
|
* 用户ID
|
|
|
**/
|
|
|
- public static Long getUserId()
|
|
|
- {
|
|
|
- try
|
|
|
- {
|
|
|
+ public static Long getUserId() {
|
|
|
+ try {
|
|
|
return getLoginUser().getUserId();
|
|
|
- }
|
|
|
- catch (Exception e)
|
|
|
- {
|
|
|
+ } catch (Exception e) {
|
|
|
throw new ServiceException("获取用户ID异常", HttpStatus.UNAUTHORIZED);
|
|
|
}
|
|
|
}
|
|
@@ -32,51 +28,37 @@ public class SecurityUtils
|
|
|
/**
|
|
|
* 获取部门ID
|
|
|
**/
|
|
|
- public static Long getDeptId()
|
|
|
- {
|
|
|
- try
|
|
|
- {
|
|
|
+ public static Long getDeptId() {
|
|
|
+ try {
|
|
|
return getLoginUser().getDeptId();
|
|
|
- }
|
|
|
- catch (Exception e)
|
|
|
- {
|
|
|
+ } catch (Exception e) {
|
|
|
throw new ServiceException("获取部门ID异常", HttpStatus.UNAUTHORIZED);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* 获取用户账户
|
|
|
**/
|
|
|
- public static String getUsername()
|
|
|
- {
|
|
|
- try
|
|
|
- {
|
|
|
+ public static String getUsername() {
|
|
|
+ try {
|
|
|
return getLoginUser().getUsername();
|
|
|
- }
|
|
|
- catch (Exception e)
|
|
|
- {
|
|
|
+ } catch (Exception e) {
|
|
|
throw new ServiceException("获取用户账户异常", HttpStatus.UNAUTHORIZED);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
public static String getUserType() {
|
|
|
- try
|
|
|
- {
|
|
|
+ try {
|
|
|
return getLoginUser().getUserType();
|
|
|
- }
|
|
|
- catch (Exception e)
|
|
|
- {
|
|
|
+ } catch (Exception e) {
|
|
|
throw new ServiceException("获取用户账户异常", HttpStatus.UNAUTHORIZED);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
public static Long getTenantId() {
|
|
|
- try
|
|
|
- {
|
|
|
+ try {
|
|
|
return getLoginUser().getTenantId();
|
|
|
- }
|
|
|
- catch (Exception e)
|
|
|
- {
|
|
|
+ } catch (Exception e) {
|
|
|
throw new ServiceException("获取租户ID异常", HttpStatus.UNAUTHORIZED);
|
|
|
}
|
|
|
}
|
|
@@ -84,14 +66,10 @@ public class SecurityUtils
|
|
|
/**
|
|
|
* 获取用户
|
|
|
**/
|
|
|
- public static LoginUser getLoginUser()
|
|
|
- {
|
|
|
- try
|
|
|
- {
|
|
|
+ public static LoginUser getLoginUser() {
|
|
|
+ try {
|
|
|
return (LoginUser) getAuthentication().getPrincipal();
|
|
|
- }
|
|
|
- catch (Exception e)
|
|
|
- {
|
|
|
+ } catch (Exception e) {
|
|
|
throw new ServiceException("获取用户信息异常", HttpStatus.UNAUTHORIZED);
|
|
|
}
|
|
|
}
|
|
@@ -99,8 +77,7 @@ public class SecurityUtils
|
|
|
/**
|
|
|
* 获取Authentication
|
|
|
*/
|
|
|
- public static Authentication getAuthentication()
|
|
|
- {
|
|
|
+ public static Authentication getAuthentication() {
|
|
|
return SecurityContextHolder.getContext().getAuthentication();
|
|
|
}
|
|
|
|
|
@@ -110,8 +87,7 @@ public class SecurityUtils
|
|
|
* @param password 密码
|
|
|
* @return 加密字符串
|
|
|
*/
|
|
|
- public static String encryptPassword(String password)
|
|
|
- {
|
|
|
+ public static String encryptPassword(String password) {
|
|
|
BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
|
|
|
return passwordEncoder.encode(password);
|
|
|
}
|
|
@@ -119,24 +95,22 @@ public class SecurityUtils
|
|
|
/**
|
|
|
* 判断密码是否相同
|
|
|
*
|
|
|
- * @param rawPassword 真实密码
|
|
|
+ * @param rawPassword 真实密码
|
|
|
* @param encodedPassword 加密后字符
|
|
|
* @return 结果
|
|
|
*/
|
|
|
- public static boolean matchesPassword(String rawPassword, String encodedPassword)
|
|
|
- {
|
|
|
+ public static boolean matchesPassword(String rawPassword, String encodedPassword) {
|
|
|
BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
|
|
|
return passwordEncoder.matches(rawPassword, encodedPassword);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 是否为管理员
|
|
|
- *
|
|
|
+ *
|
|
|
* @param userId 用户ID
|
|
|
* @return 结果
|
|
|
*/
|
|
|
- public static boolean isAdmin(Long userId)
|
|
|
- {
|
|
|
+ public static boolean isAdmin(Long userId) {
|
|
|
return userId != null && 1L == userId;
|
|
|
}
|
|
|
|
|
@@ -144,7 +118,7 @@ public class SecurityUtils
|
|
|
return tenantId != null && "01".equals(userType);
|
|
|
}
|
|
|
|
|
|
- public static boolean isLoginUserTenantAdmin() {
|
|
|
+ public static boolean isLoginUserTenantAdmin() {
|
|
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
|
|
if (loginUser == null) {
|
|
|
return false;
|
|
@@ -152,4 +126,14 @@ public class SecurityUtils
|
|
|
return loginUser.isTenantAdmin();
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取当前登录用户的数据源信息
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public static DataSource getDatasourceInfo() {
|
|
|
+ LoginUser loginUser = SecurityUtils.getLoginUser();
|
|
|
+ return loginUser.getUser().getTenant().getDataSource();
|
|
|
+ }
|
|
|
}
|