|
@@ -2,13 +2,18 @@ package com.ruoyi.web.controller.common;
|
|
|
|
|
|
import java.awt.image.BufferedImage;
|
|
import java.awt.image.BufferedImage;
|
|
import java.io.IOException;
|
|
import java.io.IOException;
|
|
|
|
+import java.util.Random;
|
|
|
|
+import java.util.concurrent.ExecutionException;
|
|
import java.util.concurrent.TimeUnit;
|
|
import java.util.concurrent.TimeUnit;
|
|
import javax.annotation.Resource;
|
|
import javax.annotation.Resource;
|
|
import javax.imageio.ImageIO;
|
|
import javax.imageio.ImageIO;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
+
|
|
|
|
+import com.ruoyi.generator.util.SendSms;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.util.FastByteArrayOutputStream;
|
|
import org.springframework.util.FastByteArrayOutputStream;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import com.google.code.kaptcha.Producer;
|
|
import com.google.code.kaptcha.Producer;
|
|
import com.ruoyi.common.config.RuoYiConfig;
|
|
import com.ruoyi.common.config.RuoYiConfig;
|
|
@@ -22,12 +27,11 @@ import com.ruoyi.system.service.ISysConfigService;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 验证码操作处理
|
|
* 验证码操作处理
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @author ruoyi
|
|
* @author ruoyi
|
|
*/
|
|
*/
|
|
@RestController
|
|
@RestController
|
|
-public class CaptchaController
|
|
|
|
-{
|
|
|
|
|
|
+public class CaptchaController {
|
|
@Resource(name = "captchaProducer")
|
|
@Resource(name = "captchaProducer")
|
|
private Producer captchaProducer;
|
|
private Producer captchaProducer;
|
|
|
|
|
|
@@ -36,20 +40,19 @@ public class CaptchaController
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
private RedisCache redisCache;
|
|
private RedisCache redisCache;
|
|
-
|
|
|
|
|
|
+
|
|
@Autowired
|
|
@Autowired
|
|
private ISysConfigService configService;
|
|
private ISysConfigService configService;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 生成验证码
|
|
* 生成验证码
|
|
*/
|
|
*/
|
|
@GetMapping("/captchaImage")
|
|
@GetMapping("/captchaImage")
|
|
- public AjaxResult getCode(HttpServletResponse response) throws IOException
|
|
|
|
- {
|
|
|
|
|
|
+ public AjaxResult getCode(HttpServletResponse response) throws IOException {
|
|
AjaxResult ajax = AjaxResult.success();
|
|
AjaxResult ajax = AjaxResult.success();
|
|
boolean captchaEnabled = configService.selectCaptchaEnabled();
|
|
boolean captchaEnabled = configService.selectCaptchaEnabled();
|
|
ajax.put("captchaEnabled", captchaEnabled);
|
|
ajax.put("captchaEnabled", captchaEnabled);
|
|
- if (!captchaEnabled)
|
|
|
|
- {
|
|
|
|
|
|
+ if (!captchaEnabled) {
|
|
return ajax;
|
|
return ajax;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -62,15 +65,12 @@ public class CaptchaController
|
|
|
|
|
|
// 生成验证码
|
|
// 生成验证码
|
|
String captchaType = RuoYiConfig.getCaptchaType();
|
|
String captchaType = RuoYiConfig.getCaptchaType();
|
|
- if ("math".equals(captchaType))
|
|
|
|
- {
|
|
|
|
|
|
+ if ("math".equals(captchaType)) {
|
|
String capText = captchaProducerMath.createText();
|
|
String capText = captchaProducerMath.createText();
|
|
capStr = capText.substring(0, capText.lastIndexOf("@"));
|
|
capStr = capText.substring(0, capText.lastIndexOf("@"));
|
|
code = capText.substring(capText.lastIndexOf("@") + 1);
|
|
code = capText.substring(capText.lastIndexOf("@") + 1);
|
|
image = captchaProducerMath.createImage(capStr);
|
|
image = captchaProducerMath.createImage(capStr);
|
|
- }
|
|
|
|
- else if ("char".equals(captchaType))
|
|
|
|
- {
|
|
|
|
|
|
+ } else if ("char".equals(captchaType)) {
|
|
capStr = code = captchaProducer.createText();
|
|
capStr = code = captchaProducer.createText();
|
|
image = captchaProducer.createImage(capStr);
|
|
image = captchaProducer.createImage(capStr);
|
|
}
|
|
}
|
|
@@ -78,12 +78,9 @@ public class CaptchaController
|
|
redisCache.setCacheObject(verifyKey, code, Constants.CAPTCHA_EXPIRATION, TimeUnit.MINUTES);
|
|
redisCache.setCacheObject(verifyKey, code, Constants.CAPTCHA_EXPIRATION, TimeUnit.MINUTES);
|
|
// 转换流信息写出
|
|
// 转换流信息写出
|
|
FastByteArrayOutputStream os = new FastByteArrayOutputStream();
|
|
FastByteArrayOutputStream os = new FastByteArrayOutputStream();
|
|
- try
|
|
|
|
- {
|
|
|
|
|
|
+ try {
|
|
ImageIO.write(image, "jpg", os);
|
|
ImageIO.write(image, "jpg", os);
|
|
- }
|
|
|
|
- catch (IOException e)
|
|
|
|
- {
|
|
|
|
|
|
+ } catch (IOException e) {
|
|
return AjaxResult.error(e.getMessage());
|
|
return AjaxResult.error(e.getMessage());
|
|
}
|
|
}
|
|
|
|
|
|
@@ -91,4 +88,17 @@ public class CaptchaController
|
|
ajax.put("img", Base64.encode(os.toByteArray()));
|
|
ajax.put("img", Base64.encode(os.toByteArray()));
|
|
return ajax;
|
|
return ajax;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ @GetMapping("/captchaCode")
|
|
|
|
+ public AjaxResult getSmsCode(String phoneNumber) throws ExecutionException, InterruptedException {
|
|
|
|
+ //1.生成随机四位验证码
|
|
|
|
+ Random random = new Random();
|
|
|
|
+ int code = 1000 + random.nextInt(9000);
|
|
|
|
+ //2.发送验证码
|
|
|
|
+ SendSms.sendMsg("次元时代", "SMS_474845159", phoneNumber, String.valueOf(code));
|
|
|
|
+ //3.存入redis
|
|
|
|
+ String verifyKey = CacheConstants.CAPTCHA_CODE_KEY + code;
|
|
|
|
+ redisCache.setCacheObject(verifyKey, code, Constants.SMS_EXPIRATION, TimeUnit.MINUTES);
|
|
|
|
+ return AjaxResult.success("短信验证码发送成功!");
|
|
|
|
+ }
|
|
}
|
|
}
|