CameraController.java 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. package com.gzlh.device.camera.controller;
  2. import cn.hutool.core.bean.BeanUtil;
  3. import cn.hutool.core.util.XmlUtil;
  4. import cn.hutool.http.HttpRequest;
  5. import cn.hutool.http.HttpResponse;
  6. import cn.hutool.json.JSONUtil;
  7. import com.gzlh.bus.EventDataManager;
  8. import com.gzlh.config.SystemObject;
  9. import com.gzlh.device.camera.factory.CameraFactory;
  10. import com.gzlh.device.camera.properties.CameraPropertiesConfig;
  11. import com.gzlh.entity.ReqBO;
  12. import com.gzlh.utils.FileUtils;
  13. import org.springframework.beans.factory.annotation.Value;
  14. import org.springframework.http.HttpHeaders;
  15. import org.springframework.util.StringUtils;
  16. import org.springframework.web.bind.annotation.PostMapping;
  17. import org.springframework.web.bind.annotation.RequestBody;
  18. import org.springframework.web.bind.annotation.RequestMapping;
  19. import org.springframework.web.bind.annotation.RestController;
  20. import org.w3c.dom.Document;
  21. import org.w3c.dom.Element;
  22. import javax.annotation.Resource;
  23. import java.io.IOException;
  24. import java.util.*;
  25. @RestController
  26. @RequestMapping("/camera")
  27. public class CameraController {
  28. @Value("${file.root-path}")
  29. private String path;
  30. @Value("${application.channel-name}")
  31. private String channel;
  32. @Resource
  33. private CameraFactory cameraFactory;
  34. @Resource
  35. private CameraPropertiesConfig cameraPropertiesConfig;
  36. @PostMapping("/recv")
  37. public void recv(
  38. @RequestBody String xmlStr
  39. // HttpServletRequest request
  40. ) throws IOException {
  41. // String xmlStr = IOUtils.toString(request.getInputStream(), request.getCharacterEncoding());
  42. Map<String, Object> StringObjectMap = new HashMap<>();
  43. Document document = XmlUtil.parseXml(xmlStr);
  44. Element rootElement = XmlUtil.getRootElement(document);
  45. String i_e_type = rootElement.getAttribute("I_E_TYPE");
  46. XmlUtil.xmlToMap(xmlStr, StringObjectMap);
  47. Map<String, Object> ic = BeanUtil.beanToMap(StringObjectMap.get("IC"));
  48. Map<String, Object> weight =BeanUtil.beanToMap(StringObjectMap.get("WEIGHT"));
  49. Map<String, Object> car = BeanUtil.beanToMap(StringObjectMap.get("CAR"));
  50. Map<String, Object> conta =BeanUtil.beanToMap(StringObjectMap.get("CONTA"));
  51. Map<String, Object> seal = BeanUtil.beanToMap(StringObjectMap.get("SEAL"));
  52. Map<String, String> boxNoMap = new HashMap<>();
  53. // cacheMap.put("carEcNo", (String) car.get("CAR_EC_NO"));
  54. boxNoMap.put("boxNoF", !StringUtils.isEmpty((String) conta.get("CONTA_ID_F"))?(String) conta.get("CONTA_ID_F"):"");
  55. boxNoMap.put("boxNoB", !StringUtils.isEmpty((String) conta.get("CONTA_ID_B"))?(String) conta.get("CONTA_ID_B"):"");
  56. EventDataManager.cacheData("boxNoList",boxNoMap);
  57. Calendar calendar = Calendar.getInstance();
  58. String savePath=path+"/"+SystemObject.applicationConfig.getChannelCode()+"/"+ calendar.get(Calendar.YEAR)+(calendar.get(Calendar.MONTH)+1)+calendar.get(Calendar.DAY_OF_MONTH);
  59. List<String> fList = new ArrayList();
  60. List<String> bList = new ArrayList();
  61. for (Map.Entry<String, Object> entry : conta.entrySet()) {
  62. if(entry.getKey().contains("PIC")&& !StringUtils.isEmpty((String) entry.getValue())){
  63. String filePath = FileUtils.downLoad((String) entry.getValue(),savePath);
  64. // String base64 = FileUtils.getBase64FromImg(filePath);
  65. if (entry.getKey().contains("CONTA_F")){
  66. fList.add(filePath);
  67. }else if (entry.getKey().contains("CONTA_B")){
  68. bList.add(filePath);
  69. }
  70. }
  71. }
  72. EventDataManager.cacheData("boxFImgList",fList);
  73. EventDataManager.cacheData("boxBImgList",bList);
  74. // // TODO: 2023/11/10
  75. // cameraFactory.handler(cameraPropertiesConfig.getBrand()).handlerAction("");
  76. request("",JSONUtil.toJsonStr(EventDataManager.getCacheData()));
  77. }
  78. public void request(String url,String json) {
  79. HttpHeaders headers = new HttpHeaders();
  80. url = "http://192.168.1.8:9191/open/submit";
  81. long startTime = System.currentTimeMillis();
  82. System.out.println(startTime);
  83. String body = json;
  84. // String method = Thread.currentThread().getStackTrace()[1].getMethodName();
  85. try {
  86. // System.out.printf("%s/请求地址:%s,请求头:%s, 请求体:%s ", method,url, headers, body);
  87. System.out.println();
  88. // log.info("【{}/{}】请求地址:{},请求头:{}, 请求体:{} ", OperateTypeEnum.OPERATE_TYPE_2.desc, logContent, url, headers, body);
  89. HttpResponse res = HttpRequest.post(url)
  90. .header("Content-Type", "application/json;character=utf-8;")
  91. .body(body)
  92. .execute();
  93. String bodyResult = res.body();
  94. System.out.printf("ReqStatus:%s,返回结果:{%s} ",res.getStatus(), bodyResult);
  95. // if(200 == res.getStatus()){
  96. //
  97. // }
  98. } catch (Exception e) {
  99. }
  100. }
  101. }