123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- package com.gzlh.device.camera.controller;
- import cn.hutool.core.bean.BeanUtil;
- import cn.hutool.core.util.XmlUtil;
- import cn.hutool.http.HttpRequest;
- import cn.hutool.http.HttpResponse;
- import cn.hutool.json.JSONUtil;
- import com.gzlh.bus.EventDataManager;
- import com.gzlh.config.SystemObject;
- import com.gzlh.device.camera.factory.CameraFactory;
- import com.gzlh.device.camera.properties.CameraPropertiesConfig;
- import com.gzlh.entity.ReqBO;
- import com.gzlh.utils.FileUtils;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.http.HttpHeaders;
- 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 org.w3c.dom.Document;
- import org.w3c.dom.Element;
- import javax.annotation.Resource;
- import java.io.IOException;
- import java.util.*;
- @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<String, Object> StringObjectMap = new HashMap<>();
- Document document = XmlUtil.parseXml(xmlStr);
- Element rootElement = XmlUtil.getRootElement(document);
- String i_e_type = rootElement.getAttribute("I_E_TYPE");
- XmlUtil.xmlToMap(xmlStr, StringObjectMap);
- Map<String, Object> ic = BeanUtil.beanToMap(StringObjectMap.get("IC"));
- Map<String, Object> weight =BeanUtil.beanToMap(StringObjectMap.get("WEIGHT"));
- Map<String, Object> car = BeanUtil.beanToMap(StringObjectMap.get("CAR"));
- Map<String, Object> conta =BeanUtil.beanToMap(StringObjectMap.get("CONTA"));
- Map<String, Object> seal = BeanUtil.beanToMap(StringObjectMap.get("SEAL"));
- Map<String, String> boxNoMap = new HashMap<>();
- // cacheMap.put("carEcNo", (String) car.get("CAR_EC_NO"));
- boxNoMap.put("boxNoF", !StringUtils.isEmpty((String) conta.get("CONTA_ID_F"))?(String) conta.get("CONTA_ID_F"):"");
- boxNoMap.put("boxNoB", !StringUtils.isEmpty((String) conta.get("CONTA_ID_B"))?(String) conta.get("CONTA_ID_B"):"");
- EventDataManager.cacheData("boxNoList",boxNoMap);
- Calendar calendar = Calendar.getInstance();
- String savePath=path+"/"+SystemObject.applicationConfig.getChannelCode()+"/"+ calendar.get(Calendar.YEAR)+(calendar.get(Calendar.MONTH)+1)+calendar.get(Calendar.DAY_OF_MONTH);
- List<String> fList = new ArrayList();
- List<String> bList = new ArrayList();
- for (Map.Entry<String, Object> 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);
- if (entry.getKey().contains("CONTA_F")){
- fList.add(filePath);
- }else if (entry.getKey().contains("CONTA_B")){
- bList.add(filePath);
- }
- }
- }
- EventDataManager.cacheData("boxFImgList",fList);
- EventDataManager.cacheData("boxBImgList",bList);
- // // TODO: 2023/11/10
- // cameraFactory.handler(cameraPropertiesConfig.getBrand()).handlerAction("");
- request("",JSONUtil.toJsonStr(EventDataManager.getCacheData()));
- }
- public void request(String url,String json) {
- HttpHeaders headers = new HttpHeaders();
- url = "http://192.168.1.8:9191/open/submit";
- long startTime = System.currentTimeMillis();
- System.out.println(startTime);
- String body = json;
- // String method = Thread.currentThread().getStackTrace()[1].getMethodName();
- try {
- // System.out.printf("%s/请求地址:%s,请求头:%s, 请求体:%s ", method,url, headers, body);
- System.out.println();
- // log.info("【{}/{}】请求地址:{},请求头:{}, 请求体:{} ", OperateTypeEnum.OPERATE_TYPE_2.desc, logContent, url, headers, body);
- HttpResponse res = HttpRequest.post(url)
- .header("Content-Type", "application/json;character=utf-8;")
- .body(body)
- .execute();
- String bodyResult = res.body();
- System.out.printf("ReqStatus:%s,返回结果:{%s} ",res.getStatus(), bodyResult);
- // if(200 == res.getStatus()){
- //
- // }
- } catch (Exception e) {
- }
- }
- }
|