|
@@ -3,204 +3,210 @@ package com.persagy.filemove.service;
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.persagy.filemove.app.SagaFileMoveApp;
|
|
|
-import com.persagy.filemove.dto.SagaFileMoveDTO;
|
|
|
+import com.persagy.filemove.dto.ResourceDTO;
|
|
|
import com.persagy.filemove.dto.TransErrDTO;
|
|
|
import com.persagy.filemove.util.HttpTools;
|
|
|
import com.persagy.filemove.util.JsonTools;
|
|
|
+import javafx.beans.property.SimpleStringProperty;
|
|
|
+import org.slf4j.Logger;
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
-import java.util.HashSet;
|
|
|
import java.util.Map;
|
|
|
import java.util.Set;
|
|
|
|
|
|
public class SagaFileMoveService {
|
|
|
- private SagaFileMoveDTO dto;
|
|
|
- private static final String resp_success = "success";
|
|
|
- private static final String testKey = "persagyAndSagaTest2020121130";
|
|
|
- private static final String url_pj_get = "/mng/project/query";
|
|
|
- private static final String url_obj_query = "/object/subset_query?projectId=PJID&secret=SEC";
|
|
|
- private static final String url_source_get = "/common/TYPE_get?systemId=SYSID&key=";
|
|
|
- private static final String url_source_send = "/common/TYPE_upload?systemId=SYSID&secret=SEC&overwrite=true&key=";
|
|
|
-
|
|
|
- public SagaFileMoveService(SagaFileMoveDTO dto) {
|
|
|
- this.dto = dto;
|
|
|
- }
|
|
|
+ private static final Logger log = LoggerFactory.getLogger(SagaFileMoveService.class);
|
|
|
+ public static final String resp_success = "success";
|
|
|
+ public static final String testKey = "persagyAndSagaTest2020121130";
|
|
|
+ public static final String url_pj_get = "/mng/project/query";
|
|
|
+ public static final String url_obj_query = "/object/subset_query?projectId=PJID&secret=SEC";
|
|
|
+ public static final String url_source_get = "/common/TYPE_get?systemId=SYSID&key=";
|
|
|
+ public static final String url_source_send = "/common/TYPE_upload?systemId=SYSID&secret=SEC&overwrite=true&key=";
|
|
|
+
|
|
|
+ public static SimpleStringProperty rateProperty = new SimpleStringProperty("");
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 检查数据平台地址和项目信息
|
|
|
* @return
|
|
|
*/
|
|
|
- public boolean validParamDpfAndPj(SagaFileMoveApp app) {
|
|
|
+ public static boolean validParamDpfAndPj() {
|
|
|
boolean result = false;
|
|
|
Map<Object, Object> param = new HashMap<>();
|
|
|
- param.put("projectId", dto.pjId.getValue());
|
|
|
+ param.put("projectId", SagaFileMoveApp.dto.pjId.getValue());
|
|
|
|
|
|
- String reqUrl = dto.dpf.getValue() + url_pj_get;
|
|
|
+ String reqUrl = SagaFileMoveApp.dto.dpf.getValue() + url_pj_get;
|
|
|
String resp = null;
|
|
|
try {
|
|
|
resp = HttpTools.httpPostJson(reqUrl, param);
|
|
|
- if(null != resp && resp.contains(resp_success) && resp.contains(dto.pjId.getValue())) {
|
|
|
+ if(null != resp && resp.contains(resp_success) && resp.contains(SagaFileMoveApp.dto.pjId.getValue())) {
|
|
|
result = true;
|
|
|
}
|
|
|
}catch (Exception e) {
|
|
|
- app.writeErrToLogFile("url:" + reqUrl + ", param:" + param + ", result:" + resp + "errMsg:" + e.getMessage());
|
|
|
+ log.error("url:" + reqUrl + ", param:" + param + ", result:" + resp + "errMsg:" + e.getMessage());
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 资源转移逻辑
|
|
|
+ * 校验参数
|
|
|
+ * @return 参数无误,返回"success-信息";
|
|
|
*/
|
|
|
- public void resourceMove(SagaFileMoveApp app) {
|
|
|
- final String tipPrefix = "文件迁移:";
|
|
|
- Map<String, String> obj_key = requestSourceKey(app);
|
|
|
- if(!obj_key.isEmpty()) {
|
|
|
- int totalNum = obj_key.size();
|
|
|
-
|
|
|
- // 文件不存在对象id集合
|
|
|
- Set<TransErrDTO> noFileSet = new HashSet<>();
|
|
|
- // 资源key为null的对象id集合
|
|
|
- Set<TransErrDTO> nullKeySet = new HashSet<>();
|
|
|
- // 文件转移失败的对象id集合
|
|
|
- Set<TransErrDTO> moveErrorSet = new HashSet<>();
|
|
|
-
|
|
|
- int handleIndex = 1;
|
|
|
-
|
|
|
- // 默认使用image_get下载文件
|
|
|
- String getApiType = "image";
|
|
|
- if("file".equals(dto.imgFromApiType.getValue())) {
|
|
|
- getApiType = "file";
|
|
|
- }
|
|
|
-
|
|
|
- // 默认使用file_upload上传文件
|
|
|
- String toImgApi = "file";
|
|
|
- if("image".equals(dto.imgToApiType.getValue())) {
|
|
|
- toImgApi = "image";
|
|
|
- }
|
|
|
-
|
|
|
- String getUrl = dto.imgFromUrl.getValue() + url_source_get;
|
|
|
- getUrl = getUrl.replace("TYPE", getApiType)
|
|
|
- .replace("SYSID", dto.imgFromSysId.getValue());
|
|
|
-
|
|
|
- for(String objId : obj_key.keySet()) {
|
|
|
- app.showTipsInfo(tipPrefix + handleIndex + " / " + totalNum);
|
|
|
+ public static String getParamValidResult() {
|
|
|
+ String errorMsg = null;
|
|
|
|
|
|
- fileMove(objId, obj_key.get(objId), getUrl, toImgApi, noFileSet, nullKeySet, moveErrorSet);
|
|
|
-
|
|
|
- handleIndex ++;
|
|
|
- }
|
|
|
-
|
|
|
- String tips = app.getTips();
|
|
|
- int noFileNum = noFileSet.size(), nullKeyNum = nullKeySet.size(), moveErrNum = moveErrorSet.size();
|
|
|
- int errorNum = noFileNum + nullKeyNum + moveErrNum;
|
|
|
- if(errorNum > 0) {
|
|
|
- tips = tips + " 执行结束,转移失败数:" + (totalNum - errorNum) + "。详情见日志文件。";
|
|
|
- app.showTipsError(tips);
|
|
|
+ if(!SagaFileMoveApp.dto.validNecessaryParam()) {
|
|
|
+ errorMsg = "必填参数不能为空!";
|
|
|
+ }
|
|
|
|
|
|
- StringBuilder sb = null;
|
|
|
+ if(errorMsg == null && !validParamDpfAndPj()) {
|
|
|
+ errorMsg = "获取不到项目信息!请确保数据平台地址和项目id参数正确。";
|
|
|
+ }
|
|
|
|
|
|
- if(noFileNum > 0) {
|
|
|
- sb = new StringBuilder("对象关联的文件不存在的数量:" + noFileNum + "。详情:\n");
|
|
|
- for(TransErrDTO item : noFileSet) {
|
|
|
- sb.append(JsonTools.beanToJson(item) + "\n");
|
|
|
- }
|
|
|
- app.writeErrToLogFile(sb.toString());
|
|
|
- }
|
|
|
+ if(errorMsg == null && !validParamImgFromUrl()) {
|
|
|
+ errorMsg = "[文件服务-From]访问不通!请确保URL正确。";
|
|
|
+ }
|
|
|
|
|
|
- if(nullKeyNum > 0) {
|
|
|
- sb = new StringBuilder("对象关联文件key为空的数量:" + nullKeyNum + "。详情:\n");
|
|
|
- for(TransErrDTO item : nullKeySet) {
|
|
|
- sb.append(JsonTools.beanToJson(item) + "\n");
|
|
|
- }
|
|
|
- app.writeErrToLogFile(sb.toString());
|
|
|
- }
|
|
|
+ if(errorMsg == null && !validParamImgToUrl()) {
|
|
|
+ errorMsg = "[文件服务-To]访问不通!请确保URL正确。";
|
|
|
+ }
|
|
|
|
|
|
- if(moveErrNum > 0) {
|
|
|
- sb = new StringBuilder("文件迁移出错的数量:" + moveErrNum + "。详情:\n");
|
|
|
- for(TransErrDTO item : moveErrorSet) {
|
|
|
- sb.append(JsonTools.beanToJson(item) + "\n");
|
|
|
- }
|
|
|
- app.writeErrToLogFile(sb.toString());
|
|
|
- }
|
|
|
+ if(errorMsg == null) {
|
|
|
+ if(SagaFileMoveApp.dto.imgFromUrl.getValue().equals(SagaFileMoveApp.dto.imgToUrl.getValue())) {
|
|
|
+ errorMsg = "success-校验通过。warning-两个文件服务的URL相同!";
|
|
|
}else {
|
|
|
- app.showTipsInfo(tips + " 执行结束,转移成功数:" + totalNum);
|
|
|
+ errorMsg = "success-校验通过";
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ return errorMsg;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 在两个文件服务器之间转移文件
|
|
|
* @param objId 对象id
|
|
|
* @param key 文件资源的key
|
|
|
- * @param getUrl 获取资源的url
|
|
|
- * @param toImgApi 上传文件使用的接口类型
|
|
|
- * @param noFileSet 文件不存在对象id集合
|
|
|
- * @param nullKeySet 资源key为null的对象id集合
|
|
|
- * @param moveErrorSet 文件转移失败的对象id集合
|
|
|
+ * @param noFileSet 文件不存在错误信息集合
|
|
|
+ * @param nullKeySet 资源key为null的信息集合
|
|
|
+ * @param moveErrorSet 文件转移失败的信息集合
|
|
|
*/
|
|
|
- private void fileMove(String objId, String key, String getUrl, String toImgApi, Set<TransErrDTO> noFileSet, Set<TransErrDTO> nullKeySet, Set<TransErrDTO> moveErrorSet) {
|
|
|
+ public static void fileMove(String objId, String key, Set<TransErrDTO> noFileSet, Set<TransErrDTO> nullKeySet, Set<TransErrDTO> moveErrorSet) {
|
|
|
if(key == null || key.trim().length() == 0) {
|
|
|
// 文件资源key值为空
|
|
|
nullKeySet.add(new TransErrDTO(objId, key, "", "", ""));
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- getUrl = getUrl + key;
|
|
|
+ String getImgUrl = buildGetResourceUrl(key);
|
|
|
+ String sendUrl = buildUploadResourceUrl(key);
|
|
|
|
|
|
- if(key.endsWith(".jsonz")) {
|
|
|
- // 对于.jsonz文件,从file_get接口获取
|
|
|
- getUrl = getUrl.replace("image_get","file_get");
|
|
|
+ byte[] resourceByteData = null;
|
|
|
+
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ resourceByteData = HttpTools.httpGetFile(getImgUrl);
|
|
|
+ }catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ moveErrorSet.add(new TransErrDTO(objId, key, "getResourceError:" + e.getMessage(), getImgUrl, sendUrl));
|
|
|
+ }
|
|
|
+
|
|
|
+ if(resourceByteData != null) {
|
|
|
+ if(resourceByteData.length < 50 && ifNotExists(resourceByteData)) {
|
|
|
+ // 文件不存在
|
|
|
+ noFileSet.add(new TransErrDTO(objId, key, "resourceNotExist", getImgUrl, ""));
|
|
|
+ }else {
|
|
|
+ String uploadResult = null;
|
|
|
+
|
|
|
+ try {
|
|
|
+ uploadResult = HttpTools.httpPostRequest(sendUrl, resourceByteData);
|
|
|
+ }catch (Exception e){
|
|
|
+ e.printStackTrace();
|
|
|
+ // 文件转移报错
|
|
|
+ moveErrorSet.add(new TransErrDTO(objId, key, "uploadResourceError:" + e.getMessage(), getImgUrl, sendUrl));
|
|
|
+ }
|
|
|
+
|
|
|
+ if(null == uploadResult || !uploadResult.contains(resp_success)) {
|
|
|
+ // 文件转移失败
|
|
|
+ moveErrorSet.add(new TransErrDTO(objId, key, "uploadResourceFailed:" + uploadResult, getImgUrl, sendUrl));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取上传资源Url
|
|
|
+ * @param key 资源key
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private static String buildUploadResourceUrl(String key) {
|
|
|
+ // 默认使用file_upload上传文件
|
|
|
+ String toImgApi = "file";
|
|
|
+ if("image".equals(SagaFileMoveApp.dto.imgToApiType.getValue())) {
|
|
|
+ toImgApi = "image";
|
|
|
}
|
|
|
|
|
|
- String sendUrl = dto.imgToUrl.getValue() + url_source_send;
|
|
|
+ String sendUrl = SagaFileMoveApp.dto.imgToUrl.getValue() + url_source_send;
|
|
|
sendUrl = sendUrl.replace("TYPE", toImgApi)
|
|
|
- .replace("SYSID", dto.imgToSysId.getValue())
|
|
|
- .replace("SEC", dto.imgToSecret.getValue())
|
|
|
+ .replace("SYSID", SagaFileMoveApp.dto.imgToSysId.getValue())
|
|
|
+ .replace("SEC", SagaFileMoveApp.dto.imgToSecret.getValue())
|
|
|
+ key;
|
|
|
|
|
|
+ return sendUrl;
|
|
|
+ }
|
|
|
|
|
|
- try {
|
|
|
- byte[] byteData = HttpTools.httpGetFile(getUrl);
|
|
|
- if(byteData != null) {
|
|
|
- if(byteData.length < 50 && ifNotExists(byteData)) {
|
|
|
- // 文件不存在
|
|
|
- noFileSet.add(new TransErrDTO(objId, key, "not exist", getUrl, ""));
|
|
|
- }else {
|
|
|
- String uploadResult = HttpTools.httpPostRequest(sendUrl, byteData);
|
|
|
- if(null == uploadResult || !uploadResult.contains(resp_success)) {
|
|
|
- // 文件转移失败
|
|
|
- moveErrorSet.add(new TransErrDTO(objId, key, "downloadSuccess uploadError", getUrl, sendUrl));
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }catch (Exception e){
|
|
|
- // 文件转移报错
|
|
|
- moveErrorSet.add(new TransErrDTO(objId, key, "serviceError:" + e.getMessage(), getUrl, sendUrl));
|
|
|
+ /**
|
|
|
+ * 构建获取资源的Url
|
|
|
+ * @param key 文件资源的key
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private static String buildGetResourceUrl(String key) {
|
|
|
+ // 下载资源使用的接口,默认使用image_get接口
|
|
|
+ String getImgApi = "image";
|
|
|
+
|
|
|
+ if("file".equals(SagaFileMoveApp.dto.imgFromApiType.getValue())) {
|
|
|
+ // UI指定使用file_get下载文件
|
|
|
+ getImgApi = "file";
|
|
|
}
|
|
|
+
|
|
|
+ // 获取资源的url
|
|
|
+ String getImgUrl = SagaFileMoveApp.dto.imgFromUrl.getValue() + url_source_get;
|
|
|
+ getImgUrl = getImgUrl.replace("TYPE", getImgApi)
|
|
|
+ .replace("SYSID", SagaFileMoveApp.dto.imgFromSysId.getValue());
|
|
|
+
|
|
|
+ getImgUrl = getImgUrl + key;
|
|
|
+
|
|
|
+ if(key.endsWith(".jsonz")) {
|
|
|
+ // 对于.jsonz文件,从file_get接口获取
|
|
|
+ getImgUrl = getImgUrl.replace("image_get","file_get");
|
|
|
+ }
|
|
|
+
|
|
|
+ return getImgUrl;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 从数据平台获取对象关联的资源key
|
|
|
- * @param app
|
|
|
* @return
|
|
|
*/
|
|
|
- private Map<String, String> requestSourceKey(SagaFileMoveApp app) {
|
|
|
+ public static ResourceDTO requestSourceKey() {
|
|
|
+ ResourceDTO result = new ResourceDTO();
|
|
|
Map<String, String> obj_key = new HashMap<>();
|
|
|
+ result.obj_key = obj_key;
|
|
|
|
|
|
- app.showTipsInfo("查询数据平台对象,获取文件资源key...");
|
|
|
+ log.info("查询数据平台对象,获取文件资源key...");
|
|
|
|
|
|
- String reqUrl = dto.dpf.getValue() + url_obj_query;
|
|
|
- reqUrl = reqUrl.replace("PJID", dto.pjId.getValue()).replace("SEC", dto.pjSecret.getValue());
|
|
|
+ String reqUrl = SagaFileMoveApp.dto.dpf.getValue() + url_obj_query;
|
|
|
+ reqUrl = reqUrl.replace("PJID", SagaFileMoveApp.dto.pjId.getValue()).replace("SEC", SagaFileMoveApp.dto.pjSecret.getValue());
|
|
|
|
|
|
JSONObject paramObj = new JSONObject();
|
|
|
|
|
|
JSONObject criteria = new JSONObject();
|
|
|
JSONArray typeArray = new JSONArray();
|
|
|
- typeArray.add(dto.objType.getValue());
|
|
|
+ typeArray.add(SagaFileMoveApp.dto.objType.getValue());
|
|
|
criteria.put("type", typeArray);
|
|
|
|
|
|
JSONArray returnInfos = new JSONArray();
|
|
|
- returnInfos.add(dto.objInfoCode.getValue());
|
|
|
+ returnInfos.add(SagaFileMoveApp.dto.objInfoCode.getValue());
|
|
|
|
|
|
paramObj.put("customInfo", true);
|
|
|
paramObj.put("criteria", criteria);
|
|
@@ -209,20 +215,22 @@ public class SagaFileMoveService {
|
|
|
String resp = null;
|
|
|
try{
|
|
|
resp = HttpTools.httpPostJson(reqUrl, paramObj);
|
|
|
- app.showTipsInfo("查询数据平台对象完成。");
|
|
|
}catch (Exception e){
|
|
|
- app.showTipsError("请求数据平台出错:" + e.getMessage());
|
|
|
- app.writeErrToLogFile("url:" + reqUrl + ", param:" + paramObj + ", result:" + resp + "errMsg:" + e.getMessage());
|
|
|
+ e.printStackTrace();
|
|
|
+ log.error("请求数据平台出错!url:" + reqUrl + ", param:" + paramObj + ", result:" + resp + "errMsg:" + e.getMessage());
|
|
|
+ result.errorMsg = "请求数据平台出错!";
|
|
|
+ return result;
|
|
|
}
|
|
|
|
|
|
if(null != resp) {
|
|
|
- app.showTipsInfo("查询结果转为Json对象...");
|
|
|
-
|
|
|
JSONObject respJson = null;
|
|
|
try {
|
|
|
respJson = JsonTools.strToJsonObj(resp);
|
|
|
}catch (Exception e) {
|
|
|
- app.showTipsError("String转Json对象失败:" + e.getMessage());
|
|
|
+ e.printStackTrace();
|
|
|
+ log.error("String转Json对象失败:" + e.getMessage());
|
|
|
+ result.errorMsg = "String转Json对象失败:" + e.getMessage();
|
|
|
+ return result;
|
|
|
}
|
|
|
|
|
|
if(respJson != null && resp_success.equals(respJson.getString("Result"))) {
|
|
@@ -235,38 +243,40 @@ public class SagaFileMoveService {
|
|
|
JSONObject infoJson = content.getJSONObject(i).getJSONObject("infos");
|
|
|
|
|
|
if(null != infoJson) {
|
|
|
- sourceKey = infoJson.getString(dto.objInfoCode.getValue());
|
|
|
+ sourceKey = infoJson.getString(SagaFileMoveApp.dto.objInfoCode.getValue());
|
|
|
}
|
|
|
obj_key.put(objId, sourceKey);
|
|
|
}
|
|
|
+
|
|
|
}else {
|
|
|
- app.showTipsWarn("结束。查询到数据平台对象数量为0。");
|
|
|
+ log.info("结束。查询到数据平台对象数量为0。");
|
|
|
}
|
|
|
}else {
|
|
|
- app.showTipsError("请求数据平台数据出错:" + respJson.getString("ResultMsg"));
|
|
|
+ result.errorMsg = "请求数据平台出错:" + resp;
|
|
|
+ log.error("请求数据平台出错:" + resp);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- return obj_key;
|
|
|
+ return result;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 校验文件服务From是否可访问
|
|
|
* @return
|
|
|
*/
|
|
|
- public boolean validParamImgFromUrl() {
|
|
|
- return fileGetTest(dto.imgFromUrl.getValue(), dto.imgFromSysId.getValue());
|
|
|
+ public static boolean validParamImgFromUrl() {
|
|
|
+ return fileGetTest(SagaFileMoveApp.dto.imgFromUrl.getValue(), SagaFileMoveApp.dto.imgFromSysId.getValue());
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 校验文件服务From是否可访问
|
|
|
* @return
|
|
|
*/
|
|
|
- public boolean validParamImgToUrl() {
|
|
|
- return fileGetTest(dto.imgToUrl.getValue(), dto.imgToSysId.getValue());
|
|
|
+ public static boolean validParamImgToUrl() {
|
|
|
+ return fileGetTest(SagaFileMoveApp.dto.imgToUrl.getValue(), SagaFileMoveApp.dto.imgToSysId.getValue());
|
|
|
}
|
|
|
|
|
|
- private boolean fileGetTest(String base, String sysId) {
|
|
|
+ private static boolean fileGetTest(String base, String sysId) {
|
|
|
boolean result = false;
|
|
|
String url = base + url_source_get.replace("TYPE", "file").replace("SYSID", sysId) + testKey;
|
|
|
try {
|
|
@@ -284,7 +294,7 @@ public class SagaFileMoveService {
|
|
|
* @param byteData
|
|
|
* @return true-包含;false-不包含
|
|
|
*/
|
|
|
- private boolean ifNotExists(byte[] byteData) {
|
|
|
+ private static boolean ifNotExists(byte[] byteData) {
|
|
|
String s = new String(byteData);
|
|
|
System.out.println(s);
|
|
|
return s.contains("not existed");
|