小程序头部参数修改

dev_drug_dm
yewj 3 weeks ago
parent 0e33ba7982
commit c994d375b3

@ -52,14 +52,35 @@ public class AuthorizeAspect {
}
HttpServletRequest request = attributes.getRequest();
// 尝试获取下划线格式的请求头信息
String id = request.getHeader("ADMIN_ID");
String token = request.getHeader("ADMIN_TOKEN");
// 如果没有获取到,尝试获取驼峰格式的请求头信息
if (StrUtil.isBlank(id)) {
id = request.getHeader("adminId");
}
if (StrUtil.isBlank(token)) {
token = request.getHeader("adminToken");
}
// 如果 id 或 token 仍然为空
if (StrUtil.isBlank(id) || StrUtil.isBlank(token)) {
// 尝试获取下划线格式的 api_key 和 secret_key
String apiKey = request.getHeader("api_key");
String secretKey = request.getHeader("secret_key");
// 如果没有获取到,尝试获取驼峰格式的 apiKey 和 secretKey
if (StrUtil.isBlank(apiKey)) {
apiKey = request.getHeader("apiKey");
}
if (StrUtil.isBlank(secretKey)) {
secretKey = request.getHeader("secretKey");
}
AuthLicense authLicense = authLicenseDao.get(apiKey);
if (authLicense != null && authLicense.getSecretKey().equals(secretKey)) {
// 这里可以添加验证通过后的逻辑
} else {
throw new JsonException(ResultEnum.LOGIN_VERIFY_FALL);
}

@ -581,7 +581,7 @@
<if test="notCodeType != '' and notCodeType != null">
AND basic_udirel.notCodeType = #{notCodeType}
</if>
<if test="manuReview != '' and thirdId != null">
<if test="manuReview != '' and manuReview != null">
AND manuReview = #{manuReview}
</if>
<if test="thirdId != '' and thirdId != null">

Loading…
Cancel
Save