feat: SaLoginParameter 新增 maxTryTimes 配置

This commit is contained in:
click33 2025-03-02 04:50:53 +08:00
parent 0b85c7d094
commit 59659d1c12
3 changed files with 28 additions and 3 deletions

View File

@ -84,12 +84,17 @@ public class SaLoginParameter {
/**
* 在多人登录同一账号时是否共用一个 token true 时所有登录共用一个 token, false 时每次登录新建一个 token
*/
private Boolean isShare = true;
private Boolean isShare;
/**
* 同一账号最大登录数量-1代表不限 只有在 isConcurrent=true, isShare=false 时此配置项才有意义
*/
private int maxLoginCount = 12;
private int maxLoginCount;
/**
* 在每次创建 token 时的最高循环次数用于保证 token 唯一性-1=不循环尝试直接使用
*/
private int maxTryTimes;
/**
* 是否为持久Cookie临时Cookie在浏览器关闭时会自动删除持久Cookie在重新打开后依然存在
@ -122,6 +127,8 @@ public class SaLoginParameter {
this.timeout = config.getTimeout();
this.isConcurrent = config.getIsConcurrent();
this.isShare = config.getIsShare();
this.maxLoginCount = config.getMaxLoginCount();
this.maxTryTimes = config.getMaxTryTimes();
this.isLastingCookie = config.getIsLastingCookie();
this.isWriteHeader = config.getIsWriteHeader();
return this;
@ -314,6 +321,22 @@ public class SaLoginParameter {
return this;
}
/**
* @return 在每次创建 token 时的最高循环次数用于保证 token 唯一性-1=不循环尝试直接使用
*/
public int getMaxTryTimes() {
return maxTryTimes;
}
/**
* @param maxTryTimes 在每次创建 token 时的最高循环次数用于保证 token 唯一性-1=不循环尝试直接使用
* @return 对象自身
*/
public SaLoginParameter setMaxTryTimes(int maxTryTimes) {
this.maxTryTimes = maxTryTimes;
return this;
}
/**
* @return 扩展信息只在jwt模式下生效
*/
@ -395,6 +418,7 @@ public class SaLoginParameter {
+ ", isConcurrent=" + isConcurrent
+ ", isShare=" + isShare
+ ", maxLoginCount=" + maxLoginCount
+ ", maxTryTimes=" + maxTryTimes
+ ", extraData=" + extraData
+ ", token=" + token
+ ", isWriteHeader=" + isWriteHeader

View File

@ -547,7 +547,7 @@ public class StpLogic {
// 4如果代码走到此处说明未能成功复用旧 token需要根据算法新建 token
return SaStrategy.instance.generateUniqueToken.execute(
"token",
getConfigOfMaxTryTimes(),
loginParameter.getMaxTryTimes(),
() -> {
return createTokenValue(id, loginParameter.getDevice(), loginParameter.getTimeout(), loginParameter.getExtraData());
},

View File

@ -30,6 +30,7 @@ public class TestController {
.setIsConcurrent(true)
.setIsShare(false)
.setMaxLoginCount(4)
.setMaxTryTimes(12)
);
return SaResult.ok("登录成功");
}