8edc2b566a70bdb105d20826a952ff3284335645
[appc.git] / appc-adapters / appc-chef-adapter / appc-chef-adapter-bundle / src / main / java / org / onap / appc / adapter / chef / chefclient / impl / ChefApiClientImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.adapter.chef.chefclient.impl;
26
27 import java.io.IOException;
28 import java.net.URISyntaxException;
29 import org.apache.http.HttpEntity;
30 import org.apache.http.HttpResponse;
31 import org.apache.http.HttpStatus;
32 import org.apache.http.client.HttpClient;
33 import org.apache.http.util.EntityUtils;
34 import org.onap.appc.adapter.chef.chefclient.api.ChefApiClient;
35 import org.onap.appc.adapter.chef.chefclient.api.ChefResponse;
36 import org.onap.appc.adapter.chef.chefclient.impl.ChefRequestBuilder.OngoingRequestBuilder;
37
38 public class ChefApiClientImpl implements ChefApiClient {
39
40     private final HttpClient httpClient;
41     private final String endpoint;
42     private final HttpHeaderFactory httpHeaderFactory;
43
44     public ChefApiClientImpl(HttpClient httpClient, String endpoint, HttpHeaderFactory httpHeaderFactory) {
45         this.httpClient = httpClient;
46         this.endpoint = endpoint;
47         this.httpHeaderFactory = httpHeaderFactory;
48     }
49
50     @Override
51     public ChefResponse get(String path) {
52         OngoingRequestBuilder requestBuilder = ChefRequestBuilder.newRequestTo(endpoint)
53             .httpGet()
54             .withPath(path)
55             .withHeaders(httpHeaderFactory.create("GET", path, ""));
56         return execute(requestBuilder);
57     }
58
59     @Override
60     public ChefResponse delete(String path) {
61         OngoingRequestBuilder requestBuilder = ChefRequestBuilder.newRequestTo(endpoint)
62             .httpDelete()
63             .withPath(path)
64             .withHeaders(httpHeaderFactory.create("DELETE", path, ""));
65         return execute(requestBuilder);
66     }
67
68     @Override
69     public ChefResponse post(String path, String body) {
70         OngoingRequestBuilder requestBuilder = ChefRequestBuilder.newRequestTo(endpoint)
71             .httpPost(body)
72             .withPath(path)
73             .withHeaders(httpHeaderFactory.create("POST", path, body));
74         return execute(requestBuilder);
75     }
76
77     @Override
78     public ChefResponse put(String path, String body) {
79         OngoingRequestBuilder requestBuilder = ChefRequestBuilder.newRequestTo(endpoint)
80             .httpPut(body)
81             .withPath(path)
82             .withHeaders(httpHeaderFactory.create("PUT", path, body));
83         return execute(requestBuilder);
84     }
85
86     private ChefResponse execute(OngoingRequestBuilder chefRequest) {
87         try {
88             HttpResponse response = httpClient.execute(chefRequest.build());
89             int statusCode = response.getStatusLine().getStatusCode();
90             HttpEntity httpEntity = response.getEntity();
91             String responseBody = EntityUtils.toString(httpEntity);
92             return ChefResponse.create(statusCode, responseBody);
93         } catch (IOException ex) {
94             return ChefResponse.create(HttpStatus.SC_INTERNAL_SERVER_ERROR, ex.getMessage());
95         } catch (URISyntaxException ex) {
96             return ChefResponse.create(HttpStatus.SC_INTERNAL_SERVER_ERROR, ex.getMessage());
97         }
98     }
99 }
100