guang
2023-07-28 55697aaa2e4974d5b443e731581e4c50609946b7
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
package com.hx.mp.util;
 
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.security.KeyManagementException;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.UnrecoverableKeyException;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import java.util.SortedMap;
 
import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSocketFactory;
 
import org.dom4j.Document;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
 
/**
 * �Ƹ�ͨhttp����https����ͨ�ſͻ���<br/>
 * ========================================================================<br/>
 * api˵����<br/>
 * setReqContent($reqContent),�����������ݣ�����post��get������get��ʽ�ṩ<br/>
 * getResContent(), ��ȡӦ������<br/>
 * setMethod(method),�������󷽷�,post����get<br/>
 * getErrInfo(),��ȡ������Ϣ<br/>
 * setCertInfo(certFile, certPasswd),����֤�飬˫��httpsʱ��Ҫʹ��<br/>
 * setCaInfo(caFile), ����CA����ʽδpem���������򲻼��<br/>
 * setTimeOut(timeOut)�� ���ó�ʱʱ�䣬��λ��<br/>
 * getResponseCode(), ȡ���ص�http״̬��<br/>
 * call(),������ýӿ�<br/>
 * getCharset()/setCharset(),�ַ����<br/>
 * 
 * ========================================================================<br/>
 *
 */
public class TenpayHttpClient {
    
    private static final String USER_AGENT_VALUE = 
        "Mozilla/4.0 (compatible; MSIE 6.0; Windows XP)";
    
    private static final String JKS_CA_FILENAME = 
        "tenpay_cacert.jks";
    
    private static final String JKS_CA_ALIAS = "tenpay";
    
    private static final String JKS_CA_PASSWORD = "";
    
    /** ca֤���ļ� */
    private File caFile;
    
    /** ֤���ļ� */
    private File certFile;
    
    /** ֤������ */
    private String certPasswd;
    
    /** �������ݣ�����post��get������get��ʽ�ṩ */
    private String reqContent;
    
    /** Ӧ������ */
    private String resContent;
    
    /** ���󷽷� */
    private String method;
    
    /** ������Ϣ */
    private String errInfo;
    
    /** ��ʱʱ��,����Ϊ��λ */
    private int timeOut;
    
    /** httpӦ����� */
    private int responseCode;
    
    /** �ַ���� */
    private String charset;
    
    private InputStream inputStream;
 
    private RequestHandler reqHandler;//方便取值所用(quan)
    
    /*public TenpayHttpClient() {
        this.caFile = null;
        this.certFile = null;
        this.certPasswd = "";
        
        this.reqContent = "";
        this.resContent = "";
        this.method = "POST";
        this.errInfo = "";
        this.timeOut = 30;//30��
        
        this.responseCode = 0;
        this.charset = "UTF-8";
        
        this.inputStream = null;
    }*/
    
    public TenpayHttpClient() {
        this.caFile = null;
        this.certFile = null;
        this.certPasswd = "";
        
        this.reqContent = "";
        this.resContent = "";
        this.method = "POST";
        this.errInfo = "";
        this.timeOut = 30;//30��
        
        this.responseCode = 0;
        this.charset = "UTF-8";
        
        this.inputStream = null;
    }
 
    /**
     * ����֤����Ϣ
     * @param certFile ֤���ļ�
     * @param certPasswd ֤������
     */
    public void setCertInfo(File certFile, String certPasswd) {
        this.certFile = certFile;
        this.certPasswd = certPasswd;
    }
    
    /**
     * ����ca
     * @param caFile
     */
    public void setCaInfo(File caFile) {
        this.caFile = caFile;
    }
    
    /**
     * ������������
     * @param reqContent ��������
     */
    public void setReqContent(String reqContent) {
        this.reqContent = reqContent;
    }
    
    /**
     * ��ȡ�������
     * @return String
     * @throws IOException 
     */
    public String getResContent() {
        try {
            this.doResponse();
        } catch (IOException e) {
            this.errInfo = e.getMessage();
            //return "";
        }
        
        return this.resContent;
    }
    
    /**
     * �������󷽷�post����get
     * @param method ���󷽷�post/get
     */
    public void setMethod(String method) {
        this.method = method;
    }
    
    /**
     * ��ȡ������Ϣ
     * @return String
     */
    public String getErrInfo() {
        return this.errInfo;
    }
    
    /**
     * ���ó�ʱʱ��,����Ϊ��λ
     * @param timeOut ��ʱʱ��,����Ϊ��λ
     */
    public void setTimeOut(int timeOut) {
        this.timeOut = timeOut;
    }
    
    /**
     * ��ȡhttp״̬��
     * @return int
     */
    public int getResponseCode() {
        return this.responseCode;
    }
    
    /**
     * ִ��http���á�true:�ɹ� false:ʧ��
     * @return boolean
     */
/*    public boolean call() {
        
        boolean isRet = false;
        
        
        //http
        if(null == this.caFile && null == this.certFile) {
            System.out.println("没有CA");
            try {
                this.callHttp();
                isRet = true;
            } catch (IOException e) {
                this.errInfo = e.getMessage();
            }
            return isRet;
        }
        
        //https
        try {
            this.callHttps();
            isRet = true;
        } catch (UnrecoverableKeyException e) {
            this.errInfo = e.getMessage();
        } catch (KeyManagementException e) {
            this.errInfo = e.getMessage();
        } catch (CertificateException e) {
            this.errInfo = e.getMessage();
        } catch (KeyStoreException e) {
            this.errInfo = e.getMessage();
        } catch (NoSuchAlgorithmException e) {
            this.errInfo = e.getMessage();
        } catch (IOException e) {
            this.errInfo = e.getMessage();
        }
        
        return isRet;
        
    }*/
    
    /**
     * ִ��http���á�true:�ɹ� false:ʧ��
     * @return boolean
     */
    public boolean call() {
        
        boolean isRet = false;
        
        
        //http
        if(null == this.caFile && null == this.certFile) {
            System.out.println("没有CA");
            try {
                this.callHttp();
                isRet = true;
            } catch (IOException e) {
                this.errInfo = e.getMessage();
            }
            return isRet;
        }
        
        //https
        try {
            this.callHttps();
            isRet = true;
        } catch (UnrecoverableKeyException e) {
            this.errInfo = e.getMessage();
        } catch (KeyManagementException e) {
            this.errInfo = e.getMessage();
        } catch (CertificateException e) {
            this.errInfo = e.getMessage();
        } catch (KeyStoreException e) {
            this.errInfo = e.getMessage();
        } catch (NoSuchAlgorithmException e) {
            this.errInfo = e.getMessage();
        } catch (IOException e) {
            this.errInfo = e.getMessage();
        }
        
        return isRet;
        
    }
    
    protected void callHttp() throws IOException {
        
        if("POST".equals(this.method.toUpperCase())) {
            String url = HttpClientUtil.getURL(this.reqContent);
            System.out.println("tenpayHttpClient:url:"+url);
            //String queryString = HttpClientUtil.getQueryString(this.reqContent);
            //byte[] postData = queryString.getBytes(this.charset);
            
            String queryString = createXmlPosData();
            byte[] postData = queryString.getBytes(this.charset);
            this.httpPostMethod(url, postData);
            
            return ;
        }
        
        this.httpGetMethod(this.reqContent);
        
    } 
    
    protected void callHttps() throws IOException, CertificateException,
            KeyStoreException, NoSuchAlgorithmException,
            UnrecoverableKeyException, KeyManagementException {
        // caĿ¼
        String caPath = this.caFile.getParent();
 
        System.out.println("caPath:"+caPath);
        File jksCAFile = new File(caPath + "/"
                + TenpayHttpClient.JKS_CA_FILENAME);
        if (!jksCAFile.isFile()) {
            X509Certificate cert = (X509Certificate) HttpClientUtil
                    .getCertificate(this.caFile);
 
            FileOutputStream out = new FileOutputStream(jksCAFile);
 
            // store jks file
            HttpClientUtil.storeCACert(cert, TenpayHttpClient.JKS_CA_ALIAS,
                    TenpayHttpClient.JKS_CA_PASSWORD, out);
 
            out.close();
 
        }
 
        FileInputStream trustStream = new FileInputStream(jksCAFile);
        FileInputStream keyStream = new FileInputStream(this.certFile);
 
        SSLContext sslContext = HttpClientUtil.getSSLContext(trustStream,
                TenpayHttpClient.JKS_CA_PASSWORD, keyStream, this.certPasswd);
        
        //�ر���
        keyStream.close();
        trustStream.close();
        
        if("POST".equals(this.method.toUpperCase())) {
            String url = HttpClientUtil.getURL(this.reqContent);
            
            //原本是直接参数转为字节数组的,现在组拼xml
            //String queryString = HttpClientUtil.getQueryString(this.reqContent);//获取链接下面的内容
            //byte[] postData = queryString.getBytes(this.charset);//把参数转为字节数组
            
            //先获取参数
            String queryString = createXmlPosData();    
            
            byte[] postData = queryString.getBytes(this.charset);//把参数转为字节数组
            
            this.httpsPostMethod(url, postData, sslContext);
            
            return ;
        }
        
        this.httpsGetMethod(this.reqContent, sslContext);
 
    }
    
    /**
     * ��http post��ʽͨ��
     * @param url
     * @param postData
     * @throws IOException
     */
    protected void httpPostMethod(String url, byte[] postData)
            throws IOException {
 
        HttpURLConnection conn = HttpClientUtil.getHttpURLConnection(url);
 
        this.doPost(conn, postData);
    }
    
    /**
     * ��http get��ʽͨ��
     * 
     * @param url
     * @throws IOException
     */
    protected void httpGetMethod(String url) throws IOException {
        
        HttpURLConnection httpConnection =
            HttpClientUtil.getHttpURLConnection(url);
        
        this.setHttpRequest(httpConnection);
        
        httpConnection.setRequestMethod("GET");
        
        this.responseCode = httpConnection.getResponseCode();
        
        this.inputStream = httpConnection.getInputStream();
        
    }
    
    /**
     * ��https get��ʽͨ��
     * @param url
     * @param sslContext
     * @throws IOException
     */
    protected void httpsGetMethod(String url, SSLContext sslContext)
            throws IOException {
 
        SSLSocketFactory sf = sslContext.getSocketFactory();
 
        HttpsURLConnection conn = HttpClientUtil.getHttpsURLConnection(url);
 
        conn.setSSLSocketFactory(sf);
 
        this.doGet(conn);
 
    }
    
    //提交https post 数据 s
    protected void httpsPostMethod(String url, byte[] postData,
            SSLContext sslContext) throws IOException {
 
        SSLSocketFactory sf = sslContext.getSocketFactory();
 
        HttpsURLConnection conn = HttpClientUtil.getHttpsURLConnection(url);
 
        conn.setSSLSocketFactory(sf);
 
        this.doPost(conn, postData);
 
    }
    
    /**
     * ����http����Ĭ������
     * @param httpConnection
     */
    protected void setHttpRequest(HttpURLConnection httpConnection) {
        
        //�������ӳ�ʱʱ��
        httpConnection.setConnectTimeout(this.timeOut * 1000);
        
        //User-Agent
        httpConnection.setRequestProperty("User-Agent", 
                TenpayHttpClient.USER_AGENT_VALUE);
        
        //��ʹ�û���
        httpConnection.setUseCaches(false);
        
        //�����������
        httpConnection.setDoInput(true);
        httpConnection.setDoOutput(true);
        
    }
    
    /**
     * ����Ӧ��
     * @throws IOException
     */
    protected void doResponse() throws IOException {
        
        if(null == this.inputStream) {
            return;
        }
 
        //��ȡӦ������
        this.resContent=HttpClientUtil.InputStreamTOString(this.inputStream,this.charset); 
        
    //    System.out.println("tenpayHttpClinet:385:"+resContent);
        //�ر�������
        this.inputStream.close();
        
    }
    
    /**
     * post��ʽ����
     * @param conn
     * @param postData
     * @throws IOException
     */
    protected void doPost(HttpURLConnection conn, byte[] postData)
            throws IOException {
 
        // ��post��ʽͨ��
        conn.setRequestMethod("POST");
 
        // ��������Ĭ������
        this.setHttpRequest(conn);
 
        // Content-Type
        conn.setRequestProperty("Content-Type",
                "application/x-www-form-urlencoded");
 
        BufferedOutputStream out = new BufferedOutputStream(conn
                .getOutputStream());
 
        final int len = 1024; // 1KB
        HttpClientUtil.doOutput(out, postData, len);
 
        // �ر���
        out.close();
 
        // ��ȡ��Ӧ����״̬��
        this.responseCode = conn.getResponseCode();
 
        // ��ȡӦ��������
        this.inputStream = conn.getInputStream();
 
    }
    
    /**
     * get��ʽ����
     * @param conn
     * @throws IOException
     */
    protected void doGet(HttpURLConnection conn) throws IOException {
        
        //��GET��ʽͨ��
        conn.setRequestMethod("GET");
        
        //��������Ĭ������
        this.setHttpRequest(conn);
        
        //��ȡ��Ӧ����״̬��
        this.responseCode = conn.getResponseCode();
        
        //��ȡӦ��������
        this.inputStream = conn.getInputStream();
    }
    
    public void setRequestHandler(RequestHandler reqHandler) {
        this.reqHandler = reqHandler;
    }
    
    
    //组建xml格式传递参数
    @SuppressWarnings({ "rawtypes", "unused" })
    public String createXmlPosData(){
        //先获取参数
        Document document = DocumentHelper.createDocument();
        Element root = document.addElement("xml");
        
        if(reqHandler==null)throw new RuntimeException("请先设入reqHandler");
        
        SortedMap parameters = reqHandler.getAllParameters();
        Set es = reqHandler.getAllParameters().entrySet();
        Iterator it = es.iterator();
        while(it.hasNext()) {
            Map.Entry entry = (Map.Entry)it.next();
            String k = (String)entry.getKey();
            String v = (String)entry.getValue();
            
            Element ToUserName = root.addElement(k);
            ToUserName.addText(v);
        }
        
        String queryString = document.asXML();//转为String
        
        queryString = queryString.replace("<?xml version=\"1.0\" encoding=\"UTF-8\"?>", "").trim();
        
        System.out.println("xml:"+queryString);
        return queryString;
    }
    
}