CameraController.java 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package com.gzlh.device.camera.controller;
  2. import cn.hutool.core.bean.BeanUtil;
  3. import cn.hutool.core.util.XmlUtil;
  4. import com.gzlh.device.camera.factory.CameraFactory;
  5. import com.gzlh.device.camera.properties.CameraPropertiesConfig;
  6. import com.gzlh.utils.FileUtils;
  7. import org.springframework.beans.factory.annotation.Value;
  8. import org.springframework.util.StringUtils;
  9. import org.springframework.web.bind.annotation.PostMapping;
  10. import org.springframework.web.bind.annotation.RequestBody;
  11. import org.springframework.web.bind.annotation.RequestMapping;
  12. import org.springframework.web.bind.annotation.RestController;
  13. import javax.annotation.Resource;
  14. import java.io.IOException;
  15. import java.util.Calendar;
  16. import java.util.HashMap;
  17. import java.util.Map;
  18. @RestController
  19. @RequestMapping("/Camera")
  20. public class CameraController {
  21. @Value("${file.root-path}")
  22. private String path;
  23. @Value("${application.channel-name}")
  24. private String channel;
  25. @Resource
  26. private CameraFactory cameraFactory;
  27. @Resource
  28. private CameraPropertiesConfig cameraPropertiesConfig;
  29. @PostMapping("/recv")
  30. public void recv(
  31. @RequestBody String xmlStr
  32. // HttpServletRequest request
  33. ) throws IOException {
  34. // String xmlStr = IOUtils.toString(request.getInputStream(), request.getCharacterEncoding());
  35. Map<String, Object> StringObjectMap = new HashMap<>();
  36. XmlUtil.xmlToMap(xmlStr, StringObjectMap);
  37. Map<String, Object> ic = BeanUtil.beanToMap(StringObjectMap.get("IC"));
  38. Map<String, Object> weight =BeanUtil.beanToMap(StringObjectMap.get("WEIGHT"));
  39. Map<String, Object> car = BeanUtil.beanToMap(StringObjectMap.get("CAR"));
  40. Map<String, Object> conta =BeanUtil.beanToMap(StringObjectMap.get("CONTA"));
  41. Map<String, Object> seal = BeanUtil.beanToMap(StringObjectMap.get("SEAL"));
  42. Map<String, String> cacheMap = new HashMap<>();
  43. cacheMap.put("carEcNo", (String) car.get("CAR_EC_NO"));
  44. cacheMap.put("contaIdF", !StringUtils.isEmpty((String) car.get("CONTA_ID_F"))?(String) car.get("CONTA_ID_F"):"");
  45. cacheMap.put("contaIdB", !StringUtils.isEmpty((String) car.get("CONTA_ID_B"))?(String) car.get("CONTA_ID_B"):"");
  46. Calendar calendar = Calendar.getInstance();
  47. String savePath=path+"/"+ calendar.get(Calendar.YEAR)+"-" + (calendar.get(Calendar.MONTH)+1);
  48. Map<String, String> picMap = new HashMap<>();
  49. for (Map.Entry<String, Object> entry : conta.entrySet()) {
  50. if(entry.getKey().contains("PIC")&& !StringUtils.isEmpty((String) entry.getValue())){
  51. String filePath = FileUtils.downLoad((String) entry.getValue(),savePath);
  52. String base64 = FileUtils.getBase64FromImg(filePath);
  53. picMap.put(entry.getKey(),base64);
  54. }
  55. }
  56. // TODO: 2023/11/10
  57. cameraFactory.handler(cameraPropertiesConfig.getBrand()).handlerAction("");
  58. }
  59. }