|
@@ -20,6 +20,7 @@ import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import me.zhengjie.domain.Log;
|
|
|
import me.zhengjie.modules.dm.user.domain.DmUser;
|
|
|
import me.zhengjie.modules.dm.user.repository.DmUserRepository;
|
|
|
import me.zhengjie.modules.system.domain.Dept;
|
|
@@ -29,7 +30,9 @@ import me.zhengjie.modules.system.domain.User;
|
|
|
import me.zhengjie.modules.system.repository.DeptRepository;
|
|
|
import me.zhengjie.modules.system.repository.UserRepository;
|
|
|
import me.zhengjie.modules.system.service.DeptService;
|
|
|
+import me.zhengjie.repository.LogRepository;
|
|
|
import me.zhengjie.utils.SecurityUtils;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.security.crypto.password.PasswordEncoder;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
import org.springframework.util.ObjectUtils;
|
|
@@ -47,14 +50,22 @@ import java.util.*;
|
|
|
@Component
|
|
|
public class ZkDataSyncTask {
|
|
|
|
|
|
- private final String key = "DMERPYT!@#$QWER2021+{:>";
|
|
|
- private final String zkApiUrl = "https://smartpark.caih.com/zkxt";//http://192.168.1.14:6112
|
|
|
- private final String header_key = "XYTACCESSTOKEN";//X_YT_ACCESS_TOKEN
|
|
|
+ @Value("${key}")
|
|
|
+ private String key;
|
|
|
+ @Value("${zkApiUrl}")
|
|
|
+ private String zkApiUrl;
|
|
|
+ @Value("${headerKey}")
|
|
|
+ private String header_key;
|
|
|
+ @Value("${deptApi}")
|
|
|
+ private String deptApi;
|
|
|
+ @Value("${userApi}")
|
|
|
+ private String userApi;
|
|
|
|
|
|
private final UserRepository userRepository;
|
|
|
private final DmUserRepository dmUserRepository;
|
|
|
private final DeptRepository deptRepository;
|
|
|
private final PasswordEncoder passwordEncoder;
|
|
|
+ private final LogRepository logRepository;
|
|
|
|
|
|
public void run(){
|
|
|
log.info("deptsync 执行开始");
|
|
@@ -79,21 +90,34 @@ public class ZkDataSyncTask {
|
|
|
}
|
|
|
|
|
|
private JSONObject getDatas(String api,JSONArray time, int pageNum, int pageSize,int type) {
|
|
|
- Map<String,Object> tokenData = SecurityUtils.getToken(key);
|
|
|
- JSONObject body = new JSONObject();
|
|
|
- body.put("timestamp",tokenData.get("timestamp"));
|
|
|
- body.put("nonce",tokenData.get("nonce"));
|
|
|
- JSONObject query = new JSONObject();
|
|
|
- if(type == 1){
|
|
|
- query.put("updateTime",time);
|
|
|
+ String res = "";
|
|
|
+ JSONObject json = null;
|
|
|
+ try {
|
|
|
+ Map<String,Object> tokenData = SecurityUtils.getToken(key);
|
|
|
+ JSONObject body = new JSONObject();
|
|
|
+ body.put("timestamp",tokenData.get("timestamp"));
|
|
|
+ body.put("nonce",tokenData.get("nonce"));
|
|
|
+ JSONObject query = new JSONObject();
|
|
|
+ if(type == 1){
|
|
|
+ query.put("updateTime",time);
|
|
|
+ }
|
|
|
+ body.put("query",query);
|
|
|
+
|
|
|
+ res = HttpRequest.get(zkApiUrl + api+"?page="+pageNum+"&size="+pageSize)
|
|
|
+ .header(header_key, tokenData.get("token").toString())
|
|
|
+ .body(body.toString()).execute().body();
|
|
|
+ json = JSONObject.parseObject(res);
|
|
|
+ log.info("json:"+json);
|
|
|
+ }catch (Exception ex){
|
|
|
+ ex.printStackTrace();
|
|
|
+ Log log = new Log();
|
|
|
+ log.setDescription(ex.toString());
|
|
|
+ log.setLogType("ERROR");
|
|
|
+ log.setMethod(zkApiUrl + api);
|
|
|
+ log.setParams(res);
|
|
|
+ log.setUsername("同步中控数据问题");
|
|
|
+ logRepository.save(log);
|
|
|
}
|
|
|
- body.put("query",query);
|
|
|
-
|
|
|
- String res = HttpRequest.get(zkApiUrl + api+"?page="+pageNum+"&size="+pageSize)
|
|
|
- .header(header_key, tokenData.get("token").toString())
|
|
|
- .body(body.toString()).execute().body();
|
|
|
- JSONObject json = JSONObject.parseObject(res);
|
|
|
- log.info("json:"+json);
|
|
|
return json;
|
|
|
}
|
|
|
|
|
@@ -101,7 +125,7 @@ public class ZkDataSyncTask {
|
|
|
* 部门数据同步
|
|
|
*/
|
|
|
private void deptSync() {
|
|
|
- String api = "/api/thirdparty/v1/user/getzkdeps";
|
|
|
+// String api = "/api/thirdparty/v1/user/getzkdeps";
|
|
|
|
|
|
JSONArray createTme = new JSONArray();
|
|
|
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
@@ -115,7 +139,7 @@ public class ZkDataSyncTask {
|
|
|
createTme.add(todayDate);
|
|
|
|
|
|
//计算总页数
|
|
|
- int total = getDatas(api,createTme,0,100,1).getJSONObject("data").getInteger("totalElements");
|
|
|
+ int total = getDatas(deptApi,createTme,0,100,1).getJSONObject("data").getInteger("totalElements");
|
|
|
int pageSize = 100;
|
|
|
int pageTotal = (total / pageSize);
|
|
|
if (total % pageSize != 0) {
|
|
@@ -125,18 +149,12 @@ public class ZkDataSyncTask {
|
|
|
|
|
|
//按页获取
|
|
|
for (int k = 0; k < pageTotal; k++) {
|
|
|
- JSONObject json = getDatas(api, createTme,k,pageSize,1);
|
|
|
+ JSONObject json = getDatas(deptApi, createTme,k,pageSize,1);
|
|
|
JSONObject data = json.getJSONObject("data");
|
|
|
JSONArray content = data.getJSONArray("content");
|
|
|
for (int i = 0; i < content.size(); i++) {
|
|
|
Dept dept = JSONObject.parseObject(content.getString(i), Dept.class);
|
|
|
deptRepository.save(dept);
|
|
|
-// DeptDto deptDto = deptService.findById(dept.getId());
|
|
|
-// if (deptDto != null) {
|
|
|
-// deptService.update(dept);
|
|
|
-// } else {
|
|
|
-// deptService.create(dept);
|
|
|
-// }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -145,10 +163,10 @@ public class ZkDataSyncTask {
|
|
|
* 部门数据同步(全量)
|
|
|
*/
|
|
|
private void deptSyncAll() {
|
|
|
- String api = "/api/thirdparty/v1/user/getzkdeps";
|
|
|
+// String api = "/api/thirdparty/v1/user/getzkdeps";
|
|
|
|
|
|
//计算总页数
|
|
|
- int total = getDatas(api,null,0,100,2).getJSONObject("data").getInteger("totalElements");
|
|
|
+ int total = getDatas(deptApi,null,0,100,2).getJSONObject("data").getInteger("totalElements");
|
|
|
int pageSize = 100;
|
|
|
int pageTotal = (total / pageSize);
|
|
|
if (total % pageSize != 0) {
|
|
@@ -158,7 +176,7 @@ public class ZkDataSyncTask {
|
|
|
|
|
|
//按页获取
|
|
|
for (int k = 0; k < pageTotal; k++) {
|
|
|
- JSONObject json = getDatas(api,null,k,pageSize,2);
|
|
|
+ JSONObject json = getDatas(deptApi,null,k,pageSize,2);
|
|
|
JSONObject data = json.getJSONObject("data");
|
|
|
JSONArray content = data.getJSONArray("content");
|
|
|
for (int i = 0; i < content.size(); i++) {
|
|
@@ -172,7 +190,7 @@ public class ZkDataSyncTask {
|
|
|
* 人员数据同步
|
|
|
*/
|
|
|
private void userSync() {
|
|
|
- String api = "/api/thirdparty/v1/user/getZkSysUsers";
|
|
|
+// String api = "/api/thirdparty/v1/user/getZkSysUsers";
|
|
|
|
|
|
JSONArray createTme = new JSONArray();
|
|
|
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
@@ -186,7 +204,7 @@ public class ZkDataSyncTask {
|
|
|
createTme.add(todayDate);
|
|
|
|
|
|
//计算总页数
|
|
|
- int total = getDatas(api,createTme,0,1,1).getJSONObject("data").getInteger("totalElements");
|
|
|
+ int total = getDatas(userApi,createTme,0,1,1).getJSONObject("data").getInteger("totalElements");
|
|
|
int pageSize = 10;
|
|
|
int pageTotal = (total / pageSize);
|
|
|
if (total % pageSize != 0) {
|
|
@@ -196,7 +214,7 @@ public class ZkDataSyncTask {
|
|
|
|
|
|
//按页获取
|
|
|
for (int k = 0; k < pageTotal; k++) {
|
|
|
- JSONObject json = getDatas(api, createTme,k,pageSize,1);
|
|
|
+ JSONObject json = getDatas(userApi, createTme,k,pageSize,1);
|
|
|
JSONObject data = json.getJSONObject("data");
|
|
|
JSONArray content = data.getJSONArray("content");
|
|
|
for (int i = 0; i < content.size(); i++) {
|
|
@@ -274,10 +292,10 @@ public class ZkDataSyncTask {
|
|
|
*/
|
|
|
private void userSyncAll() {
|
|
|
|
|
|
- String api = "/api/thirdparty/v1/user/getZkSysUsers";
|
|
|
+// String api = "/api/thirdparty/v1/user/getZkSysUsers";
|
|
|
|
|
|
//计算总页数
|
|
|
- int total = getDatas(api,null,0,10,2).getJSONObject("data").getInteger("totalElements");
|
|
|
+ int total = getDatas(userApi,null,0,10,2).getJSONObject("data").getInteger("totalElements");
|
|
|
int pageSize = 10;
|
|
|
int pageTotal = (total / pageSize);
|
|
|
if (total % pageSize != 0) {
|
|
@@ -287,7 +305,7 @@ public class ZkDataSyncTask {
|
|
|
|
|
|
//按页获取
|
|
|
for (int k = 0; k < pageTotal; k++) {
|
|
|
- JSONObject json = getDatas(api, null,k,pageSize,1);
|
|
|
+ JSONObject json = getDatas(userApi, null,k,pageSize,1);
|
|
|
JSONObject data = json.getJSONObject("data");
|
|
|
JSONArray content = data.getJSONArray("content");
|
|
|
for (int i = 0; i < content.size(); i++) {
|