|
|
|
@ -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<>();
|
|
|
|
|