|
|
|
@ -1,11 +1,8 @@ |
|
|
|
|
package com.daqing.financial.hrauth.util; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.auth0.jwt.JWT; |
|
|
|
|
import com.auth0.jwt.algorithms.Algorithm; |
|
|
|
|
import com.daqing.financial.hrauth.SpringContextHolder; |
|
|
|
|
import com.daqing.framework.util.Md5Util; |
|
|
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
|
import java.util.Set; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -16,7 +13,7 @@ import java.util.Set; |
|
|
|
|
*/ |
|
|
|
|
public class JwtUtil { |
|
|
|
|
|
|
|
|
|
private final static Algorithm algorithm = SpringContextHolder.getBean("algorithm", Algorithm.class); |
|
|
|
|
//private final static Algorithm algorithm = SpringContextHolder.getBean("algorithm", Algorithm.class);
|
|
|
|
|
|
|
|
|
|
//private final static OdcProperties properties = SpringContextHolder.getBean("odcProperties", OdcProperties.class);
|
|
|
|
|
|
|
|
|
@ -27,16 +24,19 @@ public class JwtUtil { |
|
|
|
|
* @param timeout; 单位是秒 |
|
|
|
|
*/ |
|
|
|
|
public static String createJwtToken(Long userId, long timeout) { |
|
|
|
|
return JWT.create() |
|
|
|
|
String token = Md5Util.md5(userId+timeout+"dq"); |
|
|
|
|
RedisUtil.setEx("dq:token:"+userId, token, timeout); |
|
|
|
|
return token; |
|
|
|
|
/*return JWT.create() |
|
|
|
|
.withClaim("member", userId) |
|
|
|
|
.withExpiresAt(new Date(System.currentTimeMillis() + timeout * 1000)) |
|
|
|
|
.sign(algorithm); |
|
|
|
|
.sign(algorithm);*/ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* token正确且有效,则返回userId |
|
|
|
|
*/ |
|
|
|
|
public static Long verifyToken(String token) { |
|
|
|
|
/* public static Long verifyToken(String token) { |
|
|
|
|
try { |
|
|
|
|
String noBearerToken = token.replaceFirst("Bearer ", ""); |
|
|
|
|
Long userId = JWT.require(algorithm) |
|
|
|
@ -52,7 +52,7 @@ public class JwtUtil { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
}*/ |
|
|
|
|
|
|
|
|
|
public static String getRedisKey(Long userId, String token) { |
|
|
|
|
return String.format("dq:token:%d:%s", userId, token); |
|
|
|
|