fix(core): 修复部分场景下登录后已存在的 token-session 没有被续期的问题,fixes #IA8U1O

This commit is contained in:
click33 2024-12-10 18:19:12 +08:00
parent 1c3b02fc13
commit c62fdc9276
2 changed files with 18 additions and 7 deletions

View File

@ -486,15 +486,21 @@ public class StpLogic {
setLastActiveToNow(tokenValue, loginModel.getActiveTimeout(), loginModel.getTimeoutOrGlobalConfig());
}
// 8$$ 发布全局事件账号 xxx 登录成功
// 8如果该 token 对应的 Token-Session 已经存在则需要给其续期
SaSession tokenSession = getTokenSessionByToken(tokenValue, false);
if(tokenSession != null) {
tokenSession.updateMinTimeout(loginModel.getTimeout());
}
// 9$$ 发布全局事件账号 xxx 登录成功
SaTokenEventCenter.doLogin(loginType, id, tokenValue, loginModel);
// 9检查此账号会话数量是否超出最大值如果超过则按照登录时间顺序把最开始登录的给注销掉
// 10检查此账号会话数量是否超出最大值如果超过则按照登录时间顺序把最开始登录的给注销掉
if(config.getMaxLoginCount() != -1) {
logoutByMaxLoginCount(id, session, null, config.getMaxLoginCount());
}
// 10一切处理完毕返回会话凭证 token
// 11一切处理完毕返回会话凭证 token
return tokenValue;
}

View File

@ -1,5 +1,6 @@
package com.pj.test;
import cn.dev33.satoken.stp.StpUtil;
import cn.dev33.satoken.util.SaResult;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@ -12,11 +13,15 @@ import org.springframework.web.bind.annotation.RestController;
@RestController
public class Test2Controller {
// 测试登录 ---- http://localhost:8081/.test
@RequestMapping("/.test")
// 测试登录 ---- http://localhost:8081/test
@RequestMapping("/test")
public SaResult test2() {
System.out.println("--- 进来了");
return SaResult.ok("登录成功");
StpUtil.login(30003);
System.out.println(StpUtil.getSession().getTimeout());
System.out.println(StpUtil.getStpLogic().getTokenSession(false));
return SaResult.ok();
}
}