From b531192f91a4bf1406aae82fa84903f69e901b18 Mon Sep 17 00:00:00 2001 From: huangweixiong Date: Tue, 21 Jun 2022 21:31:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B8=82=E5=B1=80=E6=95=B0=E6=8D=AE=E8=B5=84?= =?UTF-8?q?=E6=BA=90=E5=AE=9E=E7=8E=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dataResource/DataResourceFactory.java | 2 + .../domain/TsingtaoDataResourceService.java | 73 ++++++++++++++++++- 2 files changed, 74 insertions(+), 1 deletion(-) diff --git a/renren-admin/src/main/java/io/renren/modules/resource/dataResource/DataResourceFactory.java b/renren-admin/src/main/java/io/renren/modules/resource/dataResource/DataResourceFactory.java index 3f39b02c..c011cc35 100644 --- a/renren-admin/src/main/java/io/renren/modules/resource/dataResource/DataResourceFactory.java +++ b/renren-admin/src/main/java/io/renren/modules/resource/dataResource/DataResourceFactory.java @@ -5,6 +5,7 @@ import io.renren.common.domain.BaoTouProperties; import io.renren.common.domain.TsingtaoProperties; import io.renren.common.domain.Tsingtao_xhaProperties; import io.renren.common.utils.SpringContextUtils; +import io.renren.modules.resource.dataResource.domain.TsingtaoDataResourceService; import io.renren.modules.resource.dataResource.domain.TsingtaoXHADataResourceService; import io.renren.modules.resource.service.ResourceService; import org.slf4j.Logger; @@ -43,6 +44,7 @@ public final class DataResourceFactory { AbstractDataResourceService abstractDataResourceService = null; switch (Constant.ProjectPlace.getByFlag(projectPlace)) { case TSINGTAO: { // 青岛市局 + abstractDataResourceService = new TsingtaoDataResourceService(); } break; case TSINGTAO_XHA: { // 青岛西海岸 diff --git a/renren-admin/src/main/java/io/renren/modules/resource/dataResource/domain/TsingtaoDataResourceService.java b/renren-admin/src/main/java/io/renren/modules/resource/dataResource/domain/TsingtaoDataResourceService.java index e265c351..4d1b85bf 100644 --- a/renren-admin/src/main/java/io/renren/modules/resource/dataResource/domain/TsingtaoDataResourceService.java +++ b/renren-admin/src/main/java/io/renren/modules/resource/dataResource/domain/TsingtaoDataResourceService.java @@ -1,9 +1,24 @@ package io.renren.modules.resource.dataResource.domain; +import com.alibaba.fastjson.JSONObject; +import io.renren.common.utils.Result; +import io.renren.common.utils.SpringContextUtils; import io.renren.modules.resource.dataResource.AbstractDataResourceService; import io.renren.modules.resource.dto.GetDataResourceListDto; +import io.swagger.annotations.ApiParam; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpHeaders; +import org.springframework.http.MediaType; +import org.springframework.web.client.RestTemplate; + +import java.nio.charset.Charset; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; /** * 青岛市局数据资源 @@ -11,8 +26,64 @@ import org.slf4j.LoggerFactory; public class TsingtaoDataResourceService extends AbstractDataResourceService { private static final Logger logger = LoggerFactory.getLogger(TsingtaoDataResourceService.class); + + private static RestTemplate restTemplate; + + { + TsingtaoDataResourceService.restTemplate = SpringContextUtils.getBean(RestTemplate.class); + } + + @Override public Object getDataResource(GetDataResourceListDto dto) { - return null; + + Integer page = dto.getPageNum(); + Integer size = dto.getPageSize(); + String pxcol = dto.getOrderField(); + String order = dto.getOrderType(); + String bmname = dto.getServiceName(); + String zyname = dto.getServiceName(); + + if (page == null) page = 1; + if (size == null) size = 10; + if (pxcol == null) pxcol = "fbrq"; + if (order == null) order = "desc"; + + String url = "http://15.72.158.81/zyjk/ZywMessage.asmx"; + String parame = "\n" + + "\n" + + " \n" + + String.format("%d\n %d\n",page, size) + + String.format("%s\n %s\n",pxcol, order); + if (bmname != null){ + parame = parame + String.format("%s",bmname); + } + if (zyname != null) { + parame = parame + String.format("%s",zyname); + } + parame = parame + ""; + HttpHeaders requestHeaders = new HttpHeaders(); + requestHeaders.set("SOAPAction", "http://tempuri.org/ZWCJ_mainPort"); + requestHeaders.setContentType(new MediaType("text","xml", Charset.forName("utf-8"))); + HttpEntity requestEntity = new HttpEntity(parame, requestHeaders); + try { + String body = restTemplate.postForEntity(url, requestEntity, String.class).getBody(); + String startTag = ""; + String endTag = ""; + String json = body.substring(body.indexOf(startTag) + startTag.length(), body.indexOf(endTag)); + HashMap result = JSONObject.parseObject(json, HashMap.class); + + List rows = (List) result.get("data"); + List objects = rows.stream() + .filter(item -> item.get("main") != null) + .map(item -> item.get("main")) + .collect(Collectors.toList()); + result.put("data", objects); + + return result; + } catch (Exception e) { + e.printStackTrace(); + return null; + } } }