h5应用增加验证码功能
uni-app
<view class="cu-form-group" style="border-top: 1upx solid #eee;">
<view class="title">验证码</view>
<input type="text" placeholder='请输入验证码' v-model="yzm_search"></input>
<view @tap="getValidataCode()">
<image style="height: 60upx;width: 180upx;" :src="validateUrl"></image>
</view>
</view>
点击图片时请求验证码
funtion getValidataCode(){
this.randomKey = (Math.random() * 1000.0);
this.validateUrl = 'https://********/getValidateCode?unionCode='+this.randomKey;
}
``
初始化请求验证码
function beforeMount: function(option) {
this.randomKey = (Math.random() * 1000.0);
this.validateUrl = 'https://********/getValidateCode?unionCode='+this.randomKey;
}
public static Map<String,String> globalMap = new HashMap();
@RequestMapping("/getValidateCode")
@ResponseBody
public void getCode(HttpServletRequest req, HttpServletResponse response, HttpSession session) {
try {
String unionCode = req.getParameter("unionCode");
response.setContentType("image/jpeg");
response.setHeader("Pragma", "no-cache");
response.setHeader("Cache-Control", "no-cache");
response.setCharacterEncoding("utf-8");
response.setDateHeader("Expires", 0);
ValidateCode vCode = new ValidateCode(100,30,4,10);
session.setAttribute("code", vCode.getCode());
vCode.write(response.getOutputStream());
Set<String> keys = globalMap.keySet();
System.out.println(keys);
for(String key : keys){
globalMap.remove(key);
}
globalMap.put(unionCode,vCode.getCode());
System.out.println(unionCode);
System.out.println(globalMap.get(unionCode));
}catch (Exception e){
e.printStackTrace();
}
}
@RequestMapping("/checkValidationCode")
@ResponseBody
public int checkValidationCode(@RequestParam(required = false)String codeval,String code) {
if(StringUtils.isNotEmptyObject(globalMap.get(code))){
String myCode = globalMap.get(code).toString();
if(myCode.equalsIgnoreCase(codeval)){
return 1;
}
}
return 0;
}
package com.elink.util;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.imageio.ImageIO;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Random;
public class ValidateCode {
private int width = 160;
private int height = 40;
private int codeCount = 4;
private int lineCount = 20;
private String code = null;
private BufferedImage buffImg = null;
Random random = new Random();
public ValidateCode() {
creatImage();
}
public ValidateCode(int width, int height) {
this.width = width;
this.height = height;
creatImage();
}
public ValidateCode(int width, int height, int codeCount) {
this.width = width;
this.height = height;
this.codeCount = codeCount;
creatImage();
}
public ValidateCode(int width, int height, int codeCount, int lineCount) {
this.width = width;
this.height = height;
this.codeCount = codeCount;
this.lineCount = lineCount;
creatImage();
}
private void creatImage() {
int fontWidth = width / codeCount;
int fontHeight = height - 5;
int codeY = height - 8;
buffImg = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
Graphics g = buffImg.getGraphics();
g.setColor(getRandColor(200, 250));
g.fillRect(0, 0, width, height);
Font font = new Font("Fixedsys", Font.BOLD, fontHeight);
g.setFont(font);
for (int i = 0; i < lineCount; i++) {
int xs = random.nextInt(width);
int ys = random.nextInt(height);
int xe = xs + random.nextInt(width);
int ye = ys + random.nextInt(height);
g.setColor(getRandColor(1, 255));
g.drawLine(xs, ys, xe, ye);
}
float yawpRate = 0.01f;
int area = (int) (yawpRate * width * height);
for (int i = 0; i < area; i++) {
int x = random.nextInt(width);
int y = random.nextInt(height);
buffImg.setRGB(x, y, random.nextInt(255));
}
String str1 = randomStr(codeCount);
this.code = str1;
for (int i = 0; i < codeCount; i++) {
String strRand = str1.substring(i, i + 1);
g.setColor(getRandColor(1, 255));
g.drawString(strRand, i*fontWidth+3, codeY);
}
}
private String randomStr(int n) {
String str1 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890";
String str2 = "";
int len = str1.length() - 1;
double r;
for (int i = 0; i < n; i++) {
r = (Math.random()) * len;
str2 = str2 + str1.charAt((int) r);
}
return str2;
}
private Color getRandColor(int fc, int bc) {
if (fc > 255)
fc = 255;
if (bc > 255)
bc = 255;
int r = fc + random.nextInt(bc - fc);
int g = fc + random.nextInt(bc - fc);
int b = fc + random.nextInt(bc - fc);
return new Color(r, g, b);
}
private Font getFont(int size) {
Random random = new Random();
Font font[] = new Font[5];
font[0] = new Font("Ravie", Font.PLAIN, size);
font[1] = new Font("Antique Olive Compact", Font.PLAIN, size);
font[2] = new Font("Fixedsys", Font.PLAIN, size);
font[3] = new Font("Wide Latin", Font.PLAIN, size);
font[4] = new Font("Gill Sans Ultra Bold", Font.PLAIN, size);
return font[random.nextInt(5)];
}
private void shear(Graphics g, int w1, int h1, Color color) {
shearX(g, w1, h1, color);
shearY(g, w1, h1, color);
}
private void shearX(Graphics g, int w1, int h1, Color color) {
int period = random.nextInt(2);
boolean borderGap = true;
int frames = 1;
int phase = random.nextInt(2);
for (int i = 0; i < h1; i++) {
double d = (double) (period >> 1)
* Math.sin((double) i / (double) period
+ (6.2831853071795862D * (double) phase)
/ (double) frames);
g.copyArea(0, i, w1, 1, (int) d, 0);
if (borderGap) {
g.setColor(color);
g.drawLine((int) d, i, 0, i);
g.drawLine((int) d + w1, i, w1, i);
}
}
}
private void shearY(Graphics g, int w1, int h1, Color color) {
int period = random.nextInt(40) + 10;
boolean borderGap = true;
int frames = 20;
int phase = 7;
for (int i = 0; i < w1; i++) {
double d = (double) (period >> 1)
* Math.sin((double) i / (double) period
+ (6.2831853071795862D * (double) phase)
/ (double) frames);
g.copyArea(i, 0, 1, h1, 0, (int) d);
if (borderGap) {
g.setColor(color);
g.drawLine(i, (int) d, i, 0);
g.drawLine(i, (int) d + h1, i, h1);
}
}
}
public void write(OutputStream sos) throws IOException {
ImageIO.write(buffImg, "png", sos);
sos.close();
}
public BufferedImage getBuffImg() {
return buffImg;
}
public String getCode() {
return code.toLowerCase();
}
@RequestMapping("/getValidateCode")
public void getCode(HttpServletRequest req, HttpServletResponse response, HttpSession session) {
try {
response.setContentType("image/jpeg");
response.setHeader("Pragma", "no-cache");
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 0);
ValidateCode vCode = new ValidateCode(100,30,4,10);
session.setAttribute("code", vCode.getCode());
vCode.write(response.getOutputStream());
}catch (Exception e){
e.printStackTrace();
}
}
@RequestMapping("/checkValidationCode")
@ResponseBody
public String checkValidationCode(@RequestParam(required = false)String codeval, HttpSession session) {
if(StringUtils.isNotEmptyObject(session.getAttribute("code"))){
String myCode = session.getAttribute("code").toString();
if(myCode.equalsIgnoreCase(codeval)){
return "1";
}
}
return "0";
}
}