|
@@ -1,99 +0,0 @@
|
|
|
-/*
|
|
|
- * Copyright (c) 2018-2025, lengleng All rights reserved.
|
|
|
- *
|
|
|
- * Redistribution and use in source and binary forms, with or without
|
|
|
- * modification, are permitted provided that the following conditions are met:
|
|
|
- *
|
|
|
- * Redistributions of source code must retain the above copyright notice,
|
|
|
- * this list of conditions and the following disclaimer.
|
|
|
- * Redistributions in binary form must reproduce the above copyright
|
|
|
- * notice, this list of conditions and the following disclaimer in the
|
|
|
- * documentation and/or other materials provided with the distribution.
|
|
|
- * Neither the name of the pig4cloud.com developer nor the names of its
|
|
|
- * contributors may be used to endorse or promote products derived from
|
|
|
- * this software without specific prior written permission.
|
|
|
- * Author: lengleng (wangiegie@gmail.com)
|
|
|
- */
|
|
|
-
|
|
|
-package com.pig4cloud.pigx.gateway.config;
|
|
|
-
|
|
|
-import com.google.code.kaptcha.impl.DefaultKaptcha;
|
|
|
-import com.google.code.kaptcha.util.Config;
|
|
|
-import org.springframework.context.annotation.Bean;
|
|
|
-import org.springframework.context.annotation.Configuration;
|
|
|
-
|
|
|
-import java.util.Properties;
|
|
|
-
|
|
|
-/**
|
|
|
- * @author lengleng
|
|
|
- * @date 2017-12-21 21:12:18
|
|
|
- */
|
|
|
-@Configuration
|
|
|
-public class KaptchaConfiguration {
|
|
|
-
|
|
|
- private static final String KAPTCHA_BORDER = "kaptcha.border";
|
|
|
- private static final String KAPTCHA_TEXTPRODUCER_FONT_COLOR = "kaptcha.textproducer.font.color";
|
|
|
- private static final String KAPTCHA_TEXTPRODUCER_CHAR_SPACE = "kaptcha.textproducer.char.space";
|
|
|
- private static final String KAPTCHA_IMAGE_WIDTH = "kaptcha.image.width";
|
|
|
- private static final String KAPTCHA_IMAGE_HEIGHT = "kaptcha.image.height";
|
|
|
- private static final String KAPTCHA_TEXTPRODUCER_CHAR_LENGTH = "kaptcha.textproducer.char.length";
|
|
|
- private static final Object KAPTCHA_IMAGE_FONT_SIZE = "kaptcha.textproducer.font.size";
|
|
|
-
|
|
|
- /**
|
|
|
- * 默认生成图形验证码宽度
|
|
|
- */
|
|
|
- String DEFAULT_IMAGE_WIDTH = "100";
|
|
|
-
|
|
|
- /**
|
|
|
- * 默认生成图像验证码高度
|
|
|
- */
|
|
|
- String DEFAULT_IMAGE_HEIGHT = "40";
|
|
|
-
|
|
|
- /**
|
|
|
- * 默认生成图形验证码长度
|
|
|
- */
|
|
|
- String DEFAULT_IMAGE_LENGTH = "4";
|
|
|
-
|
|
|
- /**
|
|
|
- * 默认生成图形验证码过期时间
|
|
|
- */
|
|
|
- int DEFAULT_IMAGE_EXPIRE = 60;
|
|
|
- /**
|
|
|
- * 边框颜色,合法值: r,g,b (and optional alpha) 或者 white,black,blue.
|
|
|
- */
|
|
|
- String DEFAULT_COLOR_FONT = "black";
|
|
|
-
|
|
|
- /**
|
|
|
- * 图片边框
|
|
|
- */
|
|
|
- String DEFAULT_IMAGE_BORDER = "no";
|
|
|
- /**
|
|
|
- * 默认图片间隔
|
|
|
- */
|
|
|
- String DEFAULT_CHAR_SPACE = "5";
|
|
|
-
|
|
|
- /**
|
|
|
- * 默认保存code的前缀
|
|
|
- */
|
|
|
- String DEFAULT_CODE_KEY = "DEFAULT_CODE_KEY";
|
|
|
- /**
|
|
|
- * 验证码文字大小
|
|
|
- */
|
|
|
- String DEFAULT_IMAGE_FONT_SIZE = "30";
|
|
|
-
|
|
|
- @Bean
|
|
|
- public DefaultKaptcha producer() {
|
|
|
- Properties properties = new Properties();
|
|
|
- properties.put(KAPTCHA_BORDER, DEFAULT_IMAGE_BORDER);
|
|
|
- properties.put(KAPTCHA_TEXTPRODUCER_FONT_COLOR, DEFAULT_COLOR_FONT);
|
|
|
- properties.put(KAPTCHA_TEXTPRODUCER_CHAR_SPACE, DEFAULT_CHAR_SPACE);
|
|
|
- properties.put(KAPTCHA_IMAGE_WIDTH, DEFAULT_IMAGE_WIDTH);
|
|
|
- properties.put(KAPTCHA_IMAGE_HEIGHT, DEFAULT_IMAGE_HEIGHT);
|
|
|
- properties.put(KAPTCHA_IMAGE_FONT_SIZE, DEFAULT_IMAGE_FONT_SIZE);
|
|
|
- properties.put(KAPTCHA_TEXTPRODUCER_CHAR_LENGTH, DEFAULT_IMAGE_LENGTH);
|
|
|
- Config config = new Config(properties);
|
|
|
- DefaultKaptcha defaultKaptcha = new DefaultKaptcha();
|
|
|
- defaultKaptcha.setConfig(config);
|
|
|
- return defaultKaptcha;
|
|
|
- }
|
|
|
-}
|