Springboot项目-blog(二)

登录逻辑

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/**
* 用户每次登录的时候都会生成一个唯一的表示token,用它来作为key,用户信息作为value,然后将token存到Cookie里面返给浏览器。用户下次
* 访问用户中心的时候,从Cookie里面取token,再用token从redis中取用户信息,来判断是否允许访问用户中心。
*
* @param map 前端传入的参数 将它封装成map
* @return
*/
@RequestMapping(value = "/login", method = RequestMethod.POST)
public Integer login(HttpServletResponse response, HttpServletRequest request, @RequestParam Map<String, String> map) throws IOException {
// 从cookie取key为onlyNum值,如不存在,则读取输入账号密码,如果存在,取出改值将它设为redis的key,从而取出redis中存储的账号信息
String getOnlyNum = CookieUtils.getCookieValue("onlyNum");
if (!StringUtils.isBlank(getOnlyNum)) {
String accountMsgForJson = RedisUtil.get(getOnlyNum);
if (!StringUtils.isBlank(accountMsgForJson)) {
// 将redis中取出的账号信息(当前为JSON)转换为Account对象
Account accountMsg = JSON.parseObject(accountMsgForJson, Account.class);
Account account = loginService.login(accountMsg.getRoleAdmin(), accountMsg.getRolePsw());
// 前端ajax接收信息为1时,跳转页面至index.html,信息为0时,页面刷新不跳转
if (account != null) {
log.info("redis存储的账号或密码正确-----登陆成功");
return 1;
} else {
log.error("redis存储的账号或密码错误-----登陆失败");
return 0;
}
// cookie中key为onlyNum对应的value,该value对应redis中的key,无法取出对应的redis值时
} else {
log.error("redis并无key为:" + getOnlyNum);
CookieUtils.removeCookie("onlyNum");
log.info("cookie删除key为" + getOnlyNum + "成功");
return 0;
}
// 如果cookie中没有key为onlyNum(说明从未登录,或者登陆过后已登出)
} else {
String uuid = CookieUtils.getCookieValue("UUID");
if (!StringUtils.isBlank(uuid)) {
// 从cookie中取出key为UUID的值,将该值当做redis的key,能够取出真实的验证码
String yzm = RedisUtil.get(uuid);
if (!StringUtils.isBlank(yzm)) {
// 获取前端页面传入进来的yzm
String getYZM = map.get("yzm");
// 如果前端传入的验证码值和redis中取出的验证码匹配
if (getYZM.equals(yzm)) {
String username = map.get("username");
String password = map.get("password");
// 将密码MD5加密之后
String passwordMd5 = MD5Util.md5Encrpt(password);
Account account = loginService.login(username, passwordMd5);
if (account != null) {
// 登录成功从redis中删除key,再次登录需要重新获取验证码
RedisUtil.remove(uuid);
String onlyNum = UUID.randomUUID().toString().replaceAll("-", "");
// 设置cookie,key为onlyNum,值为一个随机生成数
CookieUtils.setCookie("onlyNum", onlyNum);
// 设置redis,将key为cookie的key,一个随机生成数,值为账号对象,有效期为1天
RedisUtil.set(onlyNum, JSON.toJSONString(account), 86400L);
return 1;
} else {
log.error("输入的账号或者密码错误");
return 0;
}
} else {
log.error("验证码输入错误");
return 0;
}
} else {
log.error("redis中存储验证码的key为空,请刷新验证码");
return 0;
}
} else {
log.error("cookie中UUID为空,请刷新验证码");
return 0;
}
}
}

获取验证码

工具类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.example.blog.utils;

import java.awt.*;
import java.awt.image.BufferedImage;
import java.util.Random;

/**
* Created by HuangLiTe on 2018/8/22.
*/
public class VerifyUtil {
// 验证码字符集
private static final char[] chars = {
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N',
'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};
// 字符数量
private static final int SIZE = 4;
// 干扰线数量
private static final int LINES = 5;
// 宽度
private static final int WIDTH = 123;
// 高度
private static final int HEIGHT = 54;
// 字体大小
private static final int FONT_SIZE = 44;

/**
* 生成随机验证码及图片
* Object[0]:验证码字符串;
* Object[1]:验证码图片。
*/
public static Object[] createImage() {
StringBuffer sb = new StringBuffer();
// 1.创建空白图片
BufferedImage image = new BufferedImage(
WIDTH, HEIGHT, BufferedImage.TYPE_INT_RGB);
// 2.获取图片画笔
Graphics graphic = image.getGraphics();
// 3.设置画笔颜色
graphic.setColor(Color.LIGHT_GRAY);
// 4.绘制矩形背景
graphic.fillRect(0, 0, WIDTH, HEIGHT);
// 5.画随机字符
Random ran = new Random();
for (int i = 0; i < SIZE; i++) {
// 取随机字符索引
int n = ran.nextInt(chars.length);
// 设置随机颜色
graphic.setColor(getRandomColor());
// 设置字体大小
graphic.setFont(new Font(
null, Font.BOLD + Font.ITALIC, FONT_SIZE));
// 画字符
graphic.drawString(
chars[n] + "", i * WIDTH / SIZE, HEIGHT * 2 / 3);
// 记录字符
sb.append(chars[n]);
}
// 6.画干扰线
for (int i = 0; i < LINES; i++) {
// 设置随机颜色
graphic.setColor(getRandomColor());
// 随机画线
graphic.drawLine(ran.nextInt(WIDTH), ran.nextInt(HEIGHT),
ran.nextInt(WIDTH), ran.nextInt(HEIGHT));
}
// 7.返回验证码和图片
return new Object[]{sb.toString(), image};
}

/**
* 随机取色
*/
public static Color getRandomColor() {
Random ran = new Random();
Color color = new Color(ran.nextInt(256),
ran.nextInt(256), ran.nextInt(256));
return color;
}

}

获取验证码逻辑

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* 获取验证码
*
* @param response
*/
@RequestMapping("/code")
public void code(HttpServletResponse response, HttpServletRequest request) {
Object[] objects = VerifyUtil.createImage();
BufferedImage image = (BufferedImage) objects[1];
// 设置浏览器不缓存本页
response.addHeader("Pragma", "no-cache");
response.addHeader("Cache-Control", "no-cache");
response.addHeader("Expires", "0");
response.setContentType("image/jpeg");
log.info("验证码为"+objects[0]);
// 获取验证码
String yzm = (String) objects[0];
// 获取唯一数
String uuid = UUID.randomUUID().toString().replaceAll("-", "");
log.info("验证码uuid为"+uuid);
// 将唯一数作为值,key为UUID存入cookie
CookieUtils.setCookie("UUID", uuid);
// 将唯一数作为key,生成的验证码的值作为value,存入redis,有效期为3分钟
RedisUtil.set(uuid, yzm, 180L);
try {
ImageIO.write(image, "JPEG", response.getOutputStream());
} catch (IOException e) {
e.printStackTrace();
}
}

blog摘要生成逻辑

1
2
3
4
5
6
7
8
9
10
  public static String buildArticleTabloid(String htmlArticleComment) {

String regex = "\\s+";
String str = htmlArticleComment.trim();
//去掉所有空格
String articleTabloid = str.replaceAll(regex, "");
//将文章从头到尾遍历一遍,把<!--more-->之前的内容取出设置为文章摘要,采用了StringUtils工具类
String beforeMeg = StringUtils.substringBefore(articleTabloid, "&lt;!--more--&gt;");
return beforeMeg;
}
赏个🍗吧
0%