package com.gzlh.device.camera.controller; import cn.hutool.core.bean.BeanUtil; import cn.hutool.core.util.XmlUtil; import com.gzlh.device.camera.factory.CameraFactory; import com.gzlh.device.camera.properties.CameraPropertiesConfig; import com.gzlh.utils.FileUtils; import org.springframework.beans.factory.annotation.Value; import org.springframework.util.StringUtils; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import javax.annotation.Resource; import java.io.IOException; import java.util.Calendar; import java.util.HashMap; import java.util.Map; @RestController @RequestMapping("/Camera") public class CameraController { @Value("${file.root-path}") private String path; @Value("${application.channel-name}") private String channel; @Resource private CameraFactory cameraFactory; @Resource private CameraPropertiesConfig cameraPropertiesConfig; @PostMapping("/recv") public void recv( @RequestBody String xmlStr // HttpServletRequest request ) throws IOException { // String xmlStr = IOUtils.toString(request.getInputStream(), request.getCharacterEncoding()); Map StringObjectMap = new HashMap<>(); XmlUtil.xmlToMap(xmlStr, StringObjectMap); Map ic = BeanUtil.beanToMap(StringObjectMap.get("IC")); Map weight =BeanUtil.beanToMap(StringObjectMap.get("WEIGHT")); Map car = BeanUtil.beanToMap(StringObjectMap.get("CAR")); Map conta =BeanUtil.beanToMap(StringObjectMap.get("CONTA")); Map seal = BeanUtil.beanToMap(StringObjectMap.get("SEAL")); Map cacheMap = new HashMap<>(); cacheMap.put("carEcNo", (String) car.get("CAR_EC_NO")); cacheMap.put("contaIdF", !StringUtils.isEmpty((String) car.get("CONTA_ID_F"))?(String) car.get("CONTA_ID_F"):""); cacheMap.put("contaIdB", !StringUtils.isEmpty((String) car.get("CONTA_ID_B"))?(String) car.get("CONTA_ID_B"):""); Calendar calendar = Calendar.getInstance(); String savePath=path+"/"+ calendar.get(Calendar.YEAR)+"-" + (calendar.get(Calendar.MONTH)+1); Map picMap = new HashMap<>(); for (Map.Entry entry : conta.entrySet()) { if(entry.getKey().contains("PIC")&& !StringUtils.isEmpty((String) entry.getValue())){ String filePath = FileUtils.downLoad((String) entry.getValue(),savePath); String base64 = FileUtils.getBase64FromImg(filePath); picMap.put(entry.getKey(),base64); } } // TODO: 2023/11/10 cameraFactory.handler(cameraPropertiesConfig.getBrand()).handlerAction(""); } }