TokenService.java
2.92 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
package com.huaheng.framework.token;
import com.huaheng.framework.redis.RedisCache;
import com.huaheng.pc.system.user.domain.User;
import io.jsonwebtoken.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.util.Calendar;
import java.util.Date;
import java.util.Map;
/**
* token生成与解析
* @author Enzo Cotter
* @date 2020/6/11
*/
@Service
public class TokenService {
@Resource
private RedisCache redisCache;
private static final Logger log = LoggerFactory.getLogger(TokenService.class);
/**
* 有效期7天
*/
private static final int EXPIRE_TIME = 7;
/**
* 盐
*/
public static final String signingKey = "OldSuperMan";
/**
* 创建token
* @param user 用户
* @return
*/
public String createToken(User user, String password){
Claims claims = Jwts.claims();
user.setPassword(password);
claims.put("user", user);
JwtBuilder builder = Jwts.builder().setClaims(claims)
//签发时间
.setIssuedAt(new Date())
//签名算法以及密匙
.signWith(SignatureAlgorithm.HS512,signingKey);
// if (redisCache.setCacheObject(token, user.toString(), EXPIRE_TIME, TimeUnit.DAYS) == null) {
// throw new ServiceException("redis异常");
// }
if (EXPIRE_TIME >= 0) {
LocalDateTime expDate = LocalDateTime.now();
expDate = expDate.plusDays(EXPIRE_TIME);
// 过期时间
builder.setExpiration(Date.from(expDate.atZone(ZoneId.systemDefault()).toInstant()));
}
return builder.compact();
}
/**
* 创建token
* @param user 用户
* @return
*/
public String createTokenForMobile(User user){
//签发时间
Date iatTime = new Date();
//expire time
Calendar nowTime = Calendar.getInstance();
nowTime.add(Calendar.DATE, EXPIRE_TIME);
Claims claims = Jwts.claims();
claims.put("user", user);
claims.setIssuedAt(iatTime);
String token = Jwts.builder().setClaims(claims)
.signWith(SignatureAlgorithm.HS512,signingKey).compact();
//Date expireTime = nowTime.getTime();
// if (redisCache.setCacheObject(token, user.toString(), EXPIRE_TIME, TimeUnit.DAYS) == null) {
// throw new ServiceException("redis异常");
// }
return token;
}
/**
* 解析token
* @param token
*/
public void parseToken(String token){
Jws<Claims> jws = Jwts.parser().setSigningKey(signingKey).parseClaimsJws(token);
Claims claims = jws.getBody();
Map<String,String> header = jws.getHeader();
System.out.println("parse" + header);
log.warn("Token:"+ header);
}
}