|
@@ -5,21 +5,18 @@ import com.scbfkj.uni.process.DataBase;
|
|
|
import com.scbfkj.uni.system.Config;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
-import org.springframework.web.context.request.RequestAttributes;
|
|
|
-import org.springframework.web.context.request.RequestContextHolder;
|
|
|
|
|
|
import java.security.SecureRandom;
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.util.*;
|
|
|
|
|
|
import static com.scbfkj.uni.library.DataAliasGetUtil.getValue;
|
|
|
-import static org.springframework.web.context.request.RequestAttributes.SCOPE_REQUEST;
|
|
|
-import static org.springframework.web.context.request.RequestAttributes.SCOPE_SESSION;
|
|
|
|
|
|
@Service
|
|
|
public class SecurityService {
|
|
|
|
|
|
private static final SecureRandom RANDOM = new SecureRandom();
|
|
|
+ private static final DataBase DATABASE = new DataBase();
|
|
|
@Value("${app.token-effective:604800}")
|
|
|
private long defaultAppTokenEffective;
|
|
|
@Value("${app.code-effective:600}")
|
|
@@ -45,7 +42,7 @@ public class SecurityService {
|
|
|
Optional<String> appSecret = getValue("appsecret", requestData);
|
|
|
if (appSecret.isPresent() && appid.isPresent()) {
|
|
|
String clean = "delete from appconnectlog where expiretime < ? ";
|
|
|
- DataBase.update(Config.getSecurityConnectionStr(), clean, LocalDateTime.now());
|
|
|
+ DATABASE.update(Config.getSecurityConnectionStr(), clean, LocalDateTime.now());
|
|
|
String query = """
|
|
|
select applicationid,
|
|
|
appid,
|
|
@@ -64,7 +61,7 @@ public class SecurityService {
|
|
|
passwordeffective
|
|
|
from application
|
|
|
where appid = ? and appsecret = ?""";
|
|
|
- List<Map<String, Object>> applicationList = DataBase.query(Config.getSecurityConnectionStr(), query, appid.get(), appSecret.get());
|
|
|
+ List<Map<String, Object>> applicationList = DATABASE.query(Config.getSecurityConnectionStr(), query, appid.get(), appSecret.get());
|
|
|
|
|
|
if (applicationList.isEmpty()) {
|
|
|
throw new RuntimeException("appid 或 appsecret 错误");
|
|
@@ -79,11 +76,11 @@ public class SecurityService {
|
|
|
}
|
|
|
LocalDateTime expiresTime = LocalDateTime.now().plusSeconds(apptokeneffective);
|
|
|
String ip = RequestUtil.getIpAddr();
|
|
|
- List<Map<String, Object>> logs = DataBase.query(Config.getSecurityConnectionStr(), "select connid, apptoken, expiretime, lasttime from appconnectlog where requestip=? and appid = ?", ip, appid.get());
|
|
|
+ List<Map<String, Object>> logs = DATABASE.query(Config.getSecurityConnectionStr(), "select connid, apptoken, expiretime, lasttime from appconnectlog where requestip=? and appid = ?", ip, appid.get());
|
|
|
String appToken;
|
|
|
if (!logs.isEmpty()) {
|
|
|
Map<String, Object> applicationlog = logs.get(0);
|
|
|
- DataBase.update(Config.getSecurityConnectionStr(), """
|
|
|
+ DATABASE.update(Config.getSecurityConnectionStr(), """
|
|
|
update appconnectlog
|
|
|
set expiretime = ?,lasttime=?
|
|
|
where connid=?""", expiresTime, LocalDateTime.now(), applicationlog.get("connid"));
|
|
@@ -92,16 +89,24 @@ public class SecurityService {
|
|
|
String sessionId = RequestUtil.getSessionId();
|
|
|
appToken = DataEncryptionUtil.signatureMD5("%s:%s".formatted(LocalDateTime.now(), sessionId));
|
|
|
|
|
|
- DataBase.update(Config.getSecurityConnectionStr(), """
|
|
|
+ DATABASE.update(Config.getSecurityConnectionStr(), """
|
|
|
insert into appconnectlog (appid, requesttime, requestip, apptoken, expiretime, lasttime)
|
|
|
values (?,?,?,?,?,?)""", appid.get(), LocalDateTime.now(), ip, appToken, expiresTime, LocalDateTime.now());
|
|
|
}
|
|
|
// 添加token和过期时间
|
|
|
application.put("token", appToken);
|
|
|
application.put("expirestime", DataFormatUtil.toString(expiresTime));
|
|
|
- RequestContextHolder.currentRequestAttributes().setAttribute("application", application, SCOPE_SESSION);
|
|
|
+
|
|
|
// 清理敏感信息 appsecret
|
|
|
application.put("appsecret", null);
|
|
|
+
|
|
|
+ long currentTimeMillis = System.currentTimeMillis();
|
|
|
+ long l = currentTimeMillis << 4;
|
|
|
+
|
|
|
+ String string = DataEncryptionUtil.signatureMD5(String.valueOf(l));
|
|
|
+ application.put("sessionid", string);
|
|
|
+ Map<String, Object> sessionMap = Config.cache.computeIfAbsent(string, k -> new Hashtable<>());
|
|
|
+ sessionMap.put("application", application);
|
|
|
return UniReturnUtil.success(application);
|
|
|
}
|
|
|
return UniReturnUtil.fail("appid 或 appsecret 不能为空");
|
|
@@ -112,8 +117,8 @@ public class SecurityService {
|
|
|
|
|
|
public Map<String, Object> refreshToken() throws Exception {
|
|
|
|
|
|
- RequestAttributes requestAttributes = RequestContextHolder.currentRequestAttributes();
|
|
|
- Object appid = requestAttributes.getAttribute("appid", SCOPE_REQUEST);
|
|
|
+ Object appid = RequestUtil.getAppId();
|
|
|
+
|
|
|
|
|
|
Map<String, Object> application = RequestUtil.getApplication();
|
|
|
|
|
@@ -128,7 +133,7 @@ public class SecurityService {
|
|
|
Map<String, Object> data = new HashMap<>();
|
|
|
try {
|
|
|
String update = "update appconnectlog set expiretime=? where apptoken =? and requestip =? and appid=?";
|
|
|
- int updateRow = DataBase.update(Config.getSecurityConnectionStr(), update, expiresTime, appToken, RequestUtil.getIpAddr(), appid);
|
|
|
+ int updateRow = DATABASE.update(Config.getSecurityConnectionStr(), update, expiresTime, appToken, RequestUtil.getIpAddr(), appid);
|
|
|
|
|
|
if (updateRow > 0) {
|
|
|
data.put("expirestime", DataFormatUtil.toString(expiresTime));
|
|
@@ -244,7 +249,7 @@ public class SecurityService {
|
|
|
isdelete
|
|
|
from userinfo
|
|
|
where account =?""";
|
|
|
- List<Map<String, Object>> userInfoList = DataBase.query(Config.getSecurityConnectionStr(), query, username.get());
|
|
|
+ List<Map<String, Object>> userInfoList = DATABASE.query(Config.getSecurityConnectionStr(), query, username.get());
|
|
|
|
|
|
Map<String, Object> userInfo;
|
|
|
if (userInfoList.isEmpty()) {
|
|
@@ -262,7 +267,13 @@ public class SecurityService {
|
|
|
}
|
|
|
}
|
|
|
Object userId = userInfo.get("userid");
|
|
|
- RequestContextHolder.currentRequestAttributes().setAttribute("userinfo", userInfo, SCOPE_SESSION);
|
|
|
+
|
|
|
+ Map<String, Object> sessionMap = Config.cache.get(sessionId);
|
|
|
+ if (sessionMap == null) {
|
|
|
+ sessionMap = new Hashtable<>();
|
|
|
+ Config.cache.put(sessionId, sessionMap);
|
|
|
+ }
|
|
|
+ sessionMap.put("userinfo", userInfo);
|
|
|
String query1 = """
|
|
|
select loginid,
|
|
|
userid,
|
|
@@ -278,20 +289,20 @@ public class SecurityService {
|
|
|
appid
|
|
|
from userloginlog
|
|
|
where userid = ? and isexpires = 0 and logouttime is null""";
|
|
|
- List<Map<String, Object>> userLoginLogList = DataBase.query(Config.getSecurityConnectionStr(), query1, userInfo.get("userid"));
|
|
|
+ List<Map<String, Object>> userLoginLogList = DATABASE.query(Config.getSecurityConnectionStr(), query1, userInfo.get("userid"));
|
|
|
|
|
|
Map<String, Object> data = new HashMap<>();
|
|
|
String appToken = RequestUtil.getAppToken();
|
|
|
String insert = "insert into userloginlog ( userid, requestip, sessionid, logintime, usertoken, lasttime, lastheartbeat,apptoken,isexpires,appid)values (?,?,?,?,?,?,?,?,0,?)";
|
|
|
if (userLoginLogList.isEmpty()) {
|
|
|
data.put("userstatus", "0");
|
|
|
- DataBase.update(Config.getSecurityConnectionStr(), insert, userId, ip, sessionId, LocalDateTime.now(), null, LocalDateTime.now(), LocalDateTime.now(), appToken, appId);
|
|
|
+ DATABASE.update(Config.getSecurityConnectionStr(), insert, userId, ip, sessionId, LocalDateTime.now(), null, LocalDateTime.now(), LocalDateTime.now(), appToken, appId);
|
|
|
} else {
|
|
|
Object multilogin = application.get("multilogin");
|
|
|
if (Objects.equals(DataFormatUtil.toString(multilogin), "1")) {
|
|
|
Optional<Map<String, Object>> log = userLoginLogList.stream().filter(it -> it.get("sessionid").equals(sessionId)).findAny();
|
|
|
if (log.isEmpty()) {
|
|
|
- DataBase.update(Config.getSecurityConnectionStr(), insert, userId, ip, sessionId, LocalDateTime.now(), null, LocalDateTime.now(), LocalDateTime.now(), appToken, appId);
|
|
|
+ DATABASE.update(Config.getSecurityConnectionStr(), insert, userId, ip, sessionId, LocalDateTime.now(), null, LocalDateTime.now(), LocalDateTime.now(), appToken, appId);
|
|
|
// } else {
|
|
|
// Map<String, Object> map = log.get();
|
|
|
// if (Objects.isNull(map.get("apptoken"))) {
|
|
@@ -305,7 +316,7 @@ public class SecurityService {
|
|
|
Optional<Map<String, Object>> log = userLoginLogList.stream().filter(it -> it.get("sessionid").equals(sessionId)).findAny();
|
|
|
if (log.isEmpty()) {
|
|
|
|
|
|
- DataBase.update(Config.getSecurityConnectionStr(), insert, userId, ip, sessionId, LocalDateTime.now(), null, LocalDateTime.now(), LocalDateTime.now(), appToken, appId);
|
|
|
+ DATABASE.update(Config.getSecurityConnectionStr(), insert, userId, ip, sessionId, LocalDateTime.now(), null, LocalDateTime.now(), LocalDateTime.now(), appToken, appId);
|
|
|
}
|
|
|
data.put("userstatus", "1");
|
|
|
}
|
|
@@ -323,6 +334,9 @@ public class SecurityService {
|
|
|
String appToken = RequestUtil.getAppToken();
|
|
|
String ip = RequestUtil.getIpAddr();
|
|
|
String sessionId = RequestUtil.getSessionId();
|
|
|
+ if (sessionId == null) {
|
|
|
+ return UniReturnUtil.fail("sessionid 不匹配");
|
|
|
+ }
|
|
|
String query = """
|
|
|
select loginid,
|
|
|
userid,
|
|
@@ -338,14 +352,14 @@ public class SecurityService {
|
|
|
appid
|
|
|
from userloginlog
|
|
|
where apptoken=? and sessionid=? and requestip=? and isexpires=0 and logouttime is null """;
|
|
|
- List<Map<String, Object>> userLoginLogList = DataBase.query(Config.getSecurityConnectionStr(), query, appToken, sessionId, ip);
|
|
|
+ List<Map<String, Object>> userLoginLogList = DATABASE.query(Config.getSecurityConnectionStr(), query, appToken, sessionId, ip);
|
|
|
if (userLoginLogList.isEmpty()) {
|
|
|
return UniReturnUtil.fail("登录失败:在数据库中没有找到当前session的登录请求");
|
|
|
}
|
|
|
Map<String, Object> userLoginLog = userLoginLogList.get(0);
|
|
|
String userToken = DataEncryptionUtil.signatureMD5("%s:%s".formatted(LocalDateTime.now(), sessionId));
|
|
|
String update = "update userloginlog set apptoken=null,usertoken=?,lasttime=? where loginid=?";
|
|
|
- DataBase.update(Config.getSecurityConnectionStr(), update, userToken, LocalDateTime.now(), userLoginLog.get("loginid"));
|
|
|
+ DATABASE.update(Config.getSecurityConnectionStr(), update, userToken, LocalDateTime.now(), userLoginLog.get("loginid"));
|
|
|
HashMap<String, Object> data = new HashMap<>();
|
|
|
data.put("usertoken", userToken);
|
|
|
|
|
@@ -368,26 +382,26 @@ public class SecurityService {
|
|
|
isexpires,
|
|
|
appid
|
|
|
from userloginlog
|
|
|
- where isexpires = 0 and usertoken = ? and sessionid = ?""";
|
|
|
- List<Map<String, Object>> userLoginLogList = DataBase.query(Config.getSecurityConnectionStr(), query, userToken, sessionId);
|
|
|
- if (userLoginLogList.isEmpty()) {
|
|
|
- return UniReturnUtil.fail("用户登录查询失败");
|
|
|
- }
|
|
|
- Map<String, Object> userLoginLog = userLoginLogList.get(0);
|
|
|
- Object lastheartbeat = userLoginLog.get("lastheartbeat");
|
|
|
- LocalDateTime dateTime = DataFormatUtil.toDateTime(lastheartbeat);
|
|
|
- if (Objects.nonNull(dateTime)) {
|
|
|
- Map<String, Object> application = RequestUtil.getApplication();
|
|
|
- Object apptokeneffectiveObj = application.get("apptokeneffective");
|
|
|
- Long apptokeneffective = defaultAppTokenEffective;
|
|
|
- if (Objects.nonNull(apptokeneffectiveObj)) {
|
|
|
- apptokeneffective = Long.parseLong(apptokeneffectiveObj.toString());
|
|
|
- }
|
|
|
-
|
|
|
- if (dateTime.plusSeconds(apptokeneffective).isAfter(LocalDateTime.now())) {
|
|
|
- return UniReturnUtil.success(null);
|
|
|
- }
|
|
|
+ where logouttime is null and usertoken = ? and sessionid = ?""";
|
|
|
+ List<Map<String, Object>> userLoginLogList = DATABASE.query(Config.getSecurityConnectionStr(), query, userToken, sessionId);
|
|
|
+ if (!userLoginLogList.isEmpty()) {
|
|
|
+ return UniReturnUtil.success(null);
|
|
|
}
|
|
|
+// Map<String, Object> userLoginLog = userLoginLogList.get(0);
|
|
|
+// Object lastheartbeat = userLoginLog.get("lastheartbeat");
|
|
|
+// LocalDateTime dateTime = DataFormatUtil.toDateTime(lastheartbeat);
|
|
|
+// if (Objects.nonNull(dateTime)) {
|
|
|
+// Map<String, Object> application = RequestUtil.getApplication();
|
|
|
+// Object apptokeneffectiveObj = application.get("apptokeneffective");
|
|
|
+// Long apptokeneffective = defaultAppTokenEffective;
|
|
|
+// if (Objects.nonNull(apptokeneffectiveObj)) {
|
|
|
+// apptokeneffective = Long.parseLong(apptokeneffectiveObj.toString());
|
|
|
+// }
|
|
|
+//
|
|
|
+// if (dateTime.plusSeconds(apptokeneffective).isAfter(LocalDateTime.now())) {
|
|
|
+// return UniReturnUtil.success(null);
|
|
|
+// }
|
|
|
+// }
|
|
|
return UniReturnUtil.fail("用户token已过期");
|
|
|
|
|
|
}
|
|
@@ -411,9 +425,9 @@ public class SecurityService {
|
|
|
isexpires,
|
|
|
appid
|
|
|
from userloginlog
|
|
|
- where isexpires=0 and usertoken=? and sessionid=?""";
|
|
|
+ where logouttime is null and usertoken=? and sessionid=?""";
|
|
|
|
|
|
- List<Map<String, Object>> userLoginLogList = DataBase.query(Config.getSecurityConnectionStr(), query, userToken, sessionId);
|
|
|
+ List<Map<String, Object>> userLoginLogList = DATABASE.query(Config.getSecurityConnectionStr(), query, userToken, sessionId);
|
|
|
|
|
|
if (userLoginLogList.isEmpty()) {
|
|
|
return UniReturnUtil.fail("登出失败");
|
|
@@ -421,9 +435,9 @@ public class SecurityService {
|
|
|
Map<String, Object> userLoginLog = userLoginLogList.get(0);
|
|
|
Object userIdObj = userLoginLog.get("userid");
|
|
|
String delete = "update userloginlog set isexpires=1, logouttime=? where userid=? and usertoken=? and sessionid=?";
|
|
|
- DataBase.update(Config.getSecurityConnectionStr(), delete, LocalDateTime.now(), userIdObj, userToken, sessionId);
|
|
|
- RequestContextHolder.currentRequestAttributes().removeAttribute("application", SCOPE_SESSION);
|
|
|
- RequestContextHolder.currentRequestAttributes().removeAttribute("userinfo", SCOPE_SESSION);
|
|
|
+ DATABASE.update(Config.getSecurityConnectionStr(), delete, LocalDateTime.now(), userIdObj, userToken, sessionId);
|
|
|
+
|
|
|
+ Config.cache.remove(sessionId);
|
|
|
return UniReturnUtil.success("成功");
|
|
|
}
|
|
|
|
|
@@ -493,7 +507,7 @@ public class SecurityService {
|
|
|
null as selectcolumnlist,
|
|
|
null as filterset
|
|
|
from pageconfiguration""";
|
|
|
- permission = DataBase.query(Config.getSecurityConnectionStr(), query);
|
|
|
+ permission = DATABASE.query(Config.getSecurityConnectionStr(), query);
|
|
|
} else {
|
|
|
String query = """
|
|
|
select userpermissionsid,
|
|
@@ -554,7 +568,7 @@ public class SecurityService {
|
|
|
where t3.pageconfigurationid = t1.pageconfigurationid
|
|
|
and t1.userid = ?""";
|
|
|
|
|
|
- permission = DataBase.query(Config.getSecurityConnectionStr(), query, userId);
|
|
|
+ permission = DATABASE.query(Config.getSecurityConnectionStr(), query, userId);
|
|
|
}
|
|
|
return UniReturnUtil.success(permission);
|
|
|
}
|
|
@@ -571,7 +585,7 @@ public class SecurityService {
|
|
|
} else {
|
|
|
String userId = RequestUtil.getUserId();
|
|
|
String update = "update userinfo set userpassword=? where userid=?";
|
|
|
- DataBase.update(Config.getSecurityConnectionStr(), update, passwordOpt.get(), userId);
|
|
|
+ DATABASE.update(Config.getSecurityConnectionStr(), update, passwordOpt.get(), userId);
|
|
|
return UniReturnUtil.success("成功");
|
|
|
}
|
|
|
}
|
|
@@ -585,7 +599,7 @@ public class SecurityService {
|
|
|
update userloginlog set
|
|
|
lastheartbeat = ?
|
|
|
where isexpires=0 and usertoken=? and sessionid=?""";
|
|
|
- int updated = DataBase.update(Config.getSecurityConnectionStr(), updateSql, LocalDateTime.now(), userToken, sessionId);
|
|
|
+ int updated = DATABASE.update(Config.getSecurityConnectionStr(), updateSql, LocalDateTime.now(), userToken, sessionId);
|
|
|
if (updated > 0) {
|
|
|
return UniReturnUtil.success("成功");
|
|
|
} else {
|
|
@@ -597,11 +611,11 @@ public class SecurityService {
|
|
|
// 使用数据库
|
|
|
// 先清理数据库中的重复请求 和过期数据
|
|
|
String deleteSql = "delete from tempsecuritycode where expiretime < ? or appid = ? and requestip = ? and sessionid =? ";
|
|
|
- DataBase.update(Config.getSecurityConnectionStr(), deleteSql, LocalDateTime.now(), appid, requestIp, sessionId);
|
|
|
+ DATABASE.update(Config.getSecurityConnectionStr(), deleteSql, LocalDateTime.now(), appid, requestIp, sessionId);
|
|
|
// 新增数据
|
|
|
LocalDateTime localDateTime = LocalDateTime.now().plusSeconds(securitycodeeffective);
|
|
|
String insertSql = "insert into tempsecuritycode(appid,requestip,sessionid,securitycode,expiretime) values (?,?,?,?,?)";
|
|
|
- DataBase.update(Config.getSecurityConnectionStr(), insertSql, appid, requestIp, sessionId, code, localDateTime);
|
|
|
+ DATABASE.update(Config.getSecurityConnectionStr(), insertSql, appid, requestIp, sessionId, code, localDateTime);
|
|
|
|
|
|
}
|
|
|
|
|
@@ -613,7 +627,7 @@ public class SecurityService {
|
|
|
and sessionid = ?
|
|
|
and appid = ?
|
|
|
and requestip = ?""";
|
|
|
- return DataBase.update(Config.getSecurityConnectionStr(), deleteSql, code, sessionId, appid, requestIp) > 0;
|
|
|
+ return DATABASE.update(Config.getSecurityConnectionStr(), deleteSql, code, sessionId, appid, requestIp) > 0;
|
|
|
}
|
|
|
|
|
|
}
|