|
|
|
@ -1,83 +1,62 @@
|
|
|
|
|
package com.ruoyi.gateway.config;
|
|
|
|
|
|
|
|
|
|
import java.util.Properties;
|
|
|
|
|
import cn.hutool.captcha.CaptchaUtil;
|
|
|
|
|
import cn.hutool.captcha.CircleCaptcha;
|
|
|
|
|
import cn.hutool.captcha.LineCaptcha;
|
|
|
|
|
import cn.hutool.captcha.ShearCaptcha;
|
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
|
import com.google.code.kaptcha.impl.DefaultKaptcha;
|
|
|
|
|
import com.google.code.kaptcha.util.Config;
|
|
|
|
|
import static com.google.code.kaptcha.Constants.*;
|
|
|
|
|
import org.springframework.context.annotation.Lazy;
|
|
|
|
|
|
|
|
|
|
import java.awt.*;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 验证码配置
|
|
|
|
|
*
|
|
|
|
|
* @author ruoyi
|
|
|
|
|
*
|
|
|
|
|
* @author Lion Li
|
|
|
|
|
*/
|
|
|
|
|
@Configuration
|
|
|
|
|
public class CaptchaConfig
|
|
|
|
|
{
|
|
|
|
|
@Bean(name = "captchaProducer")
|
|
|
|
|
public DefaultKaptcha getKaptchaBean()
|
|
|
|
|
{
|
|
|
|
|
DefaultKaptcha defaultKaptcha = new DefaultKaptcha();
|
|
|
|
|
Properties properties = new Properties();
|
|
|
|
|
// 是否有边框 默认为true 我们可以自己设置yes,no
|
|
|
|
|
properties.setProperty(KAPTCHA_BORDER, "yes");
|
|
|
|
|
// 验证码文本字符颜色 默认为Color.BLACK
|
|
|
|
|
properties.setProperty(KAPTCHA_TEXTPRODUCER_FONT_COLOR, "black");
|
|
|
|
|
// 验证码图片宽度 默认为200
|
|
|
|
|
properties.setProperty(KAPTCHA_IMAGE_WIDTH, "160");
|
|
|
|
|
// 验证码图片高度 默认为50
|
|
|
|
|
properties.setProperty(KAPTCHA_IMAGE_HEIGHT, "60");
|
|
|
|
|
// 验证码文本字符大小 默认为40
|
|
|
|
|
properties.setProperty(KAPTCHA_TEXTPRODUCER_FONT_SIZE, "38");
|
|
|
|
|
// KAPTCHA_SESSION_KEY
|
|
|
|
|
properties.setProperty(KAPTCHA_SESSION_CONFIG_KEY, "kaptchaCode");
|
|
|
|
|
// 验证码文本字符长度 默认为5
|
|
|
|
|
properties.setProperty(KAPTCHA_TEXTPRODUCER_CHAR_LENGTH, "4");
|
|
|
|
|
// 验证码文本字体样式 默认为new Font("Arial", 1, fontSize), new Font("Courier", 1, fontSize)
|
|
|
|
|
properties.setProperty(KAPTCHA_TEXTPRODUCER_FONT_NAMES, "Arial,Courier");
|
|
|
|
|
// 图片样式 水纹com.google.code.kaptcha.impl.WaterRipple 鱼眼com.google.code.kaptcha.impl.FishEyeGimpy 阴影com.google.code.kaptcha.impl.ShadowGimpy
|
|
|
|
|
properties.setProperty(KAPTCHA_OBSCURIFICATOR_IMPL, "com.google.code.kaptcha.impl.ShadowGimpy");
|
|
|
|
|
Config config = new Config(properties);
|
|
|
|
|
defaultKaptcha.setConfig(config);
|
|
|
|
|
return defaultKaptcha;
|
|
|
|
|
public class CaptchaConfig {
|
|
|
|
|
|
|
|
|
|
private final int width = 160;
|
|
|
|
|
private final int height = 60;
|
|
|
|
|
private final Color background = Color.PINK;
|
|
|
|
|
private final Font font = new Font("Arial", Font.BOLD, 48);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 圆圈干扰验证码
|
|
|
|
|
*/
|
|
|
|
|
@Lazy
|
|
|
|
|
@Bean
|
|
|
|
|
public CircleCaptcha circleCaptcha() {
|
|
|
|
|
CircleCaptcha captcha = CaptchaUtil.createCircleCaptcha(width, height);
|
|
|
|
|
captcha.setBackground(background);
|
|
|
|
|
captcha.setFont(font);
|
|
|
|
|
return captcha;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Bean(name = "captchaProducerMath")
|
|
|
|
|
public DefaultKaptcha getKaptchaBeanMath()
|
|
|
|
|
{
|
|
|
|
|
DefaultKaptcha defaultKaptcha = new DefaultKaptcha();
|
|
|
|
|
Properties properties = new Properties();
|
|
|
|
|
// 是否有边框 默认为true 我们可以自己设置yes,no
|
|
|
|
|
properties.setProperty(KAPTCHA_BORDER, "yes");
|
|
|
|
|
// 边框颜色 默认为Color.BLACK
|
|
|
|
|
properties.setProperty(KAPTCHA_BORDER_COLOR, "105,179,90");
|
|
|
|
|
// 验证码文本字符颜色 默认为Color.BLACK
|
|
|
|
|
properties.setProperty(KAPTCHA_TEXTPRODUCER_FONT_COLOR, "blue");
|
|
|
|
|
// 验证码图片宽度 默认为200
|
|
|
|
|
properties.setProperty(KAPTCHA_IMAGE_WIDTH, "160");
|
|
|
|
|
// 验证码图片高度 默认为50
|
|
|
|
|
properties.setProperty(KAPTCHA_IMAGE_HEIGHT, "60");
|
|
|
|
|
// 验证码文本字符大小 默认为40
|
|
|
|
|
properties.setProperty(KAPTCHA_TEXTPRODUCER_FONT_SIZE, "35");
|
|
|
|
|
// KAPTCHA_SESSION_KEY
|
|
|
|
|
properties.setProperty(KAPTCHA_SESSION_CONFIG_KEY, "kaptchaCodeMath");
|
|
|
|
|
// 验证码文本生成器
|
|
|
|
|
properties.setProperty(KAPTCHA_TEXTPRODUCER_IMPL, "com.ruoyi.gateway.config.KaptchaTextCreator");
|
|
|
|
|
// 验证码文本字符间距 默认为2
|
|
|
|
|
properties.setProperty(KAPTCHA_TEXTPRODUCER_CHAR_SPACE, "3");
|
|
|
|
|
// 验证码文本字符长度 默认为5
|
|
|
|
|
properties.setProperty(KAPTCHA_TEXTPRODUCER_CHAR_LENGTH, "6");
|
|
|
|
|
// 验证码文本字体样式 默认为new Font("Arial", 1, fontSize), new Font("Courier", 1, fontSize)
|
|
|
|
|
properties.setProperty(KAPTCHA_TEXTPRODUCER_FONT_NAMES, "Arial,Courier");
|
|
|
|
|
// 验证码噪点颜色 默认为Color.BLACK
|
|
|
|
|
properties.setProperty(KAPTCHA_NOISE_COLOR, "white");
|
|
|
|
|
// 干扰实现类
|
|
|
|
|
properties.setProperty(KAPTCHA_NOISE_IMPL, "com.google.code.kaptcha.impl.NoNoise");
|
|
|
|
|
// 图片样式 水纹com.google.code.kaptcha.impl.WaterRipple 鱼眼com.google.code.kaptcha.impl.FishEyeGimpy 阴影com.google.code.kaptcha.impl.ShadowGimpy
|
|
|
|
|
properties.setProperty(KAPTCHA_OBSCURIFICATOR_IMPL, "com.google.code.kaptcha.impl.ShadowGimpy");
|
|
|
|
|
Config config = new Config(properties);
|
|
|
|
|
defaultKaptcha.setConfig(config);
|
|
|
|
|
return defaultKaptcha;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 线段干扰的验证码
|
|
|
|
|
*/
|
|
|
|
|
@Lazy
|
|
|
|
|
@Bean
|
|
|
|
|
public LineCaptcha lineCaptcha() {
|
|
|
|
|
LineCaptcha captcha = CaptchaUtil.createLineCaptcha(width, height);
|
|
|
|
|
captcha.setBackground(background);
|
|
|
|
|
captcha.setFont(font);
|
|
|
|
|
return captcha;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 扭曲干扰验证码
|
|
|
|
|
*/
|
|
|
|
|
@Lazy
|
|
|
|
|
@Bean
|
|
|
|
|
public ShearCaptcha shearCaptcha() {
|
|
|
|
|
ShearCaptcha captcha = CaptchaUtil.createShearCaptcha(width, height);
|
|
|
|
|
captcha.setBackground(background);
|
|
|
|
|
captcha.setFont(font);
|
|
|
|
|
return captcha;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|