mirror of https://gitee.com/maxjhandsome/pig
Improving structure / format of the code. 优化gateway.checkCode()验证验证码逻辑
This commit is contained in:
parent
626f559c92
commit
4e73fcdd4b
|
@ -22,7 +22,7 @@
|
|||
| Spring Cloud Alibaba | 2021.1 |
|
||||
| Spring Security OAuth2 | 2.3.6 |
|
||||
| Mybatis Plus | 3.4.3 |
|
||||
| hutool | 5.7.6 |
|
||||
| hutool | 5.7.7 |
|
||||
| Avue | 2.6.18 |
|
||||
|
||||
### 模块说明
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
package com.pig4cloud.pig.gateway.filter;
|
||||
|
||||
import cn.hutool.core.text.CharSequenceUtil;
|
||||
import cn.hutool.core.util.ObjectUtil;
|
||||
import cn.hutool.core.util.StrUtil;
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
|
@ -121,12 +122,9 @@ public class ValidateCodeGatewayFilter extends AbstractGatewayFilterFactory<Obje
|
|||
|
||||
Object codeObj = redisTemplate.opsForValue().get(key);
|
||||
|
||||
if (codeObj == null) {
|
||||
throw new ValidateCodeException("验证码不合法");
|
||||
}
|
||||
|
||||
redisTemplate.delete(key);
|
||||
if (!code.equals(codeObj)) {
|
||||
|
||||
if (ObjectUtil.isEmpty(codeObj) || !code.equals(codeObj)) {
|
||||
throw new ValidateCodeException("验证码不合法");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue