ShorePowerScheduler.java 62 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286
  1. package com.shcd.scheduling;
  2. import cn.hutool.http.HttpRequest;
  3. import cn.hutool.http.HttpUtil;
  4. import com.alibaba.fastjson.JSON;
  5. import com.alibaba.fastjson.JSONArray;
  6. import com.alibaba.fastjson.JSONObject;
  7. import com.alibaba.fastjson.serializer.SerializerFeature;
  8. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  9. import com.google.common.collect.Maps;
  10. import com.shanghaigeography.Util.DateUtils;
  11. import com.shanghaigeography.entity.ResultMsg;
  12. import com.shanghaigeography.eum.ResultState;
  13. import com.shcd.entity.ShorePowerBerthInfo;
  14. import com.shcd.entity.ShorePowerBerthInfoNew;
  15. import com.shcd.entity.ShorePowerBlberthmonthuse;
  16. import com.shcd.entity.ShorePowerChdevicefbo;
  17. import com.shcd.entity.ShorePowerConnRecordInfo;
  18. import com.shcd.entity.ShorePowerConnectorInfo;
  19. import com.shcd.entity.ShorePowerDeviceInfo;
  20. import com.shcd.entity.ShorePowerDeviceInfoNew;
  21. import com.shcd.entity.ShorePowerDeviceStatusInfo;
  22. import com.shcd.entity.ShorePowerPortInfo;
  23. import com.shcd.entity.ShorePowerPortInfoNew;
  24. import com.shcd.enums.GhjgPortThreeUrl;
  25. import com.shcd.service.*;
  26. import com.shcd.utils.PrintLogUtils;
  27. import com.shcd.utils.secret.Encodes;
  28. import com.xxl.job.core.biz.model.ReturnT;
  29. import com.xxl.job.core.handler.annotation.XxlJob;
  30. import java.nio.charset.StandardCharsets;
  31. import java.time.LocalDateTime;
  32. import java.time.format.DateTimeFormatter;
  33. import java.util.*;
  34. import java.util.concurrent.ExecutionException;
  35. import java.util.concurrent.ExecutorService;
  36. import java.util.concurrent.Executors;
  37. import javax.annotation.Resource;
  38. import lombok.extern.slf4j.Slf4j;
  39. import org.junit.jupiter.api.parallel.Execution;
  40. import org.springframework.beans.factory.annotation.Autowired;
  41. import org.springframework.beans.factory.annotation.Value;
  42. import org.springframework.scheduling.annotation.Scheduled;
  43. import org.springframework.stereotype.Component;
  44. import org.springframework.util.CollectionUtils;
  45. import org.springframework.web.bind.annotation.PostMapping;
  46. import org.springframework.web.bind.annotation.RequestBody;
  47. @Component
  48. @Slf4j
  49. public class ShorePowerScheduler {
  50. @Resource
  51. private IShorePowerDeviceInfoService deviceInfoService;
  52. @Resource
  53. private IShorePowerBerthInfoService berthInfoService;
  54. @Resource
  55. private IShorePowerPortInfoService portInfoService;
  56. @Resource
  57. private IShorePowerConnRecordInfoService connRecordInfoService;
  58. @Resource
  59. private IShorePowerDeviceStatusInfoService deviceStatusInfoService;
  60. @Resource
  61. ShorePowerBlberthmonthuseService shorePowerBlberthmonthuseService;
  62. @Resource
  63. ShorePowerChdevicefboService shorePowerChdevicefboService;
  64. @Resource
  65. IShorePowerPortInfoNewService portInfoNewService;
  66. @Resource
  67. IShorePowerBerthInfoNewService berthInfoNewService;
  68. @Resource
  69. IShorePowerDeviceInfoNewService deviceInfoNewService;
  70. @Resource
  71. IShorePowerConnectorInfoService shorePowerConnectorInfoService;
  72. @Value("${queryConnRecordInfo}")
  73. String queryConnRecordInfo;
  74. @Value("${shorePower}")
  75. String shorePower;
  76. ExecutorService service = Executors.newFixedThreadPool(2);
  77. @Scheduled(cron = "0 0 0/1 * * ? ")
  78. // @Scheduled(cron = "0 0/1 * * * ? ")
  79. public void executeShorePowerScheduler() {
  80. try {
  81. service.execute(this::getConnRecordInfo);
  82. service.execute(this::getUserBerthRecordInfo);
  83. service.execute(this::getPortInfoNew);
  84. service.execute(this::getBerthInfoNew);
  85. service.execute(this::getDeviceInfoNew);
  86. service.execute(this::getDeviceConnectorInfo);
  87. service.execute(this::getConnectorStatusInfo);
  88. } catch (Exception e) {
  89. log.error("执行出错,原因=====>{}", e.getMessage());
  90. }
  91. }
  92. public String getToken() {
  93. String result = null;
  94. String token = null;
  95. try {
  96. JSONObject jsonObject = new JSONObject();
  97. jsonObject.put("Sig", "59962D299728C732F772AD9CDE6A9456");
  98. jsonObject.put("PlatformID", "425009768");
  99. jsonObject.put("Data","/J9njgV+VvzgibMjaU4c0HH+Zbr9n5DRkJkfxLy0Z8agH7kzqKIbtm97MilBq0XaMbHfhxW+Vwd/JqfFVnvSbA==");
  100. jsonObject.put("TimeStamp", "16880151424323");
  101. jsonObject.put("Seq", "0001");
  102. result = HttpUtil.createPost(GhjgPortThreeUrl.PROXY_SHORE_POWER.getUrl())
  103. // result = HttpUtil.createPost(GhjgPortThreeUrl.SHORE_POWER.getUrl())
  104. .setConnectionTimeout(3600000)
  105. .setReadTimeout(3600000)
  106. .header("Content-Type", "application/json")
  107. .body(jsonObject.toString())
  108. .charset("UTF-8").execute().body();
  109. JSONObject resultJsonObject = JSONObject.parseObject(result);
  110. String returnData = (String) resultJsonObject.get("Data");
  111. token = new String(Encodes.aesDecrypt(
  112. Encodes.decodeBase64(returnData),
  113. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  114. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  115. log.info("岸电数据对接token解码后的结果为:{}", JSONObject.toJSONString(token));
  116. } catch (Exception e) {
  117. log.error("岸电数据对接token接口调用失败! ===>原因:{}",
  118. JSONObject.toJSONString(e.getMessage()));
  119. return new ResultMsg<String>().setCode(ResultState.ERROR).setMsg("调用失败")
  120. .setData(JSONObject.toJSONString(e.getMessage())).toJSON();
  121. }
  122. return new ResultMsg<String>().setCode(ResultState.SUCCESS).setMsg("调用成功")
  123. .setData(JSON.toJSONString(token)).toJSON();
  124. }
  125. public String getConnectorStatusInfo() {
  126. try {
  127. // String portId = (String) map.get("portId");
  128. // String deviceId = (String) map.get("deviceId");
  129. // String platformId = (String) map.get("platformId");
  130. // String operatorId = (String) map.get("operatorId");
  131. // String page = (String) map.get("current");
  132. // String limit = (String) map.get("size");
  133. String portId = "";
  134. String deviceId = "";
  135. String platformId = "";
  136. String operatorId = "";
  137. String page = "1";
  138. String limit = "500";
  139. String result = executeConnectorStatusInfoUrl(portId, deviceId, platformId, operatorId, page,
  140. limit);
  141. log.info("岸电设备接口状态信息查询接口调用成功! ===>返回结果:{}",
  142. JSONObject.toJSONString(result));
  143. JSONObject jsonObject = JSONObject.parseObject(result);
  144. if (0 == ((int) jsonObject.get("Ret"))) {
  145. String lightData = (String) jsonObject.get("Data");
  146. String data = new String(Encodes.aesDecrypt(
  147. Encodes.decodeBase64(lightData),
  148. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  149. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  150. log.info("==============> 业务数据:{}", JSONObject.toJSONString(data));
  151. JSONObject dataJsonObject = (JSONObject) JSONObject.parse(data.toLowerCase());
  152. JSONArray records = (JSONArray) dataJsonObject.get("records");
  153. log.info("records ====>{}", records);
  154. String arrayJSON = JSONObject.toJSONString(records, SerializerFeature.WriteClassName);
  155. List<JSONObject> JSONObjectList = JSONObject.parseArray(arrayJSON,
  156. JSONObject.class);
  157. List<ShorePowerDeviceStatusInfo> deviceStatusInfos = new ArrayList<>();
  158. JSONObjectList.forEach(x -> {
  159. ShorePowerDeviceStatusInfo deviceStatusInfo = JSONObject.parseObject(JSON.toJSONString(x),
  160. ShorePowerDeviceStatusInfo.class);
  161. deviceStatusInfos.add(deviceStatusInfo);
  162. });
  163. log.info("==============> 业务转换为港航数据:{}",
  164. JSONObject.toJSONString(deviceStatusInfos));
  165. // deviceStatusInfos.forEach(x -> deviceStatusInfoService.saveOrUpdate(x));
  166. // deviceStatusInfoService.saveOrUpdateBatch(deviceStatusInfos);
  167. for (ShorePowerDeviceStatusInfo deviceStatusInfo : deviceStatusInfos) {
  168. deviceStatusInfoService.saveOrUpdate(deviceStatusInfo);
  169. }
  170. log.info("操作完成,共有{}条数据", deviceStatusInfos.size());
  171. // deviceStatusInfoService.saveBatch(deviceStatusInfos);
  172. }
  173. } catch (Exception e) {
  174. e.printStackTrace();
  175. }
  176. return new ResultMsg<String>().setCode(ResultState.SUCCESS).setMsg("调用成功")
  177. .setData(JSON.toJSONString(null)).toJSON();
  178. }
  179. public void getDeviceConnectorInfo() {
  180. try {
  181. // String portId = (String) map.get("portId");
  182. // String platformId = (String) map.get("platformId");
  183. // String operatorId = (String) map.get("operatorId");
  184. // String deviceId = (String) map.get("deviceId");
  185. // String page = (String) map.get("current");
  186. // String limit = (String) map.get("size");
  187. String portId = "";
  188. String platformId = "";
  189. String operatorId = "";
  190. String deviceId = "";
  191. String page = "1";
  192. String limit = "500";
  193. String result = executeDeviceConnectorInfoUrl(portId, platformId, operatorId, deviceId, page,
  194. limit);
  195. log.info("岸电设备接口信息查询接口调用成功! ===>返回结果:{}",
  196. JSONObject.toJSONString(result));
  197. JSONObject jsonObject = JSONObject.parseObject(result);
  198. if (0 == ((int) jsonObject.get("Ret"))) {
  199. String lightData = (String) jsonObject.get("Data");
  200. String data = new String(Encodes.aesDecrypt(
  201. Encodes.decodeBase64(lightData),
  202. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  203. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  204. log.info("==============> 业务数据:{}", JSONObject.toJSONString(data));
  205. JSONObject dataJsonObject = (JSONObject) JSONObject.parse(data.toLowerCase());
  206. JSONArray records = (JSONArray) dataJsonObject.get("records");
  207. log.info("records ====>{}", records);
  208. String arrayJSON = JSONObject.toJSONString(records, SerializerFeature.WriteClassName);
  209. List<JSONObject> JSONObjectList = JSONObject.parseArray(arrayJSON,
  210. JSONObject.class);
  211. List<ShorePowerConnectorInfo> shorePowerConnectorInfos = new ArrayList<>();
  212. JSONObjectList.forEach(x -> {
  213. ShorePowerConnectorInfo connRecordInfo = JSONObject.parseObject(JSON.toJSONString(x),
  214. ShorePowerConnectorInfo.class);
  215. connRecordInfo.setCurrent1(Optional.of(connRecordInfo.getCurrent()).orElse(null));
  216. shorePowerConnectorInfos.add(connRecordInfo);
  217. });
  218. log.info("==============> 业务转换为港航数据:{}",
  219. JSONObject.toJSONString(shorePowerConnectorInfos));
  220. for (ShorePowerConnectorInfo shorePowerConnectorInfo : shorePowerConnectorInfos) {
  221. shorePowerConnectorInfoService.saveOrUpdate(shorePowerConnectorInfo);
  222. }
  223. log.info("操作完成,共有{}条数据", shorePowerConnectorInfos.size());
  224. }
  225. } catch (Exception e) {
  226. e.printStackTrace();
  227. }
  228. }
  229. private String executeDeviceConnectorInfoUrl(String portId, String platformId, String operatorId,
  230. String deviceId, String page,
  231. String limit) {
  232. JSONObject tokenJsonObject = JSONObject.parseObject(getToken());
  233. JSONObject tokenData = JSONObject.parseObject((String) tokenJsonObject.get("data"));
  234. String accessToken = (String) tokenData.get("AccessToken");
  235. String platformID = (String) tokenData.get("PlatformID");
  236. JSONObject data = new JSONObject();
  237. JSONObject berthInfo = new JSONObject();
  238. berthInfo.put("portId", portId);
  239. berthInfo.put("platformId", platformId);
  240. berthInfo.put("operatorId", operatorId);
  241. berthInfo.put("deviceId", deviceId);
  242. berthInfo.put("page", page);
  243. berthInfo.put("limit", limit);
  244. LocalDateTime now = LocalDateTime.now();
  245. LocalDateTime oneHourAgo = now.minusHours(24);
  246. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");
  247. berthInfo.put("updateDate", formatter.format(oneHourAgo));
  248. data.put("connectorInfo", berthInfo);
  249. JSONObject deviceRequest = new JSONObject();
  250. deviceRequest.put("PlatformID", platformID);
  251. deviceRequest.put("TimeStamp", String.valueOf(System.currentTimeMillis()));
  252. deviceRequest.put("Seq", "0001");
  253. deviceRequest.put("Data", data);
  254. JSONObject sss = (JSONObject) deviceRequest.get("Data");
  255. String mvData = Encodes.encodeBase64(
  256. Encodes.aesEncrypt(sss.toString().getBytes(StandardCharsets.UTF_8),
  257. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  258. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()));
  259. deviceRequest.put("Data", mvData);
  260. Map<String, String> param = Maps.newLinkedHashMap();
  261. param.put("PlatformID", deviceRequest.getString("PlatformID"));
  262. param.put("Data", deviceRequest.getString("Data"));
  263. param.put("TimeStamp", deviceRequest.getString("TimeStamp"));
  264. param.put("Seq", deviceRequest.getString("Seq"));
  265. String reqSign = Encodes.sign(param, GhjgPortThreeUrl.TOKEN_KEY.getUrl());
  266. param.put("Sig", reqSign);
  267. log.info("=====> 入参:{}", JSONObject.toJSONString(param));
  268. HttpRequest post = HttpUtil.createPost(GhjgPortThreeUrl.PROXY_QUERY_CONNECTOR_INFO.getUrl());
  269. Map<String, String> headers = new HashMap<>();
  270. headers.put("Authorization", "Bearer" + " " + accessToken);
  271. headers.put("Content-Type", "application/json;charset=utf-8");
  272. post.addHeaders(headers);
  273. return post.body(JSONObject.toJSONString(param)).setReadTimeout(3600000).execute().body();
  274. }
  275. public void getDeviceInfoNew() {
  276. try {
  277. // String portId = (String) map.get("portId");
  278. // String platformId = (String) map.get("platformId");
  279. // String operatorId = (String) map.get("operatorId");
  280. // String deviceId = (String) map.get("deviceId");
  281. // String page = (String) map.get("current");
  282. // String limit = (String) map.get("size");
  283. String portId = "";
  284. String platformId = "";
  285. String operatorId = "";
  286. String deviceId = "";
  287. String page = "1";
  288. String limit = "500";
  289. String result = executeDeviceInfoNewUrl(portId, platformId, operatorId, deviceId, page,
  290. limit);
  291. log.info("长航 - 设备信息设备查询接口调用成功! ===>返回结果:{}",
  292. JSONObject.toJSONString(result));
  293. JSONObject jsonObject = JSONObject.parseObject(result);
  294. if (0 == ((int) jsonObject.get("Ret"))) {
  295. String lightData = (String) jsonObject.get("Data");
  296. String data = new String(Encodes.aesDecrypt(
  297. Encodes.decodeBase64(lightData),
  298. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  299. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  300. log.info("==============> 业务数据:{}", JSONObject.toJSONString(data).toLowerCase());
  301. JSONObject dataJsonObject = (JSONObject) JSONObject.parse(data.toLowerCase());
  302. JSONArray records = (JSONArray) dataJsonObject.get("records");
  303. log.info("records ====>{}", records);
  304. String arrayJSON = JSONObject.toJSONString(records, SerializerFeature.WriteClassName);
  305. List<JSONObject> JSONObjectList = JSONObject.parseArray(arrayJSON,
  306. JSONObject.class);
  307. List<ShorePowerDeviceInfoNew> deviceInfoList = new ArrayList<>();
  308. JSONObjectList.forEach(x -> {
  309. ShorePowerDeviceInfoNew deviceInfo = JSONObject.parseObject(JSON.toJSONString(x),
  310. ShorePowerDeviceInfoNew.class);
  311. deviceInfoList.add(deviceInfo);
  312. });
  313. log.info("==============> 业务转换为港航数据:{}",
  314. JSONObject.toJSONString(deviceInfoList));
  315. deviceInfoList.forEach(x -> deviceInfoNewService.saveOrUpdate(x));
  316. log.info("操作完成,共有{}条数据", deviceInfoList.size());
  317. }
  318. } catch (Exception e) {
  319. e.printStackTrace();
  320. }
  321. }
  322. private String executeDeviceInfoNewUrl(String portId, String platformId, String operatorId,
  323. String deviceId, String page, String limit) {
  324. JSONObject tokenJsonObject = JSONObject.parseObject(getToken());
  325. JSONObject tokenData = JSONObject.parseObject((String) tokenJsonObject.get("data"));
  326. String accessToken = (String) tokenData.get("AccessToken");
  327. String platformID = (String) tokenData.get("PlatformID");
  328. JSONObject data = new JSONObject();
  329. JSONObject berthInfo = new JSONObject();
  330. berthInfo.put("portId", portId);
  331. berthInfo.put("platformId", platformId);
  332. berthInfo.put("operatorId", operatorId);
  333. berthInfo.put("deviceId", deviceId);
  334. berthInfo.put("page", page);
  335. berthInfo.put("limit", limit);
  336. LocalDateTime now = LocalDateTime.now();
  337. LocalDateTime oneHourAgo = now.minusHours(24);
  338. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");
  339. berthInfo.put("updateDate", formatter.format(oneHourAgo));
  340. data.put("deviceInfo", berthInfo);
  341. JSONObject deviceRequest = new JSONObject();
  342. deviceRequest.put("PlatformID", platformID);
  343. deviceRequest.put("TimeStamp", String.valueOf(System.currentTimeMillis()));
  344. deviceRequest.put("Seq", "0001");
  345. deviceRequest.put("Data", data);
  346. JSONObject sss = (JSONObject) deviceRequest.get("Data");
  347. String mvData = Encodes.encodeBase64(
  348. Encodes.aesEncrypt(sss.toString().getBytes(StandardCharsets.UTF_8),
  349. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  350. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()));
  351. deviceRequest.put("Data", mvData);
  352. Map<String, String> param = Maps.newLinkedHashMap();
  353. param.put("PlatformID", deviceRequest.getString("PlatformID"));
  354. param.put("Data", deviceRequest.getString("Data"));
  355. param.put("TimeStamp", deviceRequest.getString("TimeStamp"));
  356. param.put("Seq", deviceRequest.getString("Seq"));
  357. String reqSign = Encodes.sign(param, GhjgPortThreeUrl.TOKEN_KEY.getUrl());
  358. param.put("Sig", reqSign);
  359. log.info("=====> 入参:{}", JSONObject.toJSONString(param));
  360. HttpRequest post = HttpUtil.createPost(GhjgPortThreeUrl.PROXY_DEVICE_INFO.getUrl());
  361. Map<String, String> headers = new HashMap<>();
  362. headers.put("Authorization", "Bearer" + " " + accessToken);
  363. headers.put("Content-Type", "application/json;charset=utf-8");
  364. post.addHeaders(headers);
  365. return post.body(JSONObject.toJSONString(param)).setReadTimeout(3600000).execute().body();
  366. }
  367. public void getBerthInfoNew() {
  368. try {
  369. // String portId = (String) map.get("portId");
  370. // String berthId = (String) map.get("berthId");
  371. // String berthName = (String) map.get("berthName");
  372. // String berthType = (String) map.get("berthType");
  373. // String page = (String) map.get("current");
  374. // String limit = (String) map.get("size");
  375. String portId = "";
  376. String berthId = "";
  377. String berthName = "";
  378. String berthType = "";
  379. String page = "1";
  380. String limit = "500";
  381. String result = executeBerthInfoNewUrl(portId, berthId, berthName, berthType, page, limit);
  382. log.info("泊位信息设备查询接口调用成功! ===>返回结果:{}",
  383. JSONObject.toJSONString(result));
  384. JSONObject jsonObject = JSONObject.parseObject(result);
  385. if (0 == ((int) jsonObject.get("Ret"))) {
  386. String lightData = (String) jsonObject.get("Data");
  387. String data = new String(Encodes.aesDecrypt(
  388. Encodes.decodeBase64(lightData),
  389. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  390. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  391. log.info("==============> 业务数据:{}", JSONObject.toJSONString(data).toLowerCase());
  392. JSONObject dataJsonObject = (JSONObject) JSONObject.parse(data.toLowerCase());
  393. JSONArray records = (JSONArray) dataJsonObject.get("records");
  394. log.info("records ====>{}", records);
  395. String arrayJSON = JSONObject.toJSONString(records, SerializerFeature.WriteClassName);
  396. List<JSONObject> JSONObjectList = JSONObject.parseArray(arrayJSON,
  397. JSONObject.class);
  398. List<ShorePowerBerthInfoNew> berthInfoList = new ArrayList<>();
  399. JSONObjectList.forEach(x -> {
  400. ShorePowerBerthInfoNew deviceInfo = JSONObject.parseObject(JSON.toJSONString(x),
  401. ShorePowerBerthInfoNew.class);
  402. berthInfoList.add(deviceInfo);
  403. });
  404. log.info("==============> 业务转换为港航数据:{}",
  405. JSONObject.toJSONString(berthInfoList));
  406. berthInfoList.forEach(x -> berthInfoNewService.saveOrUpdate(x));
  407. log.info("操作完成,共有{}条数据", berthInfoList.size());
  408. }
  409. } catch (Exception e) {
  410. e.printStackTrace();
  411. }
  412. }
  413. private String executeBerthInfoNewUrl(String portId, String berthId, String berthName,
  414. String berthType, String page, String limit) {
  415. JSONObject tokenJsonObject = JSONObject.parseObject(getToken());
  416. JSONObject tokenData = JSONObject.parseObject((String) tokenJsonObject.get("data"));
  417. String accessToken = (String) tokenData.get("AccessToken");
  418. String platformID = (String) tokenData.get("PlatformID");
  419. JSONObject data = new JSONObject();
  420. JSONObject berthInfo = new JSONObject();
  421. berthInfo.put("portId", portId);
  422. berthInfo.put("berthId", berthId);
  423. berthInfo.put("berthName", berthName);
  424. berthInfo.put("berthType", berthType);
  425. berthInfo.put("page", page);
  426. berthInfo.put("limit", limit);
  427. LocalDateTime now = LocalDateTime.now();
  428. LocalDateTime oneHourAgo = now.minusHours(24);
  429. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");
  430. berthInfo.put("updateDate", formatter.format(oneHourAgo));
  431. data.put("berthInfo", berthInfo);
  432. JSONObject deviceRequest = new JSONObject();
  433. deviceRequest.put("PlatformID", platformID);
  434. deviceRequest.put("TimeStamp", String.valueOf(System.currentTimeMillis()));
  435. deviceRequest.put("Seq", "0001");
  436. deviceRequest.put("Data", data);
  437. JSONObject sss = (JSONObject) deviceRequest.get("Data");
  438. String mvData = Encodes.encodeBase64(
  439. Encodes.aesEncrypt(sss.toString().getBytes(StandardCharsets.UTF_8),
  440. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  441. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()));
  442. deviceRequest.put("Data", mvData);
  443. Map<String, String> param = Maps.newLinkedHashMap();
  444. param.put("PlatformID", deviceRequest.getString("PlatformID"));
  445. param.put("Data", deviceRequest.getString("Data"));
  446. param.put("TimeStamp", deviceRequest.getString("TimeStamp"));
  447. param.put("Seq", deviceRequest.getString("Seq"));
  448. String reqSign = Encodes.sign(param, GhjgPortThreeUrl.TOKEN_KEY.getUrl());
  449. param.put("Sig", reqSign);
  450. log.info("=====> 入参:{}", JSONObject.toJSONString(param));
  451. HttpRequest post = HttpUtil.createPost(GhjgPortThreeUrl.PROXY_BERTH_INFO.getUrl());
  452. Map<String, String> headers = new HashMap<>();
  453. headers.put("Authorization", "Bearer" + " " + accessToken);
  454. headers.put("Content-Type", "application/json;charset=utf-8");
  455. post.addHeaders(headers);
  456. return post.body(JSONObject.toJSONString(param)).setReadTimeout(3600000).execute().body();
  457. }
  458. public void getPortInfoNew() {
  459. try {
  460. // String platformId = (String) map.get("platformId");
  461. // String portName = (String) map.get("portName");
  462. // String operatorName = (String) map.get("operatorName");
  463. // String enterprisesName = (String) map.get("enterprisesName");
  464. // String page = (String) map.get("current");
  465. // String limit = (String) map.get("size");
  466. String platformId = "";
  467. String portName = "";
  468. String operatorName = "";
  469. String enterprisesName = "";
  470. String page = "1";
  471. String limit = "500";
  472. String result = executePortInfoNewUrl(platformId, portName, operatorName, enterprisesName,
  473. page, limit);
  474. log.info("港口信息设备查询接口调用成功! ===>返回结果:{}",
  475. JSONObject.toJSONString(result));
  476. JSONObject jsonObject = JSONObject.parseObject(result);
  477. if (0 == ((int) jsonObject.get("Ret"))) {
  478. String lightData = (String) jsonObject.get("Data");
  479. String data = new String(Encodes.aesDecrypt(
  480. Encodes.decodeBase64(lightData),
  481. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  482. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  483. log.info("==============> 业务数据:{}", JSONObject.toJSONString(data));
  484. JSONObject dataJsonObject = (JSONObject) JSONObject.parse(data.toLowerCase());
  485. JSONArray records = (JSONArray) dataJsonObject.get("records");
  486. log.info("records ====>{}", records);
  487. String arrayJSON = JSONObject.toJSONString(records, SerializerFeature.WriteClassName);
  488. List<JSONObject> JSONObjectList = JSONObject.parseArray(arrayJSON,
  489. JSONObject.class);
  490. List<ShorePowerPortInfoNew> portInfoList = new ArrayList<>();
  491. JSONObjectList.forEach(x -> {
  492. ShorePowerPortInfoNew portInfo = JSONObject.parseObject(JSON.toJSONString(x),
  493. ShorePowerPortInfoNew.class);
  494. portInfoList.add(portInfo);
  495. });
  496. log.info("==============> 业务转换为港航数据:{}",
  497. JSONObject.toJSONString(portInfoList));
  498. for (ShorePowerPortInfoNew portInfo : portInfoList) {
  499. portInfoNewService.saveOrUpdate(portInfo);
  500. }
  501. log.info("操作完成,共有{}条数据", portInfoList.size());
  502. }
  503. } catch (Exception e) {
  504. e.printStackTrace();
  505. }
  506. }
  507. public void getUserBerthRecordInfo() {
  508. try {
  509. // String realName = (String) map.get("realName");
  510. // String page = (String) map.get("current");
  511. // String limit = (String) map.get("size");
  512. String realName = "";
  513. String page = "1";
  514. String limit = "500";
  515. String result = executeUserBerthRecordInfoUrl(realName, page, limit);
  516. log.info("3.12手动填报泊位(月度)信息查询 接口调用成功! ===>返回结果:{}",
  517. JSONObject.toJSONString(result));
  518. JSONObject jsonObject = JSONObject.parseObject(result);
  519. if (0 == ((int) jsonObject.get("Ret"))) {
  520. String lightData = (String) jsonObject.get("Data");
  521. String data = new String(Encodes.aesDecrypt(
  522. Encodes.decodeBase64(lightData),
  523. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  524. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  525. log.info("==============> 业务数据:{}", JSONObject.toJSONString(data).toLowerCase());
  526. JSONArray jsonArray = (JSONArray) JSONObject.parse(data.toLowerCase());
  527. log.info("records ====>{}", jsonArray);
  528. String arrayJSON = JSONObject.toJSONString(jsonArray, SerializerFeature.WriteClassName);
  529. List<JSONObject> JSONObjectList = JSONObject.parseArray(arrayJSON,
  530. JSONObject.class);
  531. List<ShorePowerChdevicefbo> chdevicefboList = new ArrayList<>();
  532. JSONObjectList.forEach(x -> {
  533. ShorePowerChdevicefbo chdevicefbo = JSONObject.parseObject(JSON.toJSONString(x),
  534. ShorePowerChdevicefbo.class);
  535. chdevicefboList.add(chdevicefbo);
  536. });
  537. log.info("==============> 业务转换为港航数据:{}",
  538. JSONObject.toJSONString(chdevicefboList));
  539. List<ShorePowerBlberthmonthuse> subList = new ArrayList<>();
  540. chdevicefboList.forEach(x -> {
  541. log.info("==============> 泊位本月使用情况数据:{}",
  542. JSONObject.toJSONString(x.getUseMonthList()));
  543. if (!CollectionUtils.isEmpty(x.getUseMonthList())) {
  544. subList.addAll(x.getUseMonthList());
  545. }
  546. });
  547. chdevicefboList.forEach(x -> shorePowerChdevicefboService.saveOrUpdate(x));
  548. subList.forEach(x -> shorePowerBlberthmonthuseService.saveOrUpdate(x));
  549. log.info("操作完成,共有{}条数据,其中子集合的数据有:{}条", chdevicefboList.size(),
  550. subList.size());
  551. }
  552. } catch (Exception e) {
  553. e.printStackTrace();
  554. }
  555. }
  556. public void getConnRecordInfo() {
  557. try {
  558. String portId = "";
  559. String deviceId = "";
  560. String berthId = "";
  561. String page = "1";
  562. String limit = "500";
  563. String startTime = "";
  564. String endTime = "";
  565. // 查询数据库中最新modifyTime,全部增量数据
  566. startTime = connRecordInfoService.getMaxModifyTime();
  567. endTime = DateUtils.dateToString(new Date(),DateUtils.DATE_FORMAT_19);
  568. // 默认按照500分页查询,根据返回的total总数判断是否需要继续分页查询
  569. String result = executeConnRecordInfoUrl(portId, deviceId, berthId, page, limit, startTime, endTime);
  570. log.info("连船记录信息查询查询接口调用成功! ===>返回结果:{}",
  571. JSONObject.toJSONString(result));
  572. Integer total = getTotal(result);
  573. // total > limit 继续分页调用,else 保存数据
  574. if(total > Integer.parseInt(limit) * Integer.parseInt(page)){
  575. Integer maxPageSize = 0;
  576. if(total%Integer.parseInt(limit) == 0){
  577. maxPageSize = total/Integer.parseInt(limit);
  578. }else{
  579. maxPageSize = total/Integer.parseInt(limit) + 1;
  580. }
  581. while (maxPageSize >= Integer.parseInt(page)){
  582. String res = executeConnRecordInfoUrl(portId, deviceId, berthId, page, limit, startTime, endTime);
  583. saveConnRecordInfos(res);
  584. page = String.valueOf(Integer.parseInt(page) + 1);
  585. }
  586. }else{
  587. saveConnRecordInfos(result);
  588. }
  589. } catch (Exception e) {
  590. e.printStackTrace();
  591. }
  592. }
  593. /**
  594. * 获取总条数
  595. * @param result
  596. * @return
  597. */
  598. public Integer getTotal(String result) {
  599. Integer total = 0;
  600. try{
  601. JSONObject jsonObject = JSONObject.parseObject(result);
  602. if (0 == ((int) jsonObject.get("Ret"))) {
  603. String lightData = (String) jsonObject.get("Data");
  604. String data = new String(Encodes.aesDecrypt(
  605. Encodes.decodeBase64(lightData),
  606. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  607. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  608. JSONObject dataJsonObject = (JSONObject) JSONObject.parse(data.toLowerCase());
  609. total = (Integer) dataJsonObject.get("total");
  610. }
  611. }catch (Exception e){
  612. PrintLogUtils.printErrorLogInfo(e,"getTotal异常:");
  613. }
  614. return total;
  615. }
  616. public boolean saveConnRecordInfos(String result){
  617. boolean flag = false;
  618. try{
  619. JSONObject jsonObject = JSONObject.parseObject(result);
  620. if (0 == ((int) jsonObject.get("Ret"))) {
  621. String lightData = (String) jsonObject.get("Data");
  622. String data = new String(Encodes.aesDecrypt(
  623. Encodes.decodeBase64(lightData),
  624. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  625. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  626. log.info("==============> 业务数据:{}", JSONObject.toJSONString(data));
  627. JSONObject dataJsonObject = (JSONObject) JSONObject.parse(data.toLowerCase());
  628. JSONArray records = (JSONArray) dataJsonObject.get("records");
  629. log.info("records ====>{}", records);
  630. String arrayJSON = JSONObject.toJSONString(records, SerializerFeature.WriteClassName);
  631. List<JSONObject> JSONObjectList = JSONObject.parseArray(arrayJSON,
  632. JSONObject.class);
  633. List<ShorePowerConnRecordInfo> connRecordInfos = new ArrayList<>();
  634. JSONObjectList.forEach(x -> {
  635. ShorePowerConnRecordInfo connRecordInfo = JSONObject.parseObject(JSON.toJSONString(x),
  636. ShorePowerConnRecordInfo.class);
  637. connRecordInfos.add(connRecordInfo);
  638. });
  639. log.info("==============> 业务转换为港航数据:{}",
  640. JSONObject.toJSONString(connRecordInfos));
  641. // connRecordInfos.forEach(x -> connRecordInfoService.saveOrUpdate(x));
  642. // connRecordInfoService.saveOrUpdateBatch(connRecordInfos);
  643. for (ShorePowerConnRecordInfo connRecordInfo : connRecordInfos) {
  644. connRecordInfoService.saveOrUpdate(connRecordInfo);
  645. }
  646. log.info("操作完成,共有{}条数据", connRecordInfos.size());
  647. // connRecordInfoService.saveBatch(connRecordInfos);
  648. flag = true;
  649. }
  650. }catch (Exception e){
  651. PrintLogUtils.printErrorLogInfo(e,"saveConnRecordInfos异常:");
  652. }
  653. return flag;
  654. }
  655. @Scheduled(cron = "0 0/1 * * * ?")
  656. public void logScheduled() {
  657. log.info("schedule is starting");
  658. }
  659. @Autowired
  660. private SpStatementShipUsageMonthService spStatementShipUsageMonthService;
  661. //@Scheduled(cron = "")
  662. // @PostConstruct
  663. // public void makeShangHaiShorePowerUsageRecord() {
  664. // spStatementShipUsageMonthService.makeShangHaiShorePowerUsageRecord();
  665. // }
  666. @XxlJob("connectorStatusInfo")
  667. public ReturnT<String> getConnectorStatusInfo(String params) {
  668. try {
  669. JSONObject map = JSONObject.parseObject(params);
  670. String portId = (String) map.get("portId");
  671. String deviceId = (String) map.get("deviceId");
  672. String platformId = (String) map.get("platformId");
  673. String operatorId = (String) map.get("operatorId");
  674. String page = (String) map.get("current");
  675. String limit = (String) map.get("size");
  676. String result = executeConnectorStatusInfoUrl(portId, deviceId, platformId, operatorId, page,
  677. limit);
  678. log.info("岸电设备接口状态信息查询接口调用成功! ===>返回结果:{}",
  679. JSONObject.toJSONString(result));
  680. JSONObject jsonObject = JSONObject.parseObject(result);
  681. if (0 == ((int) jsonObject.get("Ret"))) {
  682. String lightData = (String) jsonObject.get("Data");
  683. String data = new String(Encodes.aesDecrypt(
  684. Encodes.decodeBase64(lightData),
  685. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  686. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  687. log.info("==============> 业务数据:{}", JSONObject.toJSONString(data));
  688. JSONObject dataJsonObject = (JSONObject) JSONObject.parse(data.toLowerCase());
  689. JSONArray records = (JSONArray) dataJsonObject.get("records");
  690. log.info("records ====>{}", records);
  691. String arrayJSON = JSONObject.toJSONString(records, SerializerFeature.WriteClassName);
  692. List<JSONObject> JSONObjectList = JSONObject.parseArray(arrayJSON,
  693. JSONObject.class);
  694. List<ShorePowerDeviceStatusInfo> deviceStatusInfos = new ArrayList<>();
  695. JSONObjectList.forEach(x -> {
  696. ShorePowerDeviceStatusInfo deviceStatusInfo = JSONObject.parseObject(JSON.toJSONString(x),
  697. ShorePowerDeviceStatusInfo.class);
  698. deviceStatusInfos.add(deviceStatusInfo);
  699. });
  700. log.info("==============> 业务转换为港航数据:{}",
  701. JSONObject.toJSONString(deviceStatusInfos));
  702. // deviceStatusInfos.forEach(x -> deviceStatusInfoService.saveOrUpdate(x));
  703. // deviceStatusInfoService.saveOrUpdateBatch(deviceStatusInfos);
  704. for (ShorePowerDeviceStatusInfo deviceStatusInfo : deviceStatusInfos) {
  705. deviceStatusInfoService.saveOrUpdate(deviceStatusInfo);
  706. }
  707. log.info("操作完成,共有{}条数据", deviceStatusInfos.size());
  708. // deviceStatusInfoService.saveBatch(deviceStatusInfos);
  709. }
  710. } catch (Exception e) {
  711. return ReturnT.FAIL;
  712. }
  713. return ReturnT.SUCCESS;
  714. }
  715. @XxlJob("portInfo")
  716. public ReturnT<String> getPortInfo(String params) {
  717. try {
  718. JSONObject map = JSONObject.parseObject(params);
  719. String portId = (String) map.get("portId");
  720. String page = (String) map.get("current");
  721. String limit = (String) map.get("size");
  722. String result = executePortInfoUrl(portId, page, limit);
  723. log.info("长航 - 港口信息设备查询接口调用成功! ===>返回结果:{}",
  724. JSONObject.toJSONString(result));
  725. JSONObject jsonObject = JSONObject.parseObject(result);
  726. if (0 == ((int) jsonObject.get("Ret"))) {
  727. String lightData = (String) jsonObject.get("Data");
  728. String data = new String(Encodes.aesDecrypt(
  729. Encodes.decodeBase64(lightData),
  730. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  731. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  732. log.info("==============> 业务数据:{}", JSONObject.toJSONString(data));
  733. JSONObject dataJsonObject = (JSONObject) JSONObject.parse(data.toLowerCase());
  734. JSONArray records = (JSONArray) dataJsonObject.get("records");
  735. log.info("records ====>{}", records);
  736. String arrayJSON = JSONObject.toJSONString(records, SerializerFeature.WriteClassName);
  737. List<JSONObject> JSONObjectList = JSONObject.parseArray(arrayJSON,
  738. JSONObject.class);
  739. List<ShorePowerPortInfo> portInfoList = new ArrayList<>();
  740. JSONObjectList.forEach(x -> {
  741. ShorePowerPortInfo portInfo = JSONObject.parseObject(JSON.toJSONString(x),
  742. ShorePowerPortInfo.class);
  743. portInfoList.add(portInfo);
  744. });
  745. log.info("==============> 业务转换为港航数据:{}",
  746. JSONObject.toJSONString(portInfoList));
  747. // portInfoList.forEach(x -> portInfoService.saveOrUpdate(x));
  748. // portInfoService.saveOrUpdateBatch(portInfoList);
  749. for (ShorePowerPortInfo portInfo : portInfoList) {
  750. portInfoService.saveOrUpdate(portInfo);
  751. }
  752. log.info("操作完成,共有{}条数据", portInfoList.size());
  753. }
  754. } catch (Exception e) {
  755. e.printStackTrace();
  756. return ReturnT.FAIL;
  757. }
  758. return ReturnT.SUCCESS;
  759. }
  760. @XxlJob("berthInfo")
  761. public ReturnT<String> getBerthInfo(String params) {
  762. try {
  763. JSONObject map = JSONObject.parseObject(params);
  764. String portId = (String) map.get("portId");
  765. String berthId = (String) map.get("berthId");
  766. String page = (String) map.get("current");
  767. String limit = (String) map.get("size");
  768. String result = executeBerthInfoUrl(portId, berthId, page, limit);
  769. log.info("长航 - 泊位信息设备查询接口调用成功! ===>返回结果:{}",
  770. JSONObject.toJSONString(result));
  771. JSONObject jsonObject = JSONObject.parseObject(result);
  772. if (0 == ((int) jsonObject.get("Ret"))) {
  773. String lightData = (String) jsonObject.get("Data");
  774. String data = new String(Encodes.aesDecrypt(
  775. Encodes.decodeBase64(lightData),
  776. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  777. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  778. log.info("==============> 业务数据:{}", JSONObject.toJSONString(data).toLowerCase());
  779. JSONObject dataJsonObject = (JSONObject) JSONObject.parse(data.toLowerCase());
  780. JSONArray records = (JSONArray) dataJsonObject.get("records");
  781. log.info("records ====>{}", records);
  782. String arrayJSON = JSONObject.toJSONString(records, SerializerFeature.WriteClassName);
  783. List<JSONObject> JSONObjectList = JSONObject.parseArray(arrayJSON,
  784. JSONObject.class);
  785. List<ShorePowerBerthInfo> berthInfoList = new ArrayList<>();
  786. JSONObjectList.forEach(x -> {
  787. ShorePowerBerthInfo deviceInfo = JSONObject.parseObject(JSON.toJSONString(x),
  788. ShorePowerBerthInfo.class);
  789. berthInfoList.add(deviceInfo);
  790. });
  791. log.info("==============> 业务转换为港航数据:{}",
  792. JSONObject.toJSONString(berthInfoList));
  793. berthInfoList.forEach(x -> berthInfoService.saveOrUpdate(x));
  794. log.info("操作完成,共有{}条数据", berthInfoList.size());
  795. }
  796. } catch (Exception e) {
  797. e.printStackTrace();
  798. return ReturnT.FAIL;
  799. }
  800. return ReturnT.SUCCESS;
  801. }
  802. @XxlJob("deviceInfo")
  803. public ReturnT<String> getDeviceInfo(String params) {
  804. try {
  805. JSONObject map = JSONObject.parseObject(params);
  806. String deviceId = (String) map.get("deviceId");
  807. String berthId = (String) map.get("berthId");
  808. String page = (String) map.get("current");
  809. String limit = (String) map.get("size");
  810. String result = executeDeviceInfoUrl(deviceId, berthId, page, limit);
  811. log.info("长航 - 设备信息设备查询接口调用成功! ===>返回结果:{}",
  812. JSONObject.toJSONString(result));
  813. JSONObject jsonObject = JSONObject.parseObject(result);
  814. if (0 == ((int) jsonObject.get("Ret"))) {
  815. String lightData = (String) jsonObject.get("Data");
  816. String data = new String(Encodes.aesDecrypt(
  817. Encodes.decodeBase64(lightData),
  818. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  819. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  820. log.info("==============> 业务数据:{}", JSONObject.toJSONString(data).toLowerCase());
  821. JSONObject dataJsonObject = (JSONObject) JSONObject.parse(data.toLowerCase());
  822. JSONArray records = (JSONArray) dataJsonObject.get("records");
  823. log.info("records ====>{}", records);
  824. String arrayJSON = JSONObject.toJSONString(records, SerializerFeature.WriteClassName);
  825. List<JSONObject> JSONObjectList = JSONObject.parseArray(arrayJSON,
  826. JSONObject.class);
  827. List<ShorePowerDeviceInfo> deviceInfoList = new ArrayList<>();
  828. JSONObjectList.forEach(x -> {
  829. ShorePowerDeviceInfo deviceInfo = JSONObject.parseObject(JSON.toJSONString(x),
  830. ShorePowerDeviceInfo.class);
  831. deviceInfo.setIs_jcbg(
  832. deviceInfo.getIs_constructionspecification_jcbg());
  833. deviceInfoList.add(deviceInfo);
  834. });
  835. log.info("==============> 业务转换为港航数据:{}",
  836. JSONObject.toJSONString(deviceInfoList));
  837. deviceInfoList.forEach(x -> deviceInfoService.saveOrUpdate(x));
  838. log.info("操作完成,共有{}条数据", deviceInfoList.size());
  839. }
  840. } catch (Exception e) {
  841. e.printStackTrace();
  842. return ReturnT.FAIL;
  843. }
  844. return ReturnT.SUCCESS;
  845. }
  846. private String executeConnRecordInfoUrl(String portId, String deviceId, String berthId,
  847. String page, String limit) {
  848. try {
  849. JSONObject tokenJsonObject = JSONObject.parseObject(getToken());
  850. JSONObject tokenData = JSONObject.parseObject((String) tokenJsonObject.get("data"));
  851. String accessToken = (String) tokenData.get("AccessToken");
  852. String platformID = (String) tokenData.get("PlatformID");
  853. JSONObject data = new JSONObject();
  854. JSONObject berthInfo = new JSONObject();
  855. LocalDateTime now = LocalDateTime.now();
  856. LocalDateTime oneHourAgo = now.minusHours(24);
  857. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
  858. berthInfo.put("startTime", formatter.format(oneHourAgo));
  859. berthInfo.put("endTime", formatter.format(now));
  860. berthInfo.put("portId", portId);
  861. berthInfo.put("deviceId", deviceId);
  862. berthInfo.put("berthId", berthId);
  863. berthInfo.put("page", page);
  864. berthInfo.put("limit", limit);
  865. data.put("connRecordInfo", berthInfo);
  866. JSONObject deviceRequest = new JSONObject();
  867. deviceRequest.put("PlatformID", platformID);
  868. deviceRequest.put("TimeStamp", String.valueOf(System.currentTimeMillis()));
  869. deviceRequest.put("Seq", "0001");
  870. deviceRequest.put("Data", data);
  871. JSONObject sss = (JSONObject) deviceRequest.get("Data");
  872. String mvData = Encodes.encodeBase64(
  873. Encodes.aesEncrypt(sss.toString().getBytes(StandardCharsets.UTF_8),
  874. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  875. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()));
  876. deviceRequest.put("Data", mvData);
  877. Map<String, String> param = Maps.newLinkedHashMap();
  878. param.put("PlatformID", deviceRequest.getString("PlatformID"));
  879. param.put("Data", deviceRequest.getString("Data"));
  880. param.put("TimeStamp", deviceRequest.getString("TimeStamp"));
  881. param.put("Seq", deviceRequest.getString("Seq"));
  882. String reqSign = Encodes.sign(param, GhjgPortThreeUrl.TOKEN_KEY.getUrl());
  883. param.put("Sig", reqSign);
  884. log.info("=====> 入参:{}", JSONObject.toJSONString(param));
  885. HttpRequest post = HttpUtil.createPost(GhjgPortThreeUrl.PROXY_QUERY_CONNRECORD_INFO.getUrl());
  886. Map<String, String> headers = new HashMap<>();
  887. headers.put("Authorization", "Bearer" + " " + accessToken);
  888. headers.put("Content-Type", "application/json;charset=utf-8");
  889. post.addHeaders(headers);
  890. return post.body(JSONObject.toJSONString(param)).setReadTimeout(3600000).execute().body();
  891. } catch (Exception e) {
  892. log.error("=====> 调用接口异常:{}", e.getMessage());
  893. return e.getMessage();
  894. }
  895. }
  896. public String executeConnRecordInfoUrl(String portId, String deviceId, String berthId,
  897. String page, String limit, String startTime, String endTime) {
  898. try {
  899. JSONObject tokenJsonObject = JSONObject.parseObject(getToken());
  900. JSONObject tokenData = JSONObject.parseObject((String) tokenJsonObject.get("data"));
  901. String accessToken = (String) tokenData.get("AccessToken");
  902. String platformID = (String) tokenData.get("PlatformID");
  903. JSONObject data = new JSONObject();
  904. JSONObject berthInfo = new JSONObject();
  905. berthInfo.put("startTime", startTime);
  906. berthInfo.put("endTime", endTime);
  907. berthInfo.put("portId", portId);
  908. berthInfo.put("deviceId", deviceId);
  909. berthInfo.put("berthId", berthId);
  910. berthInfo.put("page", page);
  911. berthInfo.put("limit", limit);
  912. data.put("connRecordInfo", berthInfo);
  913. JSONObject deviceRequest = new JSONObject();
  914. deviceRequest.put("PlatformID", platformID);
  915. deviceRequest.put("TimeStamp", String.valueOf(System.currentTimeMillis()));
  916. deviceRequest.put("Seq", "0001");
  917. deviceRequest.put("Data", data);
  918. JSONObject sss = (JSONObject) deviceRequest.get("Data");
  919. String mvData = Encodes.encodeBase64(
  920. Encodes.aesEncrypt(sss.toString().getBytes(StandardCharsets.UTF_8),
  921. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  922. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()));
  923. deviceRequest.put("Data", mvData);
  924. Map<String, String> param = Maps.newLinkedHashMap();
  925. param.put("PlatformID", deviceRequest.getString("PlatformID"));
  926. param.put("Data", deviceRequest.getString("Data"));
  927. param.put("TimeStamp", deviceRequest.getString("TimeStamp"));
  928. param.put("Seq", deviceRequest.getString("Seq"));
  929. String reqSign = Encodes.sign(param, GhjgPortThreeUrl.TOKEN_KEY.getUrl());
  930. param.put("Sig", reqSign);
  931. log.info("=====> 入参:{}", JSONObject.toJSONString(param));
  932. //TODO 本地测试和生产发布地址不同
  933. HttpRequest post = HttpUtil.createPost(GhjgPortThreeUrl.PROXY_QUERY_CONNRECORD_INFO.getUrl());
  934. // HttpRequest post = HttpUtil.createPost(GhjgPortThreeUrl.QUERY_CONNRECORD_INFO.getUrl());
  935. Map<String, String> headers = new HashMap<>();
  936. headers.put("Authorization", "Bearer" + " " + accessToken);
  937. headers.put("Content-Type", "application/json;charset=utf-8");
  938. post.addHeaders(headers);
  939. return post.body(JSONObject.toJSONString(param)).setReadTimeout(3600000).execute().body();
  940. } catch (Exception e) {
  941. log.error("=====> 调用接口异常:{}", e.getMessage());
  942. return e.getMessage();
  943. }
  944. }
  945. private String executeConnectorStatusInfoUrl(String portId, String deviceId, String platformId,
  946. String operatorId, String page, String limit) {
  947. JSONObject tokenJsonObject = JSONObject.parseObject(getToken());
  948. JSONObject tokenData = JSONObject.parseObject((String) tokenJsonObject.get("data"));
  949. String accessToken = (String) tokenData.get("AccessToken");
  950. String platformID = (String) tokenData.get("PlatformID");
  951. JSONObject data = new JSONObject();
  952. JSONObject berthInfo = new JSONObject();
  953. berthInfo.put("portId", portId);
  954. berthInfo.put("deviceId", deviceId);
  955. berthInfo.put("platformId", platformId);
  956. berthInfo.put("operatorId", operatorId);
  957. berthInfo.put("page", page);
  958. berthInfo.put("limit", limit);
  959. LocalDateTime now = LocalDateTime.now();
  960. LocalDateTime oneHourAgo = now.minusHours(24);
  961. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");
  962. berthInfo.put("updateDate", formatter.format(oneHourAgo));
  963. data.put("connectorStatusInfo", berthInfo);
  964. JSONObject deviceRequest = new JSONObject();
  965. deviceRequest.put("PlatformID", platformID);
  966. deviceRequest.put("TimeStamp", String.valueOf(System.currentTimeMillis()));
  967. deviceRequest.put("Seq", "0001");
  968. deviceRequest.put("Data", data);
  969. JSONObject sss = (JSONObject) deviceRequest.get("Data");
  970. String mvData = Encodes.encodeBase64(
  971. Encodes.aesEncrypt(sss.toString().getBytes(StandardCharsets.UTF_8),
  972. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  973. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()));
  974. deviceRequest.put("Data", mvData);
  975. Map<String, String> param = Maps.newLinkedHashMap();
  976. param.put("PlatformID", deviceRequest.getString("PlatformID"));
  977. param.put("Data", deviceRequest.getString("Data"));
  978. param.put("TimeStamp", deviceRequest.getString("TimeStamp"));
  979. param.put("Seq", deviceRequest.getString("Seq"));
  980. String reqSign = Encodes.sign(param, GhjgPortThreeUrl.TOKEN_KEY.getUrl());
  981. param.put("Sig", reqSign);
  982. log.info("=====> 入参:{}", JSONObject.toJSONString(param));
  983. HttpRequest post = HttpUtil.createPost(GhjgPortThreeUrl.PROXY_QUERY_CONNECTOR_STATUS_INFO.getUrl());
  984. Map<String, String> headers = new HashMap<>();
  985. headers.put("Authorization", "Bearer" + " " + accessToken);
  986. headers.put("Content-Type", "application/json;charset=utf-8");
  987. post.addHeaders(headers);
  988. return post.body(JSONObject.toJSONString(param)).setReadTimeout(3600000).execute().body();
  989. }
  990. private String executeBerthInfoUrl(String portId, String berthId, String page, String limit) {
  991. JSONObject tokenJsonObject = JSONObject.parseObject(getToken());
  992. JSONObject tokenData = JSONObject.parseObject((String) tokenJsonObject.get("data"));
  993. String accessToken = (String) tokenData.get("AccessToken");
  994. String platformID = (String) tokenData.get("PlatformID");
  995. JSONObject data = new JSONObject();
  996. JSONObject berthInfo = new JSONObject();
  997. berthInfo.put("portId", portId);
  998. berthInfo.put("berthId", berthId);
  999. berthInfo.put("page", page);
  1000. berthInfo.put("limit", limit);
  1001. data.put("berthRequest", berthInfo);
  1002. JSONObject deviceRequest = new JSONObject();
  1003. deviceRequest.put("PlatformID", platformID);
  1004. deviceRequest.put("TimeStamp", String.valueOf(System.currentTimeMillis()));
  1005. deviceRequest.put("Seq", "0001");
  1006. deviceRequest.put("Data", data);
  1007. JSONObject sss = (JSONObject) deviceRequest.get("Data");
  1008. String mvData = Encodes.encodeBase64(
  1009. Encodes.aesEncrypt(sss.toString().getBytes(StandardCharsets.UTF_8),
  1010. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  1011. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()));
  1012. deviceRequest.put("Data", mvData);
  1013. Map<String, String> param = Maps.newLinkedHashMap();
  1014. param.put("PlatformID", deviceRequest.getString("PlatformID"));
  1015. param.put("Data", deviceRequest.getString("Data"));
  1016. param.put("TimeStamp", deviceRequest.getString("TimeStamp"));
  1017. param.put("Seq", deviceRequest.getString("Seq"));
  1018. String reqSign = Encodes.sign(param, GhjgPortThreeUrl.TOKEN_KEY.getUrl());
  1019. param.put("Sig", reqSign);
  1020. log.info("=====> 入参:{}", JSONObject.toJSONString(param));
  1021. HttpRequest post = HttpUtil.createPost(GhjgPortThreeUrl.CHANG_HANG_BERTH_INFO.getUrl());
  1022. Map<String, String> headers = new HashMap<>();
  1023. headers.put("Authorization", "Bearer" + " " + accessToken);
  1024. headers.put("Content-Type", "application/json;charset=utf-8");
  1025. post.addHeaders(headers);
  1026. return post.body(JSONObject.toJSONString(param)).setReadTimeout(3600000).execute().body();
  1027. }
  1028. private String executeDeviceInfoUrl(String deviceId, String berthId, String page, String limit) {
  1029. JSONObject tokenJsonObject = JSONObject.parseObject(getToken());
  1030. JSONObject tokenData = JSONObject.parseObject((String) tokenJsonObject.get("data"));
  1031. String accessToken = (String) tokenData.get("AccessToken");
  1032. String platformID = (String) tokenData.get("PlatformID");
  1033. JSONObject data = new JSONObject();
  1034. JSONObject berthInfo = new JSONObject();
  1035. berthInfo.put("deviceId", deviceId);
  1036. berthInfo.put("berthId", berthId);
  1037. berthInfo.put("page", page);
  1038. berthInfo.put("limit", limit);
  1039. data.put("deviceRequest", berthInfo);
  1040. JSONObject deviceRequest = new JSONObject();
  1041. deviceRequest.put("PlatformID", platformID);
  1042. deviceRequest.put("TimeStamp", String.valueOf(System.currentTimeMillis()));
  1043. deviceRequest.put("Seq", "0001");
  1044. deviceRequest.put("Data", data);
  1045. JSONObject sss = (JSONObject) deviceRequest.get("Data");
  1046. String mvData = Encodes.encodeBase64(
  1047. Encodes.aesEncrypt(sss.toString().getBytes(StandardCharsets.UTF_8),
  1048. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  1049. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()));
  1050. deviceRequest.put("Data", mvData);
  1051. Map<String, String> param = Maps.newLinkedHashMap();
  1052. param.put("PlatformID", deviceRequest.getString("PlatformID"));
  1053. param.put("Data", deviceRequest.getString("Data"));
  1054. param.put("TimeStamp", deviceRequest.getString("TimeStamp"));
  1055. param.put("Seq", deviceRequest.getString("Seq"));
  1056. String reqSign = Encodes.sign(param, GhjgPortThreeUrl.TOKEN_KEY.getUrl());
  1057. param.put("Sig", reqSign);
  1058. log.info("=====> 入参:{}", JSONObject.toJSONString(param));
  1059. HttpRequest post = HttpUtil.createPost(GhjgPortThreeUrl.CHANG_HANG_DEVICE_INFO.getUrl());
  1060. Map<String, String> headers = new HashMap<>();
  1061. headers.put("Authorization", "Bearer" + " " + accessToken);
  1062. headers.put("Content-Type", "application/json;charset=utf-8");
  1063. post.addHeaders(headers);
  1064. return post.body(JSONObject.toJSONString(param)).setReadTimeout(3600000).execute().body();
  1065. }
  1066. private String executePortInfoUrl(String portId, String page, String limit) {
  1067. JSONObject tokenJsonObject = JSONObject.parseObject(getToken());
  1068. JSONObject tokenData = JSONObject.parseObject((String) tokenJsonObject.get("data"));
  1069. String accessToken = (String) tokenData.get("AccessToken");
  1070. String platformID = (String) tokenData.get("PlatformID");
  1071. JSONObject data = new JSONObject();
  1072. JSONObject berthInfo = new JSONObject();
  1073. berthInfo.put("portId", portId);
  1074. berthInfo.put("page", page);
  1075. berthInfo.put("limit", limit);
  1076. data.put("portRequest", berthInfo);
  1077. JSONObject portRequest = new JSONObject();
  1078. portRequest.put("PlatformID", platformID);
  1079. portRequest.put("TimeStamp", String.valueOf(System.currentTimeMillis()));
  1080. portRequest.put("Seq", "0001");
  1081. portRequest.put("Data", data);
  1082. JSONObject sss = (JSONObject) portRequest.get("Data");
  1083. String mvData = Encodes.encodeBase64(
  1084. Encodes.aesEncrypt(sss.toString().getBytes(StandardCharsets.UTF_8),
  1085. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  1086. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()));
  1087. portRequest.put("Data", mvData);
  1088. Map<String, String> param = Maps.newLinkedHashMap();
  1089. param.put("PlatformID", portRequest.getString("PlatformID"));
  1090. param.put("Data", portRequest.getString("Data"));
  1091. param.put("TimeStamp", portRequest.getString("TimeStamp"));
  1092. param.put("Seq", portRequest.getString("Seq"));
  1093. String reqSign = Encodes.sign(param, GhjgPortThreeUrl.TOKEN_KEY.getUrl());
  1094. param.put("Sig", reqSign);
  1095. log.info("=====> 入参:{}", JSONObject.toJSONString(param));
  1096. HttpRequest post = HttpUtil.createPost(GhjgPortThreeUrl.CHANG_HANG_PORT_INFO.getUrl());
  1097. Map<String, String> headers = new HashMap<>();
  1098. headers.put("Authorization", "Bearer" + " " + accessToken);
  1099. headers.put("Content-Type", "application/json;charset=utf-8");
  1100. post.addHeaders(headers);
  1101. return post.body(JSONObject.toJSONString(param)).setReadTimeout(3600000).execute().body();
  1102. }
  1103. private String executeUserBerthRecordInfoUrl(String realName, String page, String limit) {
  1104. JSONObject tokenJsonObject = JSONObject.parseObject(getToken());
  1105. JSONObject tokenData = JSONObject.parseObject((String) tokenJsonObject.get("data"));
  1106. String accessToken = (String) tokenData.get("AccessToken");
  1107. String platformID = (String) tokenData.get("PlatformID");
  1108. JSONObject data = new JSONObject();
  1109. JSONObject berthInfo = new JSONObject();
  1110. LocalDateTime now = LocalDateTime.now();
  1111. LocalDateTime oneHourAgo = now.minusHours(12);
  1112. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");
  1113. berthInfo.put("realName", realName);
  1114. berthInfo.put("page", page);
  1115. berthInfo.put("limit", limit);
  1116. berthInfo.put("startTime", formatter.format(oneHourAgo));
  1117. berthInfo.put("endTime", formatter.format(now));
  1118. data.put("userBerthRecordInfo", berthInfo);
  1119. JSONObject deviceRequest = new JSONObject();
  1120. deviceRequest.put("PlatformID", platformID);
  1121. deviceRequest.put("TimeStamp", String.valueOf(System.currentTimeMillis()));
  1122. deviceRequest.put("Seq", "0001");
  1123. deviceRequest.put("Data", data);
  1124. JSONObject sss = (JSONObject) deviceRequest.get("Data");
  1125. String mvData = Encodes.encodeBase64(
  1126. Encodes.aesEncrypt(sss.toString().getBytes(StandardCharsets.UTF_8),
  1127. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  1128. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()));
  1129. deviceRequest.put("Data", mvData);
  1130. Map<String, String> param = Maps.newLinkedHashMap();
  1131. param.put("PlatformID", deviceRequest.getString("PlatformID"));
  1132. param.put("Data", deviceRequest.getString("Data"));
  1133. param.put("TimeStamp", deviceRequest.getString("TimeStamp"));
  1134. param.put("Seq", deviceRequest.getString("Seq"));
  1135. String reqSign = Encodes.sign(param, GhjgPortThreeUrl.TOKEN_KEY.getUrl());
  1136. param.put("Sig", reqSign);
  1137. log.info("=====> 入参:{}", JSONObject.toJSONString(param));
  1138. HttpRequest post = HttpUtil.createPost(GhjgPortThreeUrl.PROXY_FILL_IN_THE_BERTHS_MANUALLY.getUrl());
  1139. Map<String, String> headers = new HashMap<>();
  1140. headers.put("Authorization", "Bearer" + " " + accessToken);
  1141. headers.put("Content-Type", "application/json;charset=utf-8");
  1142. post.addHeaders(headers);
  1143. return post.body(JSONObject.toJSONString(param)).setReadTimeout(3600000).execute().body();
  1144. }
  1145. private String executePortInfoNewUrl(String platformId, String portName, String operatorName,
  1146. String enterprisesName, String page, String limit) {
  1147. JSONObject tokenJsonObject = JSONObject.parseObject(getToken());
  1148. JSONObject tokenData = JSONObject.parseObject((String) tokenJsonObject.get("data"));
  1149. String accessToken = (String) tokenData.get("AccessToken");
  1150. String platformID = (String) tokenData.get("PlatformID");
  1151. JSONObject data = new JSONObject();
  1152. JSONObject berthInfo = new JSONObject();
  1153. berthInfo.put("platformId", platformId);
  1154. berthInfo.put("portName", portName);
  1155. berthInfo.put("operatorName", operatorName);
  1156. berthInfo.put("enterprisesName", enterprisesName);
  1157. berthInfo.put("page", page);
  1158. berthInfo.put("limit", limit);
  1159. LocalDateTime now = LocalDateTime.now();
  1160. LocalDateTime oneHourAgo = now.minusHours(24);
  1161. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");
  1162. berthInfo.put("updateDate", formatter.format(oneHourAgo));
  1163. data.put("portInfo", berthInfo);
  1164. JSONObject portRequest = new JSONObject();
  1165. portRequest.put("PlatformID", platformID);
  1166. portRequest.put("TimeStamp", String.valueOf(System.currentTimeMillis()));
  1167. portRequest.put("Seq", "0001");
  1168. portRequest.put("Data", data);
  1169. JSONObject sss = (JSONObject) portRequest.get("Data");
  1170. String mvData = Encodes.encodeBase64(
  1171. Encodes.aesEncrypt(sss.toString().getBytes(StandardCharsets.UTF_8),
  1172. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  1173. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()));
  1174. portRequest.put("Data", mvData);
  1175. Map<String, String> param = Maps.newLinkedHashMap();
  1176. param.put("PlatformID", portRequest.getString("PlatformID"));
  1177. param.put("Data", portRequest.getString("Data"));
  1178. param.put("TimeStamp", portRequest.getString("TimeStamp"));
  1179. param.put("Seq", portRequest.getString("Seq"));
  1180. String reqSign = Encodes.sign(param, GhjgPortThreeUrl.TOKEN_KEY.getUrl());
  1181. param.put("Sig", reqSign);
  1182. log.info("=====> 入参:{}", JSONObject.toJSONString(param));
  1183. HttpRequest post = HttpUtil.createPost(GhjgPortThreeUrl.PORT_INFO.getUrl());
  1184. Map<String, String> headers = new HashMap<>();
  1185. headers.put("Authorization", "Bearer" + " " + accessToken);
  1186. headers.put("Content-Type", "application/json;charset=utf-8");
  1187. post.addHeaders(headers);
  1188. return post.body(JSONObject.toJSONString(param)).setReadTimeout(3600000).execute().body();
  1189. }
  1190. public static void main(String[] args) {
  1191. JSONObject data = new JSONObject();
  1192. JSONObject jsonObject = new JSONObject();
  1193. JSONObject portRequest = new JSONObject();
  1194. portRequest.put("limit", "20");
  1195. portRequest.put("page", "1");
  1196. portRequest.put("portId", "0001");
  1197. data.put("portRequest", portRequest);
  1198. jsonObject.put("PlatformID", "425009768");
  1199. jsonObject.put("Data", data);
  1200. jsonObject.put("TimeStamp", "16880151424323");
  1201. jsonObject.put("Seq", "001");
  1202. JSONObject sss = (JSONObject) jsonObject.get("Data");
  1203. String mvData = Encodes.encodeBase64(
  1204. Encodes.aesEncrypt(sss.toString().getBytes(StandardCharsets.UTF_8),
  1205. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  1206. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()));
  1207. jsonObject.put("Data", mvData);
  1208. Map<String, String> param = Maps.newLinkedHashMap();
  1209. param.put("PlatformID", jsonObject.getString("PlatformID"));
  1210. param.put("Data", jsonObject.getString("Data"));
  1211. param.put("TimeStamp", jsonObject.getString("TimeStamp"));
  1212. param.put("Seq", jsonObject.getString("Seq"));
  1213. String reqSign = Encodes.sign(param, GhjgPortThreeUrl.TOKEN_KEY.getUrl());
  1214. jsonObject.put("Sig", reqSign);
  1215. System.out.println(jsonObject);
  1216. String result = new String(Encodes.aesDecrypt(
  1217. Encodes.decodeBase64(
  1218. "gbc4kk0TAbgF+OyUUsVxR3w8cuJzO2d9KH+1wVvB5gyJSYOucNO4UEmyToekslu+BoGIyRH/2FCTMem/oQI7WHlwGPUbETN0rQ2JBF+S/p0="),
  1219. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes(),
  1220. GhjgPortThreeUrl.TOKEN_KEY.getUrl().getBytes()), StandardCharsets.UTF_8);
  1221. System.out.println(result);
  1222. }
  1223. }