解决header获取username中文情况下乱码

pull/37/head
DokiYolo 4 years ago
parent a445462153
commit a95be9d418

@ -1,10 +1,15 @@
package com.ruoyi.common.core.utils; package com.ruoyi.common.core.utils;
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequest;
import com.ruoyi.common.core.exception.BaseException;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import com.ruoyi.common.core.constant.CacheConstants; import com.ruoyi.common.core.constant.CacheConstants;
import com.ruoyi.common.core.text.Convert; import com.ruoyi.common.core.text.Convert;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
/** /**
* *
* *
@ -17,7 +22,13 @@ public class SecurityUtils
*/ */
public static String getUsername() public static String getUsername()
{ {
return ServletUtils.getRequest().getHeader(CacheConstants.DETAILS_USERNAME); String username = "";
try {
username = URLDecoder.decode(ServletUtils.getRequest().getHeader(CacheConstants.DETAILS_USERNAME), "UTF-8");
} catch (UnsupportedEncodingException e) {
throw new BaseException("获取username失败");
}
return username;
} }
/** /**

@ -24,6 +24,8 @@ import com.ruoyi.common.core.utils.StringUtils;
import com.ruoyi.common.redis.service.RedisService; import com.ruoyi.common.redis.service.RedisService;
import com.ruoyi.gateway.config.properties.IgnoreWhiteProperties; import com.ruoyi.gateway.config.properties.IgnoreWhiteProperties;
import reactor.core.publisher.Mono; import reactor.core.publisher.Mono;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
/** /**
* *
@ -68,7 +70,7 @@ public class AuthFilter implements GlobalFilter, Ordered
} }
JSONObject obj = JSONObject.parseObject(userStr); JSONObject obj = JSONObject.parseObject(userStr);
String userid = obj.getString("userid"); String userid = obj.getString("userid");
String username = obj.getString("username"); String username = urlEncode(obj.getString("username"));
if (StringUtils.isBlank(userid) || StringUtils.isBlank(username)) if (StringUtils.isBlank(userid) || StringUtils.isBlank(username))
{ {
return setUnauthorizedResponse(exchange, "令牌验证失败"); return setUnauthorizedResponse(exchange, "令牌验证失败");
@ -103,6 +105,18 @@ public class AuthFilter implements GlobalFilter, Ordered
return CacheConstants.LOGIN_TOKEN_KEY + token; return CacheConstants.LOGIN_TOKEN_KEY + token;
} }
/**
*
*/
private String urlEncode(String value) {
try {
value = URLEncoder.encode(value, "UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
return value;
}
/** /**
* token * token
*/ */

Loading…
Cancel
Save