|
|
@ -136,6 +136,7 @@ public class IdcServiceImpl implements IdcService {
|
|
|
|
String host = getNextHost();
|
|
|
|
String host = getNextHost();
|
|
|
|
if(!StringUtils.isEmpty(host)) {
|
|
|
|
if(!StringUtils.isEmpty(host)) {
|
|
|
|
String result = post(host+"/spssync/common/list",query);
|
|
|
|
String result = post(host+"/spssync/common/list",query);
|
|
|
|
|
|
|
|
logger.info("fetchTask--->"+result);
|
|
|
|
if(IDCUtils.isJson(result)) {
|
|
|
|
if(IDCUtils.isJson(result)) {
|
|
|
|
JSONObject json = JSON.parseObject(result);
|
|
|
|
JSONObject json = JSON.parseObject(result);
|
|
|
|
if(json!=null&&json.getInteger("code")==20000&&json.getString("data")!=null) {
|
|
|
|
if(json!=null&&json.getInteger("code")==20000&&json.getString("data")!=null) {
|
|
|
@ -249,6 +250,7 @@ public class IdcServiceImpl implements IdcService {
|
|
|
|
boolean success=true;
|
|
|
|
boolean success=true;
|
|
|
|
Response response = client.newCall(request).execute();
|
|
|
|
Response response = client.newCall(request).execute();
|
|
|
|
result = response.body().toString();
|
|
|
|
result = response.body().toString();
|
|
|
|
|
|
|
|
logger.info("fetchData-->"+result);
|
|
|
|
JSONObject json = JSONObject.parseObject(result);
|
|
|
|
JSONObject json = JSONObject.parseObject(result);
|
|
|
|
if(isLastLevel()) {
|
|
|
|
if(isLastLevel()) {
|
|
|
|
success = analyToDB(json,files);
|
|
|
|
success = analyToDB(json,files);
|
|
|
@ -309,8 +311,10 @@ public class IdcServiceImpl implements IdcService {
|
|
|
|
String datePath = DateUtil.formatDate(new Date(),"yyyy-MM-dd");
|
|
|
|
String datePath = DateUtil.formatDate(new Date(),"yyyy-MM-dd");
|
|
|
|
String fileName = filePath +datePath+"/"+json.getString("messageType")+"-"+json.getString("messageId")+".udi";
|
|
|
|
String fileName = filePath +datePath+"/"+json.getString("messageType")+"-"+json.getString("messageId")+".udi";
|
|
|
|
String backFileName = backFilePath +datePath+"/"+json.getString("messageType")+"-"+json.getString("messageId")+".udi";
|
|
|
|
String backFileName = backFilePath +datePath+"/"+json.getString("messageType")+"-"+json.getString("messageId")+".udi";
|
|
|
|
FileUtils.makeDirectory( filePath +datePath+"/");
|
|
|
|
if(!FileUtils.makeDirectory( filePath +datePath))
|
|
|
|
FileUtils.makeDirectory(backFilePath +datePath+"/");
|
|
|
|
IDCUtils.createDirectory(filePath +datePath+"/");
|
|
|
|
|
|
|
|
if(!FileUtils.makeDirectory(backFilePath +datePath))
|
|
|
|
|
|
|
|
IDCUtils.createDirectory(filePath +datePath+"/");
|
|
|
|
|
|
|
|
|
|
|
|
FileUtils.SaveFileAs(content, fileName);
|
|
|
|
FileUtils.SaveFileAs(content, fileName);
|
|
|
|
FileUtils.SaveFileAs(content, backFileName);
|
|
|
|
FileUtils.SaveFileAs(content, backFileName);
|
|
|
@ -549,8 +553,10 @@ public class IdcServiceImpl implements IdcService {
|
|
|
|
String datePath = DateUtil.formatDate(new Date(),"yyyy-MM-dd");
|
|
|
|
String datePath = DateUtil.formatDate(new Date(),"yyyy-MM-dd");
|
|
|
|
String fileName = filePath +datePath+"/"+json.get("messageType")+"-"+json.get("messageId")+".udi";
|
|
|
|
String fileName = filePath +datePath+"/"+json.get("messageType")+"-"+json.get("messageId")+".udi";
|
|
|
|
String backFileName = backFilePath +datePath+"/"+json.get("messageType")+"-"+json.get("messageId")+".udi";
|
|
|
|
String backFileName = backFilePath +datePath+"/"+json.get("messageType")+"-"+json.get("messageId")+".udi";
|
|
|
|
FileUtils.makeDirectory(filePath +datePath+"/");
|
|
|
|
if(!FileUtils.makeDirectory( filePath +datePath))
|
|
|
|
FileUtils.makeDirectory(backFilePath +datePath+"/");
|
|
|
|
IDCUtils.createDirectory(filePath +datePath+"/");
|
|
|
|
|
|
|
|
if(!FileUtils.makeDirectory(backFilePath +datePath))
|
|
|
|
|
|
|
|
IDCUtils.createDirectory(filePath +datePath+"/");
|
|
|
|
|
|
|
|
|
|
|
|
FileUtils.SaveFileAs(content, fileName);
|
|
|
|
FileUtils.SaveFileAs(content, fileName);
|
|
|
|
FileUtils.SaveFileAs(content, backFileName);
|
|
|
|
FileUtils.SaveFileAs(content, backFileName);
|
|
|
@ -563,11 +569,9 @@ public class IdcServiceImpl implements IdcService {
|
|
|
|
map.put("taskId", json.get("messageId"));
|
|
|
|
map.put("taskId", json.get("messageId"));
|
|
|
|
map.put("cacheFilePath", fileName);
|
|
|
|
map.put("cacheFilePath", fileName);
|
|
|
|
map.put("status", success ? "1" : "0");
|
|
|
|
map.put("status", success ? "1" : "0");
|
|
|
|
if(isUpload) {
|
|
|
|
|
|
|
|
saveUploadStatus(map);
|
|
|
|
saveExportStatus(map);
|
|
|
|
} else {
|
|
|
|
|
|
|
|
saveExportStatus(map);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|