HttpUtils.java
19.1 KB
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
package com.jfinal.weixin.sdk.utils;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.security.KeyStore;
import java.security.SecureRandom;
import java.util.Map;
import java.util.Map.Entry;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import javax.net.ssl.KeyManager;
import javax.net.ssl.KeyManagerFactory;
import javax.net.ssl.SSLContext;
import com.jfinal.kit.StrKit;
import com.jfinal.weixin.sdk.api.MediaFile;
/**
* JFinal-weixin Http请求工具类
* @author L.cm
*/
public final class HttpUtils {
private HttpUtils() {}
public static String get(String url) {
return delegate.get(url);
}
public static String get(String url, Map<String, String> queryParas) {
return delegate.get(url, queryParas);
}
public static String post(String url, String data) {
return delegate.post(url, data);
}
public static String postSSL(String url, String data, String certPath, String certPass) {
return delegate.postSSL(url, data, certPath, certPass);
}
public static MediaFile download(String url) {
return delegate.download(url);
}
public static InputStream download(String url, String params){
return delegate.download(url, params);
}
public static String upload(String url, File file, String params) {
return delegate.upload(url, file, params);
}
/**
* http请求工具 委托
* 优先使用OkHttp
* 最后使用JFinal HttpKit
*/
private interface HttpDelegate {
String get(String url);
String get(String url, Map<String, String> queryParas);
String post(String url, String data);
String postSSL(String url, String data, String certPath, String certPass);
MediaFile download(String url);
InputStream download(String url, String params);
String upload(String url, File file, String params);
}
// http请求工具代理对象
private static final HttpDelegate delegate;
static {
HttpDelegate delegateToUse = null;
// okhttp3.OkHttpClient?
if (ClassUtils.isPresent("okhttp3.OkHttpClient", HttpUtils.class.getClassLoader())) {
delegateToUse = new OkHttp3Delegate();
}
// com.squareup.okhttp.OkHttpClient?
else if (ClassUtils.isPresent("com.squareup.okhttp.OkHttpClient", HttpUtils.class.getClassLoader())) {
delegateToUse = new OkHttpDelegate();
}
// com.jfinal.kit.HttpKit
else if (ClassUtils.isPresent("com.jfinal.kit.HttpKit", HttpUtils.class.getClassLoader())) {
delegateToUse = new HttpKitDelegate();
}
delegate = delegateToUse;
}
/**
* OkHttp2代理
*/
private static class OkHttpDelegate implements HttpDelegate {
private final com.squareup.okhttp.OkHttpClient httpClient;
private final com.squareup.okhttp.OkHttpClient httpsClient;
Lock lock = new ReentrantLock();
public OkHttpDelegate() {
httpClient = new com.squareup.okhttp.OkHttpClient();
// 分别设置Http的连接,写入,读取的超时时间
httpClient.setConnectTimeout(10, TimeUnit.SECONDS);
httpClient.setWriteTimeout(10, TimeUnit.SECONDS);
httpClient.setReadTimeout(30, TimeUnit.SECONDS);
httpsClient = httpClient.clone();
}
private static final com.squareup.okhttp.MediaType CONTENT_TYPE_FORM =
com.squareup.okhttp.MediaType.parse("application/x-www-form-urlencoded");
private String exec(com.squareup.okhttp.Request request) {
try {
com.squareup.okhttp.Response response = httpClient.newCall(request).execute();
if (!response.isSuccessful()) throw new RuntimeException("Unexpected code " + response);
return response.body().string();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public String get(String url) {
com.squareup.okhttp.Request request = new com.squareup.okhttp.Request.Builder().url(url).get().build();
return exec(request);
}
@Override
public String get(String url, Map<String, String> queryParas) {
com.squareup.okhttp.HttpUrl.Builder urlBuilder = com.squareup.okhttp.HttpUrl.parse(url).newBuilder();
for (Entry<String, String> entry : queryParas.entrySet()) {
urlBuilder.addQueryParameter(entry.getKey(), entry.getValue());
}
com.squareup.okhttp.HttpUrl httpUrl = urlBuilder.build();
com.squareup.okhttp.Request request = new com.squareup.okhttp.Request.Builder().url(httpUrl).get().build();
return exec(request);
}
@Override
public String post(String url, String params) {
com.squareup.okhttp.RequestBody body = com.squareup.okhttp.RequestBody.create(CONTENT_TYPE_FORM, params);
com.squareup.okhttp.Request request = new com.squareup.okhttp.Request.Builder()
.url(url)
.post(body)
.build();
return exec(request);
}
@Override
public String postSSL(String url, String data, String certPath, String certPass) {
com.squareup.okhttp.RequestBody body = com.squareup.okhttp.RequestBody.create(CONTENT_TYPE_FORM, data);
com.squareup.okhttp.Request request = new com.squareup.okhttp.Request.Builder()
.url(url)
.post(body)
.build();
InputStream inputStream = null;
try {
// 移动到最开始,certPath io异常unlock会报错
lock.lock();
KeyStore clientStore = KeyStore.getInstance("PKCS12");
inputStream = new FileInputStream(certPath);
clientStore.load(inputStream, certPass.toCharArray());
KeyManagerFactory kmf = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());
kmf.init(clientStore, certPass.toCharArray());
KeyManager[] kms = kmf.getKeyManagers();
SSLContext sslContext = SSLContext.getInstance("TLSv1");
sslContext.init(kms, null, new SecureRandom());
httpsClient.setSslSocketFactory(sslContext.getSocketFactory());
com.squareup.okhttp.Response response = httpsClient.newCall(request).execute();
if (!response.isSuccessful()) throw new RuntimeException("Unexpected code " + response);
return response.body().string();
} catch (Exception e) {
throw new RuntimeException(e);
} finally {
IOUtils.closeQuietly(inputStream);
lock.unlock();
}
}
@Override
public MediaFile download(String url) {
com.squareup.okhttp.Request request = new com.squareup.okhttp.Request.Builder().url(url).get().build();
try {
com.squareup.okhttp.Response response = httpClient.newCall(request).execute();
if (!response.isSuccessful()) throw new RuntimeException("Unexpected code " + response);
com.squareup.okhttp.ResponseBody body = response.body();
com.squareup.okhttp.MediaType mediaType = body.contentType();
MediaFile mediaFile = new MediaFile();
if (mediaType.type().equals("text")) {
mediaFile.setError(body.string());
} else {
BufferedInputStream bis = new BufferedInputStream(body.byteStream());
String ds = response.header("Content-disposition");
String fullName = ds.substring(ds.indexOf("filename=\"") + 10, ds.length() - 1);
String relName = fullName.substring(0, fullName.lastIndexOf("."));
String suffix = fullName.substring(relName.length()+1);
mediaFile.setFullName(fullName);
mediaFile.setFileName(relName);
mediaFile.setSuffix(suffix);
mediaFile.setContentLength(body.contentLength() + "");
mediaFile.setContentType(body.contentType().toString());
mediaFile.setFileStream(bis);
}
return mediaFile;
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public InputStream download(String url, String params) {
com.squareup.okhttp.Request request;
if (StrKit.notBlank(params)) {
com.squareup.okhttp.RequestBody body = com.squareup.okhttp.RequestBody.create(CONTENT_TYPE_FORM, params);
request = new com.squareup.okhttp.Request.Builder().url(url).post(body).build();
} else {
request = new com.squareup.okhttp.Request.Builder().url(url).get().build();
}
try {
com.squareup.okhttp.Response response = httpClient.newCall(request).execute();
if (!response.isSuccessful()) throw new RuntimeException("Unexpected code " + response);
return response.body().byteStream();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public String upload(String url, File file, String params) {
com.squareup.okhttp.RequestBody fileBody = com.squareup.okhttp.RequestBody
.create(com.squareup.okhttp.MediaType.parse("application/octet-stream"), file);
com.squareup.okhttp.MultipartBuilder builder = new com.squareup.okhttp.MultipartBuilder()
.type(com.squareup.okhttp.MultipartBuilder.FORM)
.addFormDataPart("media", file.getName(), fileBody);
if (StrKit.notBlank(params)) {
builder.addFormDataPart("description", params);
}
com.squareup.okhttp.RequestBody requestBody = builder.build();
com.squareup.okhttp.Request request = new com.squareup.okhttp.Request.Builder()
.url(url)
.post(requestBody)
.build();
return exec(request);
}
}
/**
* OkHttp3代理
*/
private static class OkHttp3Delegate implements HttpDelegate {
private okhttp3.OkHttpClient httpClient;
public OkHttp3Delegate() {
// 分别设置Http的连接,写入,读取的超时时间
httpClient = new okhttp3.OkHttpClient().newBuilder()
.connectTimeout(10, TimeUnit.SECONDS)
.writeTimeout(10, TimeUnit.SECONDS)
.readTimeout(30, TimeUnit.SECONDS)
.build();
}
private static final okhttp3.MediaType CONTENT_TYPE_FORM =
okhttp3.MediaType.parse("application/x-www-form-urlencoded");
private String exec(okhttp3.Request request) {
try {
okhttp3.Response response = httpClient.newCall(request).execute();
if (!response.isSuccessful()) throw new RuntimeException("Unexpected code " + response);
return response.body().string();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public String get(String url) {
okhttp3.Request request = new okhttp3.Request.Builder().url(url).get().build();
return exec(request);
}
@Override
public String get(String url, Map<String, String> queryParas) {
okhttp3.HttpUrl.Builder urlBuilder = okhttp3.HttpUrl.parse(url).newBuilder();
for (Entry<String, String> entry : queryParas.entrySet()) {
urlBuilder.addQueryParameter(entry.getKey(), entry.getValue());
}
okhttp3.HttpUrl httpUrl = urlBuilder.build();
okhttp3.Request request = new okhttp3.Request.Builder().url(httpUrl).get().build();
return exec(request);
}
@Override
public String post(String url, String params) {
okhttp3.RequestBody body = okhttp3.RequestBody.create(CONTENT_TYPE_FORM, params);
okhttp3.Request request = new okhttp3.Request.Builder()
.url(url)
.post(body)
.build();
return exec(request);
}
@Override
public String postSSL(String url, String data, String certPath, String certPass) {
okhttp3.RequestBody body = okhttp3.RequestBody.create(CONTENT_TYPE_FORM, data);
okhttp3.Request request = new okhttp3.Request.Builder()
.url(url)
.post(body)
.build();
InputStream inputStream = null;
try {
KeyStore clientStore = KeyStore.getInstance("PKCS12");
inputStream = new FileInputStream(certPath);
char[] passArray = certPass.toCharArray();
clientStore.load(inputStream, passArray);
KeyManagerFactory kmf = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());
kmf.init(clientStore, passArray);
KeyManager[] kms = kmf.getKeyManagers();
SSLContext sslContext = SSLContext.getInstance("TLSv1");
sslContext.init(kms, null, new SecureRandom());
okhttp3.OkHttpClient httpsClient = new okhttp3.OkHttpClient()
.newBuilder()
.connectTimeout(10, TimeUnit.SECONDS)
.writeTimeout(10, TimeUnit.SECONDS)
.readTimeout(30, TimeUnit.SECONDS)
.sslSocketFactory(sslContext.getSocketFactory())
.build();
okhttp3.Response response = httpsClient.newCall(request).execute();
if (!response.isSuccessful()) throw new RuntimeException("Unexpected code " + response);
return response.body().string();
} catch (Exception e) {
throw new RuntimeException(e);
} finally {
IOUtils.closeQuietly(inputStream);
}
}
@Override
public MediaFile download(String url) {
okhttp3.Request request = new okhttp3.Request.Builder().url(url).get().build();
try {
okhttp3.Response response = httpClient.newCall(request).execute();
if (!response.isSuccessful()) throw new RuntimeException("Unexpected code " + response);
okhttp3.ResponseBody body = response.body();
okhttp3.MediaType mediaType = body.contentType();
MediaFile mediaFile = new MediaFile();
if (mediaType.type().equals("text")) {
mediaFile.setError(body.string());
} else {
BufferedInputStream bis = new BufferedInputStream(body.byteStream());
String ds = response.header("Content-disposition");
String fullName = ds.substring(ds.indexOf("filename=\"") + 10, ds.length() - 1);
String relName = fullName.substring(0, fullName.lastIndexOf("."));
String suffix = fullName.substring(relName.length()+1);
mediaFile.setFullName(fullName);
mediaFile.setFileName(relName);
mediaFile.setSuffix(suffix);
mediaFile.setContentLength(body.contentLength() + "");
mediaFile.setContentType(body.contentType().toString());
mediaFile.setFileStream(bis);
}
return mediaFile;
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public InputStream download(String url, String params) {
okhttp3.Request request;
if (StrKit.notBlank(params)) {
okhttp3.RequestBody body = okhttp3.RequestBody.create(CONTENT_TYPE_FORM, params);
request = new okhttp3.Request.Builder().url(url).post(body).build();
} else {
request = new okhttp3.Request.Builder().url(url).get().build();
}
try {
okhttp3.Response response = httpClient.newCall(request).execute();
if (!response.isSuccessful()) throw new RuntimeException("Unexpected code " + response);
return response.body().byteStream();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public String upload(String url, File file, String params) {
okhttp3.RequestBody fileBody = okhttp3.RequestBody
.create(okhttp3.MediaType.parse("application/octet-stream"), file);
okhttp3.MultipartBody.Builder builder = new okhttp3.MultipartBody.Builder()
.setType(okhttp3.MultipartBody.FORM)
.addFormDataPart("media", file.getName(), fileBody);
if (StrKit.notBlank(params)) {
builder.addFormDataPart("description", params);
}
okhttp3.RequestBody requestBody = builder.build();
okhttp3.Request request = new okhttp3.Request.Builder()
.url(url)
.post(requestBody)
.build();
return exec(request);
}
}
/**
* HttpKit代理
*/
private static class HttpKitDelegate implements HttpDelegate {
@Override
public String get(String url) {
return com.jfinal.kit.HttpKit.get(url);
}
@Override
public String get(String url, Map<String, String> queryParas) {
return com.jfinal.kit.HttpKit.get(url, queryParas);
}
@Override
public String post(String url, String data) {
return com.jfinal.kit.HttpKit.post(url, data);
}
@Override
public String postSSL(String url, String data, String certPath, String certPass) {
return HttpKitExt.postSSL(url, data, certPath, certPass);
}
@Override
public MediaFile download(String url) {
try {
return HttpKitExt.download(url);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public InputStream download(String url, String params) {
try {
return HttpKitExt.downloadMaterial(url, params);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public String upload(String url, File file, String params) {
try {
return HttpKitExt.uploadMedia(url, file, params);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
}