验证码

ww
chengqf 2 years ago
parent 70ea9fbe36
commit 77f9eaff36

@ -4,10 +4,13 @@ import java.util.Map;
import javax.servlet.http.HttpSession;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
import com.alibaba.fastjson2.JSON;
import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.util.CaptchaUtils;
@ -16,12 +19,13 @@ import lombok.extern.slf4j.Slf4j;
@RestController
@Slf4j
public class RegisterController {
private static final Logger logger = LoggerFactory.getLogger(RegisterController.class);
@PostMapping("/admin/auth/register/getCheckcode")
public BaseResponse getCheckcode(@RequestBody Map<String,Object> params, HttpSession httpSession) {
return CaptchaUtils.checkCode(params);
logger.info("---------------"+JSON.toJSONString(params));
return CaptchaUtils.getCheckcode(params,httpSession);
}
}

@ -5,8 +5,11 @@ import java.util.Map;
import javax.annotation.Resource;
import javax.servlet.http.HttpSession;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.stereotype.Component;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.client.RestTemplate;
@ -21,11 +24,16 @@ import cn.hutool.core.util.StrUtil;
/**
*
*/
@Component
public class CaptchaUtils {
private static final Logger logger = LoggerFactory.getLogger(CaptchaUtils.class);
private static String Url = "http://106.ihuyi.com/webservice/sms.php?method=Submit";
@Resource
static RedisUtil redisUtil;
@Resource
public void getRedisUtil(RedisUtil redisUtil) {
this.redisUtil = redisUtil;
}
private CaptchaUtils() {
}
@ -40,7 +48,7 @@ public class CaptchaUtils {
redisUtil.del(Constant.CAPTCHAS + params.get("mobile"));
return ResultVOUtils.success();
}
public BaseResponse getCheckcode(Map<String,Object> params, HttpSession httpSession) {
public static BaseResponse getCheckcode(Map<String,Object> params, HttpSession httpSession) {
RestTemplate restTemplate = new RestTemplate();
int mobile_code = (int) ((Math.random() * 9 + 1) * 100000);
MultiValueMap<String, Object> postParameters = new LinkedMultiValueMap<>();

Loading…
Cancel
Save