summaryrefslogtreecommitdiffstats
path: root/lifecycle-test/src/main/java/org/openo/vnfsdk/lctest/common/util/RestfulClient.java
blob: 594cde17c123cef1453135bce22d66364dd7bfe1 (plain)
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
/**
 * Copyright 2017 Huawei Technologies Co., Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.openo.vnfsdk.lctest.common.util;

import java.io.File;
import java.io.IOException;

import org.apache.http.HttpEntity;
import org.apache.http.HttpHost;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.methods.HttpDelete;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.BasicResponseHandler;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class RestfulClient {
    private static final String HTTP = "http";
    private static final Logger logger = LoggerFactory.getLogger(RestfulClient.class);

    enum HttpMethod {
        GET, POST, PUT, DELETE
    }

    /**
     * execute http.
     * @param method http method
     * @param ip ip
     * @param port port
     * @param url url
     * @param body http body
     * @return RestResponse
     */
    public static RestResponse executeHttp(HttpMethod method, String ip, int port, String url,
            HttpEntity body) {
        CloseableHttpClient httpclient = HttpClients.createDefault();
        HttpResponse httpResponse = null;
        RestResponse result = new RestResponse();
        try {
            // specify the host, protocol, and port
            HttpHost target = new HttpHost(ip, port, HTTP);
            // specify the get request
            HttpRequest request = getRequest(method, url, body);
            httpResponse = httpclient.execute(target, request);
            HttpEntity entity = httpResponse.getEntity();
            if (entity != null) {
                result.setStatusCode(httpResponse.getStatusLine().getStatusCode());
                result.setResult(EntityUtils.toString(entity));
            }
        } catch (Exception e1) {
            logger.error("send get rest request error:", e1.getMessage());
        } finally {
            if (httpclient != null) {
                try {
                    httpclient.close();
                } catch (IOException e2) {
                    logger.error("close httpclient error:", e2.getMessage());
                }
            }
        }
        return result;
    }

    private static HttpRequest getRequest(HttpMethod method, String url, HttpEntity body) {
        HttpRequest request = null;
        switch (method) {
            case GET:
                request = new HttpGet(url);
                break;
            case POST:
                request = new HttpPost(url);
                ((HttpPost) request).setEntity(body);
                break;
            case PUT:
                request = new HttpPut(url);
                ((HttpPut) request).setEntity(body);
                break;
            case DELETE:
                request = new HttpDelete(url);
                break;
            default:
                break;
        }
        return request;
    }

    public static RestResponse get(String ip, int port, String url) {
        return executeHttp(HttpMethod.GET, ip, port, url, null);
    }

    public static RestResponse delete(String ip, int port, String url) {
        return executeHttp(HttpMethod.DELETE, ip, port, url, null);
    }

    public static RestResponse post(String ip, int port, String url, HttpEntity requestBody) {
        return executeHttp(HttpMethod.POST, ip, port, url, requestBody);
    }

    public static RestResponse sendPostRequest(String ip, String  port, String url, String strJson) 
    {
        RestResponse result = new RestResponse();
        CloseableHttpClient httpClient = HttpClientBuilder.create().build();
        HttpResponse httpResponse = null;
        try 
        {            
            String urlPost =  "http://" + ip + ":" + port + url;
            logger.info("URL formed for Post, URL :" + urlPost);
            logger.info("URL formed for Post, JSON :" + strJson);
            
            HttpPost request = new HttpPost(urlPost);
            
            StringEntity params = new StringEntity(strJson);
            request.addHeader("content-type", "application/json");
            request.setEntity(params);

            httpResponse = httpClient.execute(request);
            HttpEntity entity = httpResponse.getEntity();
            if (entity != null) 
            {
                result.setStatusCode(httpResponse.getStatusLine().getStatusCode());
                result.setResult(EntityUtils.toString(entity));
            }
        } 
        catch (Exception ex) 
        {
            logger.error("Send Post request error:", ex.getMessage());
        } 
        finally 
        {
            try {
                if(null != httpClient) {
                    httpClient.close();   
                }
            } 
            catch(IOException e){
                logger.error("IOException :Send Post request error:", e.getMessage());
            }
        }
        return result;
    }
}