微信登录debug

This commit is contained in:
墨大叔 2024-09-23 19:41:01 +08:00
parent 4bb1962255
commit 04a6ab76a2
3 changed files with 37 additions and 23 deletions

View File

@ -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;
}
}

View File

@ -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";
}

View File

@ -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();
}