陶杰
2024-08-22 ee9032d9baf5f33e376d2d2699136e0a7b26bec7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
package com.mzl.flower.utils;
 
import cn.hutool.core.util.StrUtil;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.apache.http.*;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.*;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
 
import java.io.IOException;
import java.net.URI;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
 
@Slf4j
public class HttpUtil {
 
    public static JSONArray doRequestReturnArray(String method, String url, String requestType, Map<String, Object> paramHeader
            , Map<String, Object> paramQuery, Map<String, Object> paramBody, Map<String, Object> paramInput) throws Exception {
        JSONArray result = null;
        HttpRequestBase request = getRequest(method, url, requestType, paramHeader, paramQuery, paramBody, paramInput);
 
        CloseableHttpClient httpclient = HttpClients.createDefault();
        HttpResponse response = httpclient.execute(request);
        String r = handleResponse(response);
        log.info("Http Service Task Result: " + r);
        String[] results = r.split(":", 2);
        if (StrUtil.equals(results[0], String.valueOf(HttpStatus.SC_OK))) {
            String data = results[1];
            if (StrUtil.isNotBlank(data)) {
                result = JSON.parseArray(data);
            }
        }
        httpclient.close();
 
        return result;
    }
 
    private static HttpRequestBase getRequest(String method, String url, String requestType, Map<String, Object> paramHeader
            , Map<String, Object> paramQuery, Map<String, Object> paramBody, Map<String, Object> paramInput) throws Exception {
        HttpRequestBase request = null;
        switch (method) {
            case HttpGet.METHOD_NAME:
                request = generateHttpGet(url, paramHeader, paramQuery, paramInput);
                break;
            case HttpPost.METHOD_NAME:
                request = generateHttpPost(url, requestType, paramHeader, paramQuery, paramBody, paramInput);
                break;
            case HttpPut.METHOD_NAME:
                request = generateHttpPut(url, requestType, paramHeader, paramQuery, paramBody, paramInput);
                break;
            case HttpDelete.METHOD_NAME:
                request = generateHttpDelete(url, paramHeader, paramQuery, paramInput);
                break;
            case HttpPatch.METHOD_NAME:
                break;
            default:
                throw new Exception(method + " HTTP method not supported");
        }
 
        return request;
    }
 
    public static JSONObject doRequest(String method, String url, String requestType, Map<String, Object> paramHeader
            , Map<String, Object> paramQuery, Map<String, Object> paramBody, Map<String, Object> paramInput) throws Exception {
        JSONObject result = null;
        HttpRequestBase request = getRequest(method, url, requestType, paramHeader, paramQuery, paramBody, paramInput);
 
        CloseableHttpClient httpclient = HttpClients.createDefault();
        HttpResponse response = httpclient.execute(request);
        String r = handleResponse(response);
        log.info("Http Service Task Result: " + r);
        String[] results = r.split(":", 2);
        if (StrUtil.equals(results[0], String.valueOf(HttpStatus.SC_OK))) {
            String data = results[1];
            if (StrUtil.isNotBlank(data)) {
                result = JSON.parseObject(data);
            }
        }
        httpclient.close();
 
        return result;
    }
 
    public static String doRequestReturnString(String method, String url, String requestType, Map<String, Object> paramHeader
            , Map<String, Object> paramQuery, Map<String, Object> paramBody, Map<String, Object> paramInput) throws Exception {
        HttpRequestBase request = getRequest(method, url, requestType, paramHeader, paramQuery, paramBody, paramInput);
 
        CloseableHttpClient httpclient = HttpClients.createDefault();
        HttpResponse response = httpclient.execute(request);
        String r = handleResponse(response);
        log.info("Http Service Task Result: " + r);
        String[] results = r.split(":", 2);
        if (StrUtil.equals(results[0], String.valueOf(HttpStatus.SC_OK))) {
            String data = results[1];
            if (StrUtil.isNotBlank(data)) {
                return data;
            }
        }
        httpclient.close();
 
        return "";
    }
 
    @SneakyThrows
    private static HttpGet generateHttpGet(String url, Map<String, Object> requestHeaders, Map<String, Object> requestQueries,
                                    Map<String, Object> requestInputParams) {
        HttpGet get = new HttpGet();
 
        for (Map.Entry<String, Object> entry : requestHeaders.entrySet()) {
            if (entry.getValue() instanceof String) {
                get.addHeader(entry.getKey(), (String) entry.getValue());
            }
        }
 
        URIBuilder uriBuilder = new URIBuilder(url);
        for (Map.Entry<String, Object> entry : requestQueries.entrySet()) {
            if (entry.getValue() instanceof String) {
                uriBuilder.setParameter(entry.getKey(), (String) entry.getValue());
            }
        }
        for (Map.Entry<String, Object> entry : requestInputParams.entrySet()) {
            if (entry.getValue() instanceof String) {
                uriBuilder.setParameter(entry.getKey(), (String) entry.getValue());
            }
        }
        URI uri = uriBuilder.build();
        get.setURI(uri);
        return get;
    }
 
    @SneakyThrows
    private static HttpPost generateHttpPost(String url, String requestType,
                                      Map<String, Object> requestHeaders, Map<String, Object> requestQueries,
                                      Map<String, Object> requestBodies, Map<String, Object> requestInputParams) {
        HttpPost post = new HttpPost();
 
        for (Map.Entry<String, Object> entry : requestHeaders.entrySet()) {
            if (entry.getValue() instanceof String) {
                post.addHeader(entry.getKey(), (String) entry.getValue());
            }
        }
 
        URIBuilder uriBuilder = new URIBuilder(url);
        if(requestQueries!=null){
            for (Map.Entry<String, Object> entry : requestQueries.entrySet()) {
                if (entry.getValue() instanceof String) {
                    uriBuilder.setParameter(entry.getKey(), (String) entry.getValue());
                }
            }
        }
 
        requestInputParams.putAll(requestBodies);
        if (StrUtil.equals("json", requestType)) {
            String inputParam = JSON.toJSONString(requestInputParams);
            log.info("Post param: " + inputParam);
            post.setEntity(new StringEntity(inputParam, "UTF-8"));
        }
 
        if (StrUtil.equals("form", requestType)) {
            List<BasicNameValuePair> pair = new ArrayList<>();
            for (Map.Entry<String, Object> entry : requestInputParams.entrySet()) {
                if (entry.getValue() instanceof String) {
                    pair.add(new BasicNameValuePair(entry.getKey(), (String) entry.getValue()));
                }
            }
            post.setEntity(new UrlEncodedFormEntity(pair));
        }
 
        URI uri = uriBuilder.build();
        post.setURI(uri);
        return post;
    }
 
    @SneakyThrows
    private static HttpPut generateHttpPut(String url, String requestType,
                                    Map<String, Object> requestHeaders, Map<String, Object> requestQueries,
                                    Map<String, Object> requestBodies, Map<String, Object> requestInputParams) {
        HttpPut put = new HttpPut();
 
        for (Map.Entry<String, Object> entry : requestHeaders.entrySet()) {
            if (entry.getValue() instanceof String) {
                put.addHeader(entry.getKey(), (String) entry.getValue());
            }
        }
 
        URIBuilder uriBuilder = new URIBuilder(url);
        for (Map.Entry<String, Object> entry : requestQueries.entrySet()) {
            if (entry.getValue() instanceof String) {
                uriBuilder.setParameter(entry.getKey(), (String) entry.getValue());
            }
        }
 
        requestInputParams.putAll(requestBodies);
        if (StrUtil.equals("json", requestType)) {
            String inputParam = JSON.toJSONString(requestInputParams);
            log.info("Post param: " + inputParam);
            put.setEntity(new StringEntity(inputParam, "UTF-8"));
        }
 
        if (StrUtil.equals("form", requestType)) {
            List<BasicNameValuePair> pair = new ArrayList<>();
            for (Map.Entry<String, Object> entry : requestInputParams.entrySet()) {
                if (entry.getValue() instanceof String) {
                    pair.add(new BasicNameValuePair(entry.getKey(), (String) entry.getValue()));
                }
            }
            put.setEntity(new UrlEncodedFormEntity(pair));
        }
 
        URI uri = uriBuilder.build();
        put.setURI(uri);
        return put;
    }
 
    @SneakyThrows
    private static HttpDelete generateHttpDelete(String url, Map<String, Object> requestHeaders, Map<String, Object> requestQueries,
                                          Map<String, Object> requestInputParams) {
        HttpDelete delete = new HttpDelete();
 
        for (Map.Entry<String, Object> entry : requestHeaders.entrySet()) {
            if (entry.getValue() instanceof String) {
                delete.addHeader(entry.getKey(), (String) entry.getValue());
            }
        }
 
        URIBuilder uriBuilder = new URIBuilder(url);
        for (Map.Entry<String, Object> entry : requestQueries.entrySet()) {
            if (entry.getValue() instanceof String) {
                uriBuilder.setParameter(entry.getKey(), (String) entry.getValue());
            }
        }
        for (Map.Entry<String, Object> entry : requestInputParams.entrySet()) {
            if (entry.getValue() instanceof String) {
                uriBuilder.setParameter(entry.getKey(), (String) entry.getValue());
            }
        }
        URI uri = uriBuilder.build();
        delete.setURI(uri);
        return delete;
    }
 
    private static String handleResponse(HttpResponse response) throws IOException {
        final StatusLine statusLine = response.getStatusLine();
        final HttpEntity entity = response.getEntity();
        if (statusLine.getStatusCode() != HttpStatus.SC_OK) {
            EntityUtils.consume(entity);
            return StrUtil.format("{}:{}", statusLine.getStatusCode(), statusLine.getReasonPhrase());
        }
        return StrUtil.format("{}:{}", statusLine.getStatusCode(),
                entity == null ? null : EntityUtils.toString(entity, Consts.UTF_8));
    }
 
    public static JSONObject processHttp(HttpUriRequest request) {
        CloseableHttpClient httpClient = HttpClientBuilder.create().build();
        CloseableHttpResponse response = null;
 
        String result = "";
        try {
            // 由客户端执行请求
            response = httpClient.execute(request);
            // 从响应模型中获取响应实体
            HttpEntity responseEntity = response.getEntity();
            StatusLine statusLine = response.getStatusLine();
            log.info("响应状态为:" + statusLine);
            if (statusLine.getStatusCode() == 200 && responseEntity != null) {
                result = EntityUtils.toString(responseEntity);
            }
        } catch (Exception e) {
            log.error(e.getMessage());
        } finally {
            try {
                // 释放资源
                if (httpClient != null) {
                    httpClient.close();
                }
                if (response != null) {
                    response.close();
                }
            } catch (Exception e) {
                log.error(e.getMessage(), e);
            }
        }
        log.info("==============> response: " + result);
        if(StringUtils.isNotEmpty(result)){
            return JSON.parseObject(result);
        }
 
        return null;
    }
}