|
@@ -57,7 +57,7 @@ public class DataFormat {
|
|
|
* @param source 原已编码数据
|
|
|
* @return 原始数据
|
|
|
*/
|
|
|
- public static String base64DecoderToString(String source){
|
|
|
+ public static String base64DecoderToString(String source) {
|
|
|
return new String(Base64.getDecoder().decode(source));
|
|
|
}
|
|
|
|
|
@@ -67,7 +67,7 @@ public class DataFormat {
|
|
|
* @param source 原数据
|
|
|
* @return 编码后数据
|
|
|
*/
|
|
|
- public static String base64EncoderToString(String source){
|
|
|
+ public static String base64EncoderToString(String source) {
|
|
|
return Base64.getEncoder().encodeToString(source.getBytes());
|
|
|
}
|
|
|
|
|
@@ -92,18 +92,6 @@ public class DataFormat {
|
|
|
return tempIndex == str.length() ? str : str.substring(0, tempIndex);
|
|
|
}
|
|
|
|
|
|
-// public static List<Map<String, Object>> typeBToMapList(List<String> typeList, String dataObjectId, Map<String, String> transMaps) {
|
|
|
-// if (Objects.isNull(typeList) || typeList.isEmpty()) return new ArrayList<>() {{
|
|
|
-// add(processSuccess(null));
|
|
|
-// }};
|
|
|
-// List<Map<String, Object>> returnmap = new ArrayList<>();
|
|
|
-// for (String typeStr : typeList) {
|
|
|
-// returnmap.add(typeBToMap(typeStr, dataObjectId, transMaps));
|
|
|
-// }
|
|
|
-// return returnmap;
|
|
|
-// }
|
|
|
-
|
|
|
-
|
|
|
public static Map<String, Object> typeBToMap(String typeStr, String dataObjectId, Map<String, String> transMaps) {
|
|
|
try {
|
|
|
if (Objects.isNull(typeStr)) {
|
|
@@ -256,46 +244,59 @@ public class DataFormat {
|
|
|
containerList.add(containerMap);//添加到容器数组中
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
//处理容器以及行李数组
|
|
|
if (containerList.size() == 0) {//为0时添加空MAP,方便下面的循环
|
|
|
containerList.add(new HashMap<>());
|
|
|
}
|
|
|
if (containerList.size() > 2) {//最多两个容器,否则是异常数据,整个报文都作废
|
|
|
- signDataMap.put("errMessage", 1);//只需要标记错误,因为已经有原始报文存在
|
|
|
- returnDataList.add(signDataMap);//添加到返回数组中
|
|
|
- } else {
|
|
|
- for (int containerNum = 0; containerNum < containerList.size(); containerNum++) {//循环容器数组
|
|
|
- HashMap<String, Object> tempDataMapClone = MapTools.clone(signDataMap);
|
|
|
- HashMap<String, Object> tempDataMap = Objects.isNull(tempDataMapClone) ? new HashMap<>() : tempDataMapClone; //深拷贝添加到单条报文的MAP中
|
|
|
- Map<String, Object> containerMap = containerList.get(containerNum);//获取当前容器数据
|
|
|
- if (containerNum == 0 && containerList.size() > 1) {//如果当前是第一条且容器数组大于代表第一个容器是卸下,第二个容器是
|
|
|
- containerMap.put("containerState", "OFF");//添加容器状态为OFF,代表卸下
|
|
|
- }
|
|
|
- if (!containerMap.isEmpty()) {//如果当前容器数据不是空
|
|
|
- tempDataMap.putAll(containerMap);//深拷贝添加到单条报文的MAP中
|
|
|
- }
|
|
|
- if (luggageList.size() == 0) {
|
|
|
- returnDataList.add(specialHandler(tempDataMap, dataObjectId)); //只有容器没有行李:整箱操作
|
|
|
- } else {
|
|
|
- for (Map<String, Object> tempLuggageMap : luggageList) {//循环行李数组
|
|
|
- if (containerNum == 0 && containerList.size() > 1 && tempLuggageMap.get("luggageState") == null) {//只添加.B行李
|
|
|
- continue;
|
|
|
- }
|
|
|
- if (containerNum != 0 && containerList.size() > 1 && tempLuggageMap.get("luggageState") != null) {//只添加.N行李
|
|
|
- continue;
|
|
|
- }
|
|
|
- HashMap<String, Object> objectObjectHashMap = new HashMap<>();
|
|
|
- objectObjectHashMap.putAll(tempDataMap);
|
|
|
- objectObjectHashMap.putAll(tempLuggageMap);
|
|
|
-// tempDataMap.putAll(tempLuggageMap);//添加行李信息
|
|
|
- returnDataList.add(specialHandler(objectObjectHashMap, dataObjectId));//添加到返回数组中
|
|
|
+ signDataMap.put("errMessage", "容器数量超规 " + containerList.size());//只需要标记错误,因为已经有原始报文存在
|
|
|
+ Map<String, Object> containerMap = containerList.get(0);
|
|
|
+ containerList = new ArrayList<>() {{
|
|
|
+ add(containerMap);
|
|
|
+ }};
|
|
|
+// returnDataList.add(signDataMap);//添加到返回数组中
|
|
|
+ }
|
|
|
+ for (int containerNum = 0; containerNum < containerList.size(); containerNum++) {//循环容器数组
|
|
|
+ HashMap<String, Object> tempDataMapClone = MapTools.clone(signDataMap);
|
|
|
+ HashMap<String, Object> tempDataMap = Objects.isNull(tempDataMapClone) ? new HashMap<>() : tempDataMapClone; //深拷贝添加到单条报文的MAP中
|
|
|
+ Map<String, Object> containerMap = containerList.get(containerNum);//获取当前容器数据
|
|
|
+ if (containerNum == 0 && containerList.size() > 1) {//如果当前是第一条且容器数组大于代表第一个容器是卸下,第二个容器是
|
|
|
+ containerMap.put("containerState", "OFF");//添加容器状态为OFF,代表卸下
|
|
|
+ }
|
|
|
+ if (!containerMap.isEmpty()) {//如果当前容器数据不是空
|
|
|
+ tempDataMap.putAll(containerMap);//深拷贝添加到单条报文的MAP中
|
|
|
+ }
|
|
|
+ tempDataMap.values().removeAll(Collections.singleton(null));
|
|
|
+ tempDataMap.values().removeAll(Collections.singleton(""));
|
|
|
+ if (luggageList.size() == 0) {
|
|
|
+ returnDataList.add(specialHandler(tempDataMap, dataObjectId)); //只有容器没有行李:整箱操作
|
|
|
+ } else {
|
|
|
+ for (Map<String, Object> tempLuggageMap : luggageList) {//循环行李数组
|
|
|
+ if (containerNum == 0 && containerList.size() > 1 && tempLuggageMap.get("luggageState") == null) {//只添加.B行李
|
|
|
+ continue;
|
|
|
}
|
|
|
+ if (containerNum != 0 && containerList.size() > 1 && tempLuggageMap.get("luggageState") != null) {//只添加.N行李
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ HashMap<String, Object> objectObjectHashMap = new HashMap<>();
|
|
|
+ objectObjectHashMap.putAll(tempDataMap);
|
|
|
+ objectObjectHashMap.putAll(tempLuggageMap);
|
|
|
+// tempDataMap.putAll(tempLuggageMap);//添加行李信息
|
|
|
+ returnDataList.add(specialHandler(objectObjectHashMap, dataObjectId));//添加到返回数组中
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ if (returnDataList.size() == 0) {
|
|
|
+ HashMap<String, Object> errorMap = new HashMap<>();
|
|
|
+ errorMap.put("dataObjectId", dataObjectId);
|
|
|
+ errorMap.put("errMessage", "报文数据格式错误");
|
|
|
+ errorMap.put("sourceData", typeStr);
|
|
|
+ returnDataList.add(errorMap);
|
|
|
+ }
|
|
|
return processSuccess(returnDataList);
|
|
|
} catch (Exception e) {
|
|
|
return processFail(LogUtils.getException(e));
|
|
@@ -326,14 +327,22 @@ public class DataFormat {
|
|
|
|
|
|
String carrierFlights = inMap.containsKey("flightNo") ? "flightNo" : (inMap.containsKey("inflightNo") ? "inflightNo" : null);
|
|
|
if (MapTools.isNotBlank(carrierFlights)) {
|
|
|
- inMap.put("carrierFlights", inMap.get(carrierFlights));
|
|
|
+ Object tempCarrierFlights= inMap.get(carrierFlights);
|
|
|
+ if (Objects.nonNull(tempCarrierFlights)){
|
|
|
+ carrierFlights = tempCarrierFlights.toString();
|
|
|
+ if (carrierFlights.substring(2).replaceAll("\\D+","").length()<4){
|
|
|
+ carrierFlights = carrierFlights.substring(0,2) + "0"+ carrierFlights.substring(2);
|
|
|
+ }
|
|
|
+ inMap.put("carrierFlights", carrierFlights);
|
|
|
+ }
|
|
|
+// inMap.put("carrierFlights", );
|
|
|
}
|
|
|
String carrierFlightsDate = inMap.containsKey("flightDate") ? "flightDate" : (inMap.containsKey("inflightDate") ? "inflightDate" : null);
|
|
|
if (MapTools.isNotBlank(carrierFlightsDate)) {
|
|
|
inMap.put("carrierFlightsDate", inMap.get(carrierFlightsDate));
|
|
|
}
|
|
|
|
|
|
- String readAddess = inMap.containsKey("location_code") ? "location_code" : (inMap.containsKey("checkInLocation") ? "checkInLocation" : inMap.containsKey("operationArea") ? "operationArea" : null);
|
|
|
+ String readAddess = inMap.containsKey("location_code") ? "location_code" : (inMap.containsKey("checkInLocation") ? "checkInLocation" : inMap.containsKey("operationArea") ? "operationArea" : (inMap.containsKey("location_describe")?"location_describe":null));
|
|
|
if (MapTools.isNotBlank(readAddess)) {
|
|
|
inMap.put("readAddess", inMap.get(readAddess));
|
|
|
}
|
|
@@ -414,7 +423,10 @@ public class DataFormat {
|
|
|
xml = (xml.contains("<?xml") ? "" : "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n").concat(xml);
|
|
|
Document doc = DocumentHelper.parseText(xml);
|
|
|
Element root = doc.getRootElement();
|
|
|
- return processSuccess(xmlToMap(root));
|
|
|
+ Map<String, Object> returnMap = xmlToMap(root);
|
|
|
+ returnMap.values().removeAll(Collections.singleton(null));
|
|
|
+ returnMap.values().removeAll(Collections.singleton(""));
|
|
|
+ return processSuccess(returnMap);
|
|
|
} catch (Exception e) {
|
|
|
return processFail("入参不是规则的xml :" + xml);
|
|
|
}
|