|
@@ -24,31 +24,6 @@ public class SecurityService {
|
|
|
@Value("${app.code-effective:600}")
|
|
|
private long defaultSecurityCodeEffective;
|
|
|
|
|
|
-
|
|
|
- private final static String TYPE = "RSA";
|
|
|
-
|
|
|
- private final static String ALGORITHM = "RSA/ECB/PKCS1Padding";
|
|
|
-
|
|
|
- @Value("${cer.private-key}")
|
|
|
- private static String privateKeyStr;
|
|
|
-
|
|
|
-
|
|
|
- private final static String CLEAN_APPLICATION_CONNECTION_LOG = "delete from appconnectlog where expiretime < NOW() and 1 = ?";
|
|
|
- private final static String QUERY_APPLICATION_BY_APPID_AND_APPSECRET = "select * from application where appid = ? and appsecret = ?";
|
|
|
- private final static String QUERY_APPLICATION_BY_APPID = "select * from application where appid = ? ";
|
|
|
- private final static String QUERY_USER_INFO_BY_ACCOUNT_AND_PASSWORD = "select * from userinfo where username =? and userpassword=? ";
|
|
|
- private final static String QUERY_USER_INFO_BY_USER_ID = "select * from userinfo where userid=?";
|
|
|
- private final static String UPDATE_USER_INFO_WITH_PASSWORD_BY_USER_ID = "update userinfo set userpassword=? where userid=?";
|
|
|
- private final static String DELETE_USER_LOGIN_LOG_BY_USER_ID = "delete from userloginlog where userid=?";
|
|
|
- private final static String QUERY_USER_LOGIN_LOG_BY_USER_ID = "select * from userloginlog where userid=?";
|
|
|
- private final static String UPDATE_USER_LOGIN_LOG_WITH_USER_TOKEN_BY_ID = "update userloginlog set apptoken=null,usertoken=?,lasttime=? where loginid=?";
|
|
|
- private final static String QUERY_USER_LOGIN_LOG_BY_APP_TOKEN_AND_SESSION_ID_AND_IP = "select * from userloginlog where apptoken=? and sessionid=? and requestip=? and isexpires=0 ";
|
|
|
- private final static String INSERT_USER_LOGIN_LOG = "insert into userloginlog ( userid, requestip, sessionid, logintime, usertoken, lasttime, lastheartbeat,apptoken,isexpires,appid)values (?,?,?,?,?,?,?,?,0,?)";
|
|
|
- private final static String QUERY_APP_CONNECT_LOG_BY_APPTOKEN_AND_REQUEST_IP = "select * from appconnectlog where apptoken=? and requestip =?";
|
|
|
- private final static String UPDATE_APP_CONNECT_LOG_WITH_EXPIRE_TIME_BY_APPTOKEN_AND_REQUEST_IP_AND_APPID = "update appconnectlog set expiretime=? where apptoken =? and requestip =? and appid=?";
|
|
|
- private final static String QUERY_USER_LOGIN_LOG_BY_USER_TOKEN_AND_SESSION_ID = "select * from userloginlog where isexpires=0 and usertoken=? and sessionid=?";
|
|
|
- private final static String QUERY_USER_PERMISSIONS_BY_USER_ID = " select userpermissionsid, t2.userid, t3.pagecode, t1.serviceid, insertcolumnlist, updatecolumnlist, selectcolumnlist, filterset from userinfo t2,userpermissions t1 left join pageconfiguration t3 on t3.pageconfigurationid=t1.pageconfigurationid where t1.userid=t2.userid and t1.userid = ?";
|
|
|
-
|
|
|
private final CodeCacheService codeCacheService;
|
|
|
|
|
|
public SecurityService(CodeCacheService codeCacheService) {
|
|
@@ -226,7 +201,7 @@ public class SecurityService {
|
|
|
Optional<String> password = getValue("password", requestData);
|
|
|
Optional<String> verifycode = getValue("verifycode", requestData);
|
|
|
// 解密验证码
|
|
|
- String code = DataEncryptionUtil.decryptByPrivateKey(verifycode.get(), privateKeyStr, TYPE, ALGORITHM);
|
|
|
+ String code = DataEncryptionUtil.decryptByPrivateKey(verifycode.get(), Config.privateKeyStr, Config.TYPE, Config.ALGORITHM);
|
|
|
String appId = RequestUtil.getAppId();
|
|
|
|
|
|
Map<String, Object> application = RequestUtil.getApplication();
|
|
@@ -239,7 +214,7 @@ public class SecurityService {
|
|
|
|
|
|
String query = "select * from userinfo where username =? and userpassword=? ";
|
|
|
List<Map<String, Object>> userInfoList = DataBase.query(Config.securityConnectionStr, query, new ArrayList<>() {{
|
|
|
- add(new Object[]{username.get(), DataEncryptionUtil.decryptByPrivateKey(password.get(), privateKeyStr, TYPE, ALGORITHM)});
|
|
|
+ add(new Object[]{username.get(), DataEncryptionUtil.decryptByPrivateKey(password.get(), Config.privateKeyStr, Config.TYPE, Config.ALGORITHM)});
|
|
|
}});
|
|
|
if (userInfoList.isEmpty()) {
|
|
|
return UniReturnUtil.fail("用户名密码错误");
|
|
@@ -284,6 +259,7 @@ public class SecurityService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ codeCacheService.remove(code, sessionId, appId, ip);
|
|
|
|
|
|
return UniReturnUtil.success(data);
|
|
|
}
|
|
@@ -327,7 +303,7 @@ 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 * from userloginlog where isexpires = 0 and usertoken = ? and sessionid = ?";
|
|
|
List<Map<String, Object>> userLoginLogList = DataBase.query(Config.securityConnectionStr, query, new ArrayList<>() {{
|
|
|
add(new Object[]{userToken, sessionId});
|
|
|
}});
|
|
@@ -398,8 +374,8 @@ public class SecurityService {
|
|
|
Optional<String> passwordOpt = getValue("password", requestData);
|
|
|
Map<String, Object> userInfo = RequestUtil.getUserInfo();
|
|
|
String userpassword = userInfo.get("userpassword").toString();
|
|
|
- String password = DataEncryptionUtil.decryptByPrivateKey(passwordOpt.get(), privateKeyStr, TYPE, ALGORITHM);
|
|
|
- String oldPassword = DataEncryptionUtil.decryptByPrivateKey(oldPasswordOpt.get(), privateKeyStr, TYPE, ALGORITHM);
|
|
|
+ String password = DataEncryptionUtil.decryptByPrivateKey(passwordOpt.get(), Config.privateKeyStr, Config.TYPE, Config.ALGORITHM);
|
|
|
+ String oldPassword = DataEncryptionUtil.decryptByPrivateKey(oldPasswordOpt.get(), Config.privateKeyStr, Config.TYPE, Config.ALGORITHM);
|
|
|
if (!userpassword.equals(oldPassword)) {
|
|
|
return UniReturnUtil.fail("密码错误");
|
|
|
} else {
|