From 04a6ab76a2d3a9a74f4306209b9ec11af75c7f13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A2=A8=E5=A4=A7=E5=8F=94?= <494979559@qq.com> Date: Mon, 23 Sep 2024 19:41:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E4=BF=A1=E7=99=BB=E5=BD=95debug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ruoyi/common/auth/wx/AccessTokenUtil.java | 34 ++++++++----------- .../ruoyi/common/constant/CacheConstants.java | 5 +++ .../web/service/SysLoginService.java | 21 ++++++++++-- 3 files changed, 37 insertions(+), 23 deletions(-) diff --git a/smart-switch-ruoyi/smart-switch-common/src/main/java/com/ruoyi/common/auth/wx/AccessTokenUtil.java b/smart-switch-ruoyi/smart-switch-common/src/main/java/com/ruoyi/common/auth/wx/AccessTokenUtil.java index 8f59bf24..248d2eaf 100644 --- a/smart-switch-ruoyi/smart-switch-common/src/main/java/com/ruoyi/common/auth/wx/AccessTokenUtil.java +++ b/smart-switch-ruoyi/smart-switch-common/src/main/java/com/ruoyi/common/auth/wx/AccessTokenUtil.java @@ -3,6 +3,9 @@ package com.ruoyi.common.auth.wx; import cn.binarywang.wx.miniapp.api.WxMaService; import cn.binarywang.wx.miniapp.api.impl.WxMaServiceImpl; import cn.binarywang.wx.miniapp.config.impl.WxMaDefaultConfigImpl; +import com.ruoyi.common.constant.CacheConstants; +import com.ruoyi.common.core.redis.RedisCache; +import com.ruoyi.common.utils.StringUtils; import com.ruoyi.common.utils.spring.SpringUtils; import lombok.SneakyThrows; @@ -10,33 +13,24 @@ import java.util.concurrent.TimeUnit; public class AccessTokenUtil { - /** 缓存token */ - private static String cachedToken; - - /** token过期时间 */ - private static long tokenExpirationTime; + public static final String APPID = SpringUtils.getRequiredProperty("wx.appid"); + public static final String APP_SECRET = SpringUtils.getRequiredProperty("wx.appSecret"); @SneakyThrows public static String getToken() { - if (isTokenExpired()) { - String APPID = SpringUtils.getRequiredProperty("wx.appid"); - String APPSECRET = SpringUtils.getRequiredProperty("wx.appSecret"); + RedisCache redisCache = SpringUtils.getBean(RedisCache.class); + String token = redisCache.getCacheObject(CacheConstants.WX_ACCESS_TOKEN); + + if (StringUtils.isBlank(token)) { WxMaService wxMaService = new WxMaServiceImpl(); WxMaDefaultConfigImpl config = new WxMaDefaultConfigImpl(); config.setAppid(APPID); - config.setSecret(APPSECRET); + config.setSecret(APP_SECRET); wxMaService.setWxMaConfig(config); - String accessToken = wxMaService.getAccessToken(); - cachedToken = accessToken; - // 更新 token 过期时间 - tokenExpirationTime = System.currentTimeMillis() + TimeUnit.SECONDS.toMillis(7200L); - return cachedToken; - } - return cachedToken; - } + token = wxMaService.getAccessToken(); - /**判断token是否过期*/ - private static boolean isTokenExpired() { - return cachedToken == null || System.currentTimeMillis() > tokenExpirationTime; + redisCache.setCacheObject(CacheConstants.WX_ACCESS_TOKEN, token, 5400, TimeUnit.SECONDS); + } + return token; } } diff --git a/smart-switch-ruoyi/smart-switch-common/src/main/java/com/ruoyi/common/constant/CacheConstants.java b/smart-switch-ruoyi/smart-switch-common/src/main/java/com/ruoyi/common/constant/CacheConstants.java index e55c1a9d..0d024813 100644 --- a/smart-switch-ruoyi/smart-switch-common/src/main/java/com/ruoyi/common/constant/CacheConstants.java +++ b/smart-switch-ruoyi/smart-switch-common/src/main/java/com/ruoyi/common/constant/CacheConstants.java @@ -55,4 +55,9 @@ public class CacheConstants * 舆情分析 */ public static final String BRIEF = DASHBOARD_PREFIX + "brief"; + + /** + * 微信access_token + */ + public static final String WX_ACCESS_TOKEN = "wx_access_token"; } diff --git a/smart-switch-ruoyi/smart-switch-framework/src/main/java/com/ruoyi/framework/web/service/SysLoginService.java b/smart-switch-ruoyi/smart-switch-framework/src/main/java/com/ruoyi/framework/web/service/SysLoginService.java index d6f86c70..3f2fa8f3 100644 --- a/smart-switch-ruoyi/smart-switch-framework/src/main/java/com/ruoyi/framework/web/service/SysLoginService.java +++ b/smart-switch-ruoyi/smart-switch-framework/src/main/java/com/ruoyi/framework/web/service/SysLoginService.java @@ -18,6 +18,7 @@ import com.ruoyi.ss.user.service.ISmUserService; import com.ruoyi.ss.account.service.AccountService; import com.ruoyi.ss.account.domain.enums.AccountType; import com.ruoyi.system.service.*; +import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.ObjectUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.authentication.AuthenticationManager; @@ -54,6 +55,7 @@ import java.util.Objects; * @author ruoyi */ @Component +@Slf4j public class SysLoginService { @Autowired @@ -267,6 +269,7 @@ public class SysLoginService // 通过授权码获取微信手机号 String phoneNumber = getWxPhoneNumber(body.getMobileCode()); + ServiceUtil.assertion(StringUtils.isBlank(phoneNumber), "获取授权手机号失败"); // 判断用户是否注册,未注册的自动注册 user = smUserService.selectUserByPhone(phoneNumber); @@ -341,11 +344,23 @@ public class SysLoginService JSONObject jsonObject = new JSONObject(); jsonObject.put("code", mobileCode); String post = HttpUtils.sendPost(url, jsonObject.toString()); - + log.info("获取手机号body:{}", post); // 获取微信用户手机号 - JSONObject jsonObject1 = JSONObject.parseObject(post); - String phoneInfo = jsonObject1.getString("phone_info"); + JSONObject body = JSONObject.parseObject(post); + if (body == null) { + return null; + } + + Integer errcode = body.getInteger("errcode"); + if (errcode == null || !errcode.equals(0)) { + throw new ServiceException("获取手机号失败:" + body.getString("errmsg")); + } + + String phoneInfo = body.getString("phone_info"); WxMaPhoneNumberInfo wxMaPhoneNumberInfo = JSONObject.parseObject(phoneInfo, WxMaPhoneNumberInfo.class); + if (wxMaPhoneNumberInfo == null) { + return null; + } return wxMaPhoneNumberInfo.getPhoneNumber(); }