|
@@ -48,7 +48,24 @@ public class SecurityService {
|
|
|
String clean = "delete from appconnectlog where expiretime < ? ";
|
|
|
DataBase.update(Config.getSecurityConnectionStr(), clean,
|
|
|
LocalDateTime.now());
|
|
|
- String query = "select * from application where appid = ? and appsecret = ?";
|
|
|
+ String query = """
|
|
|
+ select applicationid,
|
|
|
+ appid,
|
|
|
+ appsecret,
|
|
|
+ appname,
|
|
|
+ appengname,
|
|
|
+ appdescribe,
|
|
|
+ applogo,
|
|
|
+ smalllogo,
|
|
|
+ backgroundimage,
|
|
|
+ apptokeneffective,
|
|
|
+ securitycoderule,
|
|
|
+ securitycodeeffective,
|
|
|
+ multilogin,
|
|
|
+ passwordrule,
|
|
|
+ passwordeffective
|
|
|
+ from application
|
|
|
+ where appid = ? and appsecret = ?""";
|
|
|
List<Map<String, Object>> applicationList = DataBase.query(Config.getSecurityConnectionStr(), query, appid.get(), appSecret.get());
|
|
|
|
|
|
if (applicationList.isEmpty()) {
|
|
@@ -214,7 +231,20 @@ public class SecurityService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- String query = "select * from userinfo where account =? and userpassword=? ";
|
|
|
+ String query = """
|
|
|
+ select userid,
|
|
|
+ usergroupid,
|
|
|
+ username,
|
|
|
+ account,
|
|
|
+ userpassword,
|
|
|
+ userdescribe,
|
|
|
+ isenable,
|
|
|
+ secondarypassword,
|
|
|
+ multilogin,
|
|
|
+ passwordlastmodified,
|
|
|
+ isdelete
|
|
|
+ from userinfo
|
|
|
+ where account =? and userpassword=? """;
|
|
|
List<Map<String, Object>> userInfoList = DataBase.query(Config.getSecurityConnectionStr(), query, username.get(), DataEncryptionUtil.decryptRSAByPrivateKey(password.get()));
|
|
|
if (userInfoList.isEmpty()) {
|
|
|
return UniReturnUtil.fail("用户名密码错误");
|
|
@@ -223,7 +253,22 @@ public class SecurityService {
|
|
|
Object userId = userInfo.get("userid");
|
|
|
RequestContextHolder.currentRequestAttributes().setAttribute("userid", userId, SCOPE_SESSION);
|
|
|
RequestContextHolder.currentRequestAttributes().setAttribute("userinfo", userInfo, SCOPE_SESSION);
|
|
|
- String query1 = "select * from userloginlog where userid=?";
|
|
|
+ String query1 = """
|
|
|
+ select loginid,
|
|
|
+ userid,
|
|
|
+ requestip,
|
|
|
+ sessionid,
|
|
|
+ logintime,
|
|
|
+ usertoken,
|
|
|
+ lasttime,
|
|
|
+ lastheartbeat,
|
|
|
+ logouttime,
|
|
|
+ apptoken,
|
|
|
+ isexpires,
|
|
|
+ appid,
|
|
|
+ expirestime
|
|
|
+ from userloginlog
|
|
|
+ where userid=?""";
|
|
|
List<Map<String, Object>> userLoginLogList = DataBase.query(Config.getSecurityConnectionStr(), query1, userInfo.get("userid"));
|
|
|
|
|
|
Map<String, Object> data = new HashMap<>();
|
|
@@ -271,7 +316,22 @@ public class SecurityService {
|
|
|
String appToken = RequestUtil.getAppToken();
|
|
|
String ip = RequestUtil.getIpAddr();
|
|
|
String sessionId = RequestUtil.getSessionId();
|
|
|
- String query = "select * from userloginlog where apptoken=? and sessionid=? and requestip=? and isexpires=0 ";
|
|
|
+ String query = """
|
|
|
+ select loginid,
|
|
|
+ userid,
|
|
|
+ requestip,
|
|
|
+ sessionid,
|
|
|
+ logintime,
|
|
|
+ usertoken,
|
|
|
+ lasttime,
|
|
|
+ lastheartbeat,
|
|
|
+ logouttime,
|
|
|
+ apptoken,
|
|
|
+ isexpires,
|
|
|
+ appid,
|
|
|
+ expirestime
|
|
|
+ from userloginlog
|
|
|
+ where apptoken=? and sessionid=? and requestip=? and isexpires=0 """;
|
|
|
List<Map<String, Object>> userLoginLogList = DataBase.query(Config.getSecurityConnectionStr(), query, appToken, sessionId, ip);
|
|
|
if (userLoginLogList.isEmpty()) {
|
|
|
return UniReturnUtil.fail("登录失败");
|
|
@@ -297,7 +357,22 @@ public class SecurityService {
|
|
|
|
|
|
public Map<String, Object> checkUserToken(String userToken) throws Exception {
|
|
|
String sessionId = RequestUtil.getSessionId();
|
|
|
- String query = "select * from userloginlog where isexpires = 0 and usertoken = ? and sessionid = ?";
|
|
|
+ String query = """
|
|
|
+ select loginid,
|
|
|
+ userid,
|
|
|
+ requestip,
|
|
|
+ sessionid,
|
|
|
+ logintime,
|
|
|
+ usertoken,
|
|
|
+ lasttime,
|
|
|
+ lastheartbeat,
|
|
|
+ logouttime,
|
|
|
+ apptoken,
|
|
|
+ isexpires,
|
|
|
+ appid,
|
|
|
+ expirestime
|
|
|
+ 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("用户登录查询失败");
|
|
@@ -326,7 +401,22 @@ public class SecurityService {
|
|
|
public Map<String, Object> logOut() throws Exception {
|
|
|
String userToken = RequestUtil.getUserToken();
|
|
|
String sessionId = RequestUtil.getSessionId();
|
|
|
- String query = "select * from userloginlog where isexpires=0 and usertoken=? and sessionid=?";
|
|
|
+ String query = """
|
|
|
+ select loginid,
|
|
|
+ userid,
|
|
|
+ requestip,
|
|
|
+ sessionid,
|
|
|
+ logintime,
|
|
|
+ usertoken,
|
|
|
+ lasttime,
|
|
|
+ lastheartbeat,
|
|
|
+ logouttime,
|
|
|
+ apptoken,
|
|
|
+ isexpires,
|
|
|
+ appid,
|
|
|
+ expirestime
|
|
|
+ from userloginlog
|
|
|
+ where isexpires=0 and usertoken=? and sessionid=?""";
|
|
|
|
|
|
List<Map<String, Object>> userLoginLogList = DataBase.query(Config.getSecurityConnectionStr(), query,
|
|
|
userToken, sessionId);
|
|
@@ -353,25 +443,101 @@ public class SecurityService {
|
|
|
List<Map<String, Object>> permission;
|
|
|
if (Objects.equals("0", usergroupid.toString())) {
|
|
|
String query = """
|
|
|
- select
|
|
|
- null as userpermissionsid,
|
|
|
+ select null as userpermissionsid,
|
|
|
null as userid,
|
|
|
- pageconfiguration.*,
|
|
|
+ pageconfigurationid,
|
|
|
+ pagetype,
|
|
|
+ superiorid,
|
|
|
+ pagename,
|
|
|
+ pagecode,
|
|
|
+ pagedescribe,
|
|
|
+ serviceid,
|
|
|
+ shortcutkeys,
|
|
|
+ openmode,
|
|
|
+ pageroute,
|
|
|
+ pageaddress,
|
|
|
+ passparameters,
|
|
|
+ defaultfilter,
|
|
|
+ pageicon,
|
|
|
+ rowbackgroundcolorexpression,
|
|
|
+ rowfontcolorexpression,
|
|
|
+ datatype,
|
|
|
+ datalength,
|
|
|
+ isdisplay,
|
|
|
+ displaynumber,
|
|
|
+ displaywidth,
|
|
|
+ backgroundcolorexpression,
|
|
|
+ fontcolorexpression,
|
|
|
+ enablesort,
|
|
|
+ enablefilter,
|
|
|
+ enablegroup,
|
|
|
+ enablecount,
|
|
|
+ counttopmost,
|
|
|
+ isfiltercolumn,
|
|
|
+ isprimarykey,
|
|
|
+ defaultparameters,
|
|
|
+ dropdownlist,
|
|
|
+ dropdownlistid,
|
|
|
+ dropdownlistlabel,
|
|
|
+ isrequired,
|
|
|
+ uniquitytype,
|
|
|
+ formatrule,
|
|
|
+ defaultvalue,
|
|
|
+ calculationformula,
|
|
|
+ servicetype,
|
|
|
null as serviceid,
|
|
|
null as insetcolumnlist,
|
|
|
null as updatecolumnlist,
|
|
|
null as selectcolumnlist,
|
|
|
null as filterset
|
|
|
- from
|
|
|
- pageconfiguration""";
|
|
|
+ from pageconfiguration""";
|
|
|
permission = DataBase.query(Config.getSecurityConnectionStr(), query);
|
|
|
} else {
|
|
|
String query = """
|
|
|
- select userpermissionsid,
|
|
|
+ select userpermissionsid,
|
|
|
t1.userid,
|
|
|
- t3.*,
|
|
|
- t1.serviceid,
|
|
|
- insetcolumnlist,
|
|
|
+ t3.pageconfigurationid,
|
|
|
+ t3.pageconfigurationid,
|
|
|
+ t3.pagetype,
|
|
|
+ t3.superiorid,
|
|
|
+ t3.pagename,
|
|
|
+ t3.pagecode,
|
|
|
+ t3.pagedescribe,
|
|
|
+ t3.serviceid,
|
|
|
+ t3.shortcutkeys,
|
|
|
+ t3.openmode,
|
|
|
+ t3.pageroute,
|
|
|
+ t3.pageaddress,
|
|
|
+ t3.passparameters,
|
|
|
+ t3.defaultfilter,
|
|
|
+ t3.pageicon,
|
|
|
+ t3.rowbackgroundcolorexpression,
|
|
|
+ t3.rowfontcolorexpression,
|
|
|
+ t3.datatype,
|
|
|
+ t3.datalength,
|
|
|
+ t3.isdisplay,
|
|
|
+ t3.displaynumber,
|
|
|
+ t3.displaywidth,
|
|
|
+ t3.backgroundcolorexpression,
|
|
|
+ t3.fontcolorexpression,
|
|
|
+ t3.enablesort,
|
|
|
+ t3.enablefilter,
|
|
|
+ t3.enablegroup,
|
|
|
+ t3.enablecount,
|
|
|
+ t3.counttopmost,
|
|
|
+ t3.isfiltercolumn,
|
|
|
+ t3.isprimarykey,
|
|
|
+ t3.defaultparameters,
|
|
|
+ t3.dropdownlist,
|
|
|
+ t3.dropdownlistid,
|
|
|
+ t3.dropdownlistlabel,
|
|
|
+ t3.isrequired,
|
|
|
+ t3.uniquitytype,
|
|
|
+ t3.formatrule,
|
|
|
+ t3.defaultvalue,
|
|
|
+ t3.calculationformula,
|
|
|
+ t3.servicetype,
|
|
|
+ t1.serviceid, insetcolumnlist,
|
|
|
updatecolumnlist,
|
|
|
selectcolumnlist,
|
|
|
filterset
|
|
@@ -412,7 +578,22 @@ public class SecurityService {
|
|
|
|
|
|
String userToken = RequestUtil.getUserToken();
|
|
|
String sessionId = RequestUtil.getSessionId();
|
|
|
- String query = "select * from userloginlog where isexpires=0 and usertoken=? and sessionid=?";
|
|
|
+ String query = """
|
|
|
+ select loginid,
|
|
|
+ userid,
|
|
|
+ requestip,
|
|
|
+ sessionid,
|
|
|
+ logintime,
|
|
|
+ usertoken,
|
|
|
+ lasttime,
|
|
|
+ lastheartbeat,
|
|
|
+ logouttime,
|
|
|
+ apptoken,
|
|
|
+ isexpires,
|
|
|
+ appid,
|
|
|
+ expirestime
|
|
|
+ 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("查询失败");
|