From e58eb6081a6a0d8c24b5dd9cf917c57d365af9f8 Mon Sep 17 00:00:00 2001 From: yuanjunbin Date: Thu, 5 Oct 2023 17:36:56 +0800 Subject: [PATCH] update --- .../org/moxianchengbao/utils/JWTUtils.java | 200 +++++++++--------- 1 file changed, 100 insertions(+), 100 deletions(-) rename {stock-predict-backend => stock-forcast-backend}/src/main/java/org/moxianchengbao/utils/JWTUtils.java (96%) diff --git a/stock-predict-backend/src/main/java/org/moxianchengbao/utils/JWTUtils.java b/stock-forcast-backend/src/main/java/org/moxianchengbao/utils/JWTUtils.java similarity index 96% rename from stock-predict-backend/src/main/java/org/moxianchengbao/utils/JWTUtils.java rename to stock-forcast-backend/src/main/java/org/moxianchengbao/utils/JWTUtils.java index 431818d..8b185df 100644 --- a/stock-predict-backend/src/main/java/org/moxianchengbao/utils/JWTUtils.java +++ b/stock-forcast-backend/src/main/java/org/moxianchengbao/utils/JWTUtils.java @@ -1,100 +1,100 @@ -package org.moxianchengbao.utils; - -import com.auth0.jwt.JWT; -import com.auth0.jwt.JWTCreator; -import com.auth0.jwt.algorithms.Algorithm; -import com.auth0.jwt.interfaces.Claim; -import com.auth0.jwt.interfaces.DecodedJWT; - -import java.util.*; - -/** - * JWT工具类 - * @Author moxianchengbao - */ - - -public class JWTUtils { - - //自定义签名密钥 - private static final String SIG = "HIUDe9%^#&dsf4%#4tr115&*&*wer6grfvewfw"; - - /** - * 生成token - * @param map 自定义数据 - * @return String - */ - - public static String getToken(Map map){ - Algorithm alg = Algorithm.HMAC256(SIG); //自定义签名密钥 - Calendar ins = Calendar.getInstance(); - ins.add(Calendar.DATE,1); //默认过期时间为1天 -// ins.add(Calendar.SECOND,30); - //jwt builder - JWTCreator.Builder builder = JWT.create(); - builder.withIssuedAt(new Date()); - //payload - map.forEach((k,v)->{ - builder.withClaim(k,v); - }); - //signature - String token = builder.withExpiresAt(ins.getTime()).sign(alg); - - return token; - } - - /** - * 获取token信息 - * @param token - * @return DecodedJWT - */ - public static DecodedJWT getTokenInfo(String token){ - DecodedJWT verify = JWT.require(Algorithm.HMAC256(SIG)).build().verify(token); - return verify; - } - - /** - * @Author DragonOne - * @Date 2022/3/7 11:16 - * @墨水记忆 www.tothefor.com - * @属性 检验token合法性 - * @作用 80 - */ - public static boolean checkToken(String token){ - boolean flag = false; - try{ - getTokenInfo(token); - flag=true; - }catch (Exception e){ - flag=false; - }finally { - return flag; - } - } - /** - * @Author DragonOne - * @Date 2022/3/13 12:16 - * @墨水记忆 www.tothefor.com - * @属性 通过token获取用户名 - * @作用 80 - */ - public static String getNameByToken(String token){ - DecodedJWT tokenInfo = getTokenInfo(token); - String username = tokenInfo.getClaim("username").asString(); - return username; - } - - /** - * @Author DragonOne - * @Date 2022/3/13 12:16 - * @墨水记忆 www.tothefor.com - * @属性 通过token获取用户id - * @作用 80 - */ - public static String getIdByToken(String token){ - DecodedJWT tokenInfo = getTokenInfo(token); - String userid = tokenInfo.getClaim("userid").asString(); - return userid; - } - -} +package org.moxianchengbao.utils; + +import com.auth0.jwt.JWT; +import com.auth0.jwt.JWTCreator; +import com.auth0.jwt.algorithms.Algorithm; +import com.auth0.jwt.interfaces.Claim; +import com.auth0.jwt.interfaces.DecodedJWT; + +import java.util.*; + +/** + * JWT工具类 + * @Author moxianchengbao + */ + + +public class JWTUtils { + + //自定义签名密钥 + private static final String SIG = "HIUDe9%^#&dsf4%#4tr115&*&*wer6grfvewfw"; + + /** + * 生成token + * @param map 自定义数据 + * @return String + */ + + public static String getToken(Map map){ + Algorithm alg = Algorithm.HMAC256(SIG); //自定义签名密钥 + Calendar ins = Calendar.getInstance(); + ins.add(Calendar.DATE,1); //默认过期时间为1天 +// ins.add(Calendar.SECOND,30); + //jwt builder + JWTCreator.Builder builder = JWT.create(); + builder.withIssuedAt(new Date()); + //payload + map.forEach((k,v)->{ + builder.withClaim(k,v); + }); + //signature + String token = builder.withExpiresAt(ins.getTime()).sign(alg); + + return token; + } + + /** + * 获取token信息 + * @param token + * @return DecodedJWT + */ + public static DecodedJWT getTokenInfo(String token){ + DecodedJWT verify = JWT.require(Algorithm.HMAC256(SIG)).build().verify(token); + return verify; + } + + /** + * @Author DragonOne + * @Date 2022/3/7 11:16 + * @墨水记忆 www.tothefor.com + * @属性 检验token合法性 + * @作用 80 + */ + public static boolean checkToken(String token){ + boolean flag = false; + try{ + getTokenInfo(token); + flag=true; + }catch (Exception e){ + flag=false; + }finally { + return flag; + } + } + /** + * @Author DragonOne + * @Date 2022/3/13 12:16 + * @墨水记忆 www.tothefor.com + * @属性 通过token获取用户名 + * @作用 80 + */ + public static String getNameByToken(String token){ + DecodedJWT tokenInfo = getTokenInfo(token); + String username = tokenInfo.getClaim("username").asString(); + return username; + } + + /** + * @Author DragonOne + * @Date 2022/3/13 12:16 + * @墨水记忆 www.tothefor.com + * @属性 通过token获取用户id + * @作用 80 + */ + public static String getIdByToken(String token){ + DecodedJWT tokenInfo = getTokenInfo(token); + String userid = tokenInfo.getClaim("userid").asString(); + return userid; + } + +}