|
@@ -1,10 +1,23 @@
|
|
|
package com.scbfkj.uni.process;
|
|
|
|
|
|
+import org.apache.hc.client5.http.impl.classic.CloseableHttpClient;
|
|
|
+import org.apache.hc.client5.http.impl.classic.HttpClientBuilder;
|
|
|
+import org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManagerBuilder;
|
|
|
+import org.apache.hc.client5.http.io.HttpClientConnectionManager;
|
|
|
+import org.apache.hc.client5.http.socket.LayeredConnectionSocketFactory;
|
|
|
+import org.apache.hc.client5.http.ssl.NoopHostnameVerifier;
|
|
|
+import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactory;
|
|
|
+import org.apache.hc.core5.ssl.SSLContexts;
|
|
|
+import org.apache.hc.core5.ssl.TrustStrategy;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
-import org.springframework.http.*;
|
|
|
+import org.springframework.http.HttpEntity;
|
|
|
+import org.springframework.http.HttpHeaders;
|
|
|
+import org.springframework.http.HttpMethod;
|
|
|
+import org.springframework.http.MediaType;
|
|
|
+import org.springframework.http.ResponseEntity;
|
|
|
+import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
|
|
|
import org.springframework.http.converter.StringHttpMessageConverter;
|
|
|
-import org.springframework.util.MultiValueMap;
|
|
|
import org.springframework.web.client.RestTemplate;
|
|
|
|
|
|
import com.fasterxml.jackson.databind.JsonNode;
|
|
@@ -13,7 +26,11 @@ import com.scbfkj.uni.library.DataFormatUtil;
|
|
|
import com.scbfkj.uni.library.UniReturnUtil;
|
|
|
import com.scbfkj.uni.system.Config;
|
|
|
|
|
|
+import javax.net.ssl.SSLContext;
|
|
|
import java.nio.charset.StandardCharsets;
|
|
|
+import java.security.KeyManagementException;
|
|
|
+import java.security.KeyStoreException;
|
|
|
+import java.security.NoSuchAlgorithmException;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
@@ -49,12 +66,12 @@ public class Web {
|
|
|
*
|
|
|
* @throws Exception 抛出异常的情况
|
|
|
*/
|
|
|
- public Map<String, Object> execWebApiByDataSourceId(
|
|
|
- String dataSourceId, Object headers, String method, Object defaultBody) throws Exception {
|
|
|
+ public Map<String, Object> execWebApiByDataSourceId(String dataSourceId, Map<String, String> headers, String method,
|
|
|
+ Object defaultBody) throws Exception {
|
|
|
Map<String, Object> config = queryConnectionStr(dataSourceId); // 查询数据源配置
|
|
|
String host;
|
|
|
if (Objects.isNull(headers)) {
|
|
|
- headers = config.get("headers");
|
|
|
+ headers = (Map<String, String>) DataFormatUtil.toMap(DataFormatUtil.toString(config.get("header")));
|
|
|
}
|
|
|
if (Objects.isNull(method)) {
|
|
|
method = "post";
|
|
@@ -76,7 +93,7 @@ public class Web {
|
|
|
*
|
|
|
* @return 执行结果
|
|
|
*/
|
|
|
- public Map<String, Object> execWebApi(Object headers, String method, Object defaultBody, String url) {
|
|
|
+ public Map<String, Object> execWebApi(Map<String, String> headers, String method, Object defaultBody, String url) {
|
|
|
logger.info("headers: {}", headers);
|
|
|
logger.info("method: {}", method);
|
|
|
logger.info("body: {}", defaultBody);
|
|
@@ -85,13 +102,6 @@ public class Web {
|
|
|
if (! "0".equals(restTemplateResult.get("code"))) {
|
|
|
return UniReturnUtil.fail(restTemplateResult.get("message").toString());
|
|
|
}
|
|
|
- if (headers instanceof Map<?, ?> temeMap) {
|
|
|
- temeMap.putAll((Map) baseHeader);
|
|
|
- webApiHeader.clear();
|
|
|
- for (Map.Entry<?, ?> entry : temeMap.entrySet()) {
|
|
|
- webApiHeader.add((String) entry.getKey(), DataFormatUtil.toString(entry.getValue()));
|
|
|
- }
|
|
|
- }
|
|
|
try {
|
|
|
Map<String, Object> result = sendWebApiRequest(defaultBody);
|
|
|
return UniReturnUtil.success(result);
|
|
@@ -109,20 +119,39 @@ public class Web {
|
|
|
*/
|
|
|
private Map<String, Object> sendWebApiRequest(Object defaultBody) {
|
|
|
try {
|
|
|
- HttpEntity<Object> request = new HttpEntity<>(defaultBody, webApiHeader);
|
|
|
+ MediaType contentType = webApiHeader.getContentType();
|
|
|
+ if (MediaType.APPLICATION_FORM_URLENCODED.equals(contentType)) {
|
|
|
+ String body = DataFormatUtil.toString(defaultBody);
|
|
|
+ if (body != null) {
|
|
|
+ webApiHeader.setContentLength(body.trim().length());
|
|
|
+ defaultBody = body.trim();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ HttpHeaders headers = new HttpHeaders();
|
|
|
+ headers.putAll(webApiHeader);
|
|
|
+ HttpEntity<Object> entity = new HttpEntity<>(defaultBody.toString().trim(), headers);
|
|
|
Object responseEntity = null;
|
|
|
switch (webapiMethod) {
|
|
|
case "get" -> {
|
|
|
- HttpHeaders headers = new HttpHeaders();
|
|
|
- webApiHeader.forEach((key, value) -> headers.set(key, value.toString()));
|
|
|
- HttpEntity<MultiValueMap<String, String>> entity = new HttpEntity<>(headers);
|
|
|
ResponseEntity<JsonNode> response =
|
|
|
restTemplate.exchange(webapiURL, HttpMethod.GET, entity, JsonNode.class);
|
|
|
responseEntity = response.getBody();
|
|
|
}
|
|
|
- case "put" -> restTemplate.put(webapiURL, request);
|
|
|
- case "delete" -> restTemplate.delete(webapiURL, request);
|
|
|
- default -> responseEntity = restTemplate.postForObject(webapiURL, request, Object.class);
|
|
|
+ case "put" -> {
|
|
|
+ ResponseEntity<JsonNode> response =
|
|
|
+ restTemplate.exchange(webapiURL, HttpMethod.PUT, entity, JsonNode.class);
|
|
|
+ responseEntity = response.getBody();
|
|
|
+ }
|
|
|
+ case "delete" -> {
|
|
|
+ ResponseEntity<JsonNode> response =
|
|
|
+ restTemplate.exchange(webapiURL, HttpMethod.DELETE, entity, JsonNode.class);
|
|
|
+ responseEntity = response.getBody();
|
|
|
+ }
|
|
|
+ default -> {
|
|
|
+ ResponseEntity<String> response =
|
|
|
+ restTemplate.exchange(webapiURL, HttpMethod.POST, entity, String.class);
|
|
|
+ responseEntity = response.getBody();
|
|
|
+ }
|
|
|
}
|
|
|
if (responseEntity == null && (webapiMethod.equals("put") || webapiMethod.equals("delete"))) {
|
|
|
return UniReturnUtil.success(null);
|
|
@@ -149,24 +178,20 @@ public class Web {
|
|
|
*
|
|
|
* @return 初始化结果
|
|
|
*/
|
|
|
- private Map<String, Object> initWebApiParams(Object headers, String method, String url) {
|
|
|
+ private Map<String, Object> initWebApiParams(Map<String, String> headers, String method, String url) {
|
|
|
try {
|
|
|
if (restTemplate == null) {
|
|
|
webapiURL = url;
|
|
|
if (Objects.isNull(webapiURL)) {
|
|
|
return UniReturnUtil.fail("webapi请求地址为空");
|
|
|
}
|
|
|
- Object tempHeaders = headers;
|
|
|
webApiHeader = new HttpHeaders();
|
|
|
- if (Objects.isNull(tempHeaders)) {
|
|
|
+ if (Objects.isNull(headers)) {
|
|
|
webApiHeader.setContentType(MediaType.APPLICATION_JSON);
|
|
|
}
|
|
|
- if (tempHeaders instanceof Map<?, ?> temp) {
|
|
|
- baseHeader = (Map<String, Object>) temp;
|
|
|
- if (! baseHeader.isEmpty()) {
|
|
|
- for (Map.Entry<String, Object> entry : baseHeader.entrySet()) {
|
|
|
- webApiHeader.add(entry.getKey(), DataFormatUtil.toString(entry.getValue()));
|
|
|
- }
|
|
|
+ if (! headers.isEmpty()) {
|
|
|
+ for (Map.Entry<String, String> entry : headers.entrySet()) {
|
|
|
+ webApiHeader.add(entry.getKey(), entry.getValue());
|
|
|
}
|
|
|
}
|
|
|
if (Objects.nonNull(method)) {
|
|
@@ -174,7 +199,7 @@ public class Web {
|
|
|
} else {
|
|
|
webapiMethod = "post";
|
|
|
}
|
|
|
- restTemplate = new RestTemplate();
|
|
|
+ restTemplate = restTemplate();
|
|
|
restTemplate.getMessageConverters().set(1, new StringHttpMessageConverter(StandardCharsets.UTF_8));
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
@@ -183,6 +208,33 @@ public class Web {
|
|
|
return UniReturnUtil.success(null);
|
|
|
}
|
|
|
|
|
|
+ public RestTemplate restTemplate() throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException {
|
|
|
+ CloseableHttpClient client =
|
|
|
+ HttpClientBuilder.create().setConnectionManager(getHttpClientConnectionManager()).build();
|
|
|
+ // 使用自定义的CloseableHttpClient创建ClientHttpRequestFactory
|
|
|
+ HttpComponentsClientHttpRequestFactory requestFactory = new HttpComponentsClientHttpRequestFactory(client);
|
|
|
+ // 使用自定义的ClientHttpRequestFactory创建RestTemplate
|
|
|
+ return new RestTemplate(requestFactory);
|
|
|
+ }
|
|
|
+
|
|
|
+ private static HttpClientConnectionManager getHttpClientConnectionManager()
|
|
|
+ throws NoSuchAlgorithmException, KeyStoreException, KeyManagementException {
|
|
|
+ return PoolingHttpClientConnectionManagerBuilder.create().setSSLSocketFactory(getSslConnectionSocketFactory())
|
|
|
+ .build();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 支持SSL
|
|
|
+ *
|
|
|
+ * @return SSLConnectionSocketFactory
|
|
|
+ */
|
|
|
+ private static LayeredConnectionSocketFactory getSslConnectionSocketFactory()
|
|
|
+ throws NoSuchAlgorithmException, KeyStoreException, KeyManagementException {
|
|
|
+ TrustStrategy acceptingTrustStrategy = (x509Certificates, s) -> true;
|
|
|
+ SSLContext sslContext = SSLContexts.custom().loadTrustMaterial(null, acceptingTrustStrategy).build();
|
|
|
+ return new SSLConnectionSocketFactory(sslContext, NoopHostnameVerifier.INSTANCE);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 查询数据源连接字符串
|
|
|
*
|