|
@@ -1,7 +1,9 @@
|
|
|
package cn.iocoder.yudao.framework.web.core.util;
|
|
|
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
import cn.iocoder.yudao.framework.common.enums.UserTypeEnum;
|
|
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
|
|
+import cn.iocoder.yudao.framework.web.config.WebProperties;
|
|
|
import org.springframework.web.context.request.RequestAttributes;
|
|
|
import org.springframework.web.context.request.RequestContextHolder;
|
|
|
import org.springframework.web.context.request.ServletRequestAttributes;
|
|
@@ -21,16 +23,43 @@ public class WebFrameworkUtils {
|
|
|
|
|
|
private static final String REQUEST_ATTRIBUTE_COMMON_RESULT = "common_result";
|
|
|
|
|
|
+ private static final String HEADER_TENANT_ID = "tenant-id";
|
|
|
+
|
|
|
+ private static WebProperties properties;
|
|
|
+
|
|
|
+ public WebFrameworkUtils(WebProperties webProperties) {
|
|
|
+ WebFrameworkUtils.properties = webProperties;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获得租户编号,从 header 中
|
|
|
+ * 考虑到其它 framework 组件也会使用到租户编号,所以不得不放在 WebFrameworkUtils 统一提供
|
|
|
+ *
|
|
|
+ * @param request 请求
|
|
|
+ * @return 租户编号
|
|
|
+ */
|
|
|
+ public static Long getTenantId(HttpServletRequest request) {
|
|
|
+ String tenantId = request.getHeader(HEADER_TENANT_ID);
|
|
|
+ return StrUtil.isNotEmpty(tenantId) ? Long.valueOf(tenantId) : null;
|
|
|
+ }
|
|
|
+
|
|
|
public static void setLoginUserId(ServletRequest request, Long userId) {
|
|
|
request.setAttribute(REQUEST_ATTRIBUTE_LOGIN_USER_ID, userId);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 设置用户类型
|
|
|
+ *
|
|
|
+ * @param request 请求
|
|
|
+ * @param userType 用户类型
|
|
|
+ */
|
|
|
public static void setLoginUserType(ServletRequest request, Integer userType) {
|
|
|
request.setAttribute(REQUEST_ATTRIBUTE_LOGIN_USER_TYPE, userType);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 获得当前用户的编号,从请求中
|
|
|
+ * 注意:该方法仅限于 framework 框架使用!!!
|
|
|
*
|
|
|
* @param request 请求
|
|
|
* @return 用户编号
|
|
@@ -43,7 +72,8 @@ public class WebFrameworkUtils {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 获得当前用户的类型,从请求中
|
|
|
+ * 获得当前用户的类型
|
|
|
+ * 注意:该方法仅限于 web 相关的 framework 组件使用!!!
|
|
|
*
|
|
|
* @param request 请求
|
|
|
* @return 用户编号
|
|
@@ -52,7 +82,19 @@ public class WebFrameworkUtils {
|
|
|
if (request == null) {
|
|
|
return null;
|
|
|
}
|
|
|
- return (Integer) request.getAttribute(REQUEST_ATTRIBUTE_LOGIN_USER_TYPE);
|
|
|
+ // 1. 优先,从 Attribute 中获取
|
|
|
+ Integer userType = (Integer) request.getAttribute(REQUEST_ATTRIBUTE_LOGIN_USER_TYPE);
|
|
|
+ if (userType == null) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ // 2. 其次,基于 URL 前缀的约定
|
|
|
+ if (request.getRequestURI().startsWith(properties.getAdminApi().getPrefix())) {
|
|
|
+ return UserTypeEnum.ADMIN.getValue();
|
|
|
+ }
|
|
|
+ if (request.getRequestURI().startsWith(properties.getAppApi().getPrefix())) {
|
|
|
+ return UserTypeEnum.MEMBER.getValue();
|
|
|
+ }
|
|
|
+ return null;
|
|
|
}
|
|
|
|
|
|
public static Integer getLoginUserType() {
|