code changes for platform hardening appc adapters
[appc.git] / appc-adapters / appc-rest-healthcheck-adapter / appc-rest-healthcheck-adapter-bundle / src / main / java / org / onap / appc / adapter / restHealthcheck / impl / RestHealthcheckAdapterImpl.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.restHealthcheck.impl;
26
27 import java.util.Map;
28 import java.util.Properties;
29 import org.apache.http.impl.client.CloseableHttpClient;
30
31 import org.onap.appc.Constants;
32 import org.onap.appc.adapter.restHealthcheck.RestHealthcheckAdapter;
33 import org.onap.appc.configuration.Configuration;
34 import org.onap.appc.pool.PoolExtensionException;
35 import org.onap.appc.util.StructuredPropertyHelper;
36
37
38 import com.att.cdp.zones.ImageService;
39 import com.att.cdp.zones.Provider;
40 import com.att.eelf.configuration.EELFLogger;
41 import com.att.eelf.configuration.EELFManager;
42 import com.att.eelf.i18n.EELFResourceManager;
43 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
44
45 import org.glassfish.grizzly.http.util.HttpStatus;
46
47 import static com.att.eelf.configuration.Configuration.*;
48
49 import org.apache.http.*;
50 import org.apache.http.client.*;
51 import org.apache.http.client.methods.*;
52 import org.apache.http.impl.client.*;
53 import org.apache.http.util.EntityUtils;
54 import java.io.IOException;
55 import java.net.InetAddress;
56
57 public class RestHealthcheckAdapterImpl implements RestHealthcheckAdapter {
58     /**
59      * The constant for the status code for a failed outcome
60      */
61     @SuppressWarnings("nls")
62     public static final String OUTCOME_FAILURE = "failure";
63     /**
64      * The logger to be used
65      */
66     private static final EELFLogger logger = EELFManager.getInstance().getLogger(RestHealthcheckAdapterImpl.class);
67     /**
68      * A reference to the adapter configuration object.
69      */
70     private Configuration configuration;
71     /**
72      * This default constructor is used as a work around because the activator
73      * wasnt getting called
74      */
75     public RestHealthcheckAdapterImpl() {
76         initialize();
77
78     }
79
80     @Override
81     public String getAdapterName() {
82         return configuration.getProperty(Constants.PROPERTY_ADAPTER_NAME);
83     }
84
85     public void checkHealth(Map<String, String> params, SvcLogicContext ctx) {
86         logger.info("VNF rest health check");
87         String uri=params.get("VNF.URI");
88         String endPoint=params.get("VNF.endpoint");
89         String tUrl=uri+"/"+endPoint;
90         RequestContext rc = new RequestContext(ctx);
91         rc.isAlive();
92         try(CloseableHttpClient httpClient = HttpClients.createDefault()) {
93             HttpGet httpGet = new HttpGet(tUrl);
94             HttpResponse response =null ;
95             response = httpClient.execute(httpGet);
96             int responseCode=response.getStatusLine().getStatusCode();
97             HttpEntity entity = response.getEntity();
98             String responseOutput=EntityUtils.toString(entity);
99             if(responseCode==200)
100             {
101                 doSuccess(rc,responseCode,responseOutput);
102             }
103             else
104             {
105                 doHealthCheckFailure(rc,responseCode,responseOutput);
106             }
107         } catch (Exception ex) {
108             doFailure(rc, HttpStatus.INTERNAL_SERVER_ERROR_500, ex.toString());
109         }
110     }
111
112
113
114
115     @SuppressWarnings("static-method")
116     private void doFailure(RequestContext rc, HttpStatus code, String message) {
117         SvcLogicContext svcLogic = rc.getSvcLogicContext();
118         String msg = (message == null) ? code.getReasonPhrase() : message;
119         if (msg.contains("\n")) {
120             msg = msg.substring(msg.indexOf("\n"));
121         }
122
123         String status;
124         try {
125             status = Integer.toString(code.getStatusCode());
126         } catch (Exception e) {
127             status = "500";
128         }
129         svcLogic.setStatus(OUTCOME_FAILURE);
130         svcLogic.setAttribute("healthcheck.result.code", "200");
131         svcLogic.setAttribute("healthcheck.result.message", status+" "+msg);
132     }
133
134
135     /**
136      * @param rc
137      *            The request context that manages the state and recovery of the
138      *            request for the life of its processing.
139      */
140     @SuppressWarnings("static-method")
141     private void doHealthCheckFailure(RequestContext rc, int code, String message) {
142         SvcLogicContext svcLogic = rc.getSvcLogicContext();
143         String msg = Integer.toString(code)+" "+message;
144         svcLogic.setAttribute("healthcheck.result.code", "200");
145         svcLogic.setAttribute("healthcheck.result.message", msg);
146
147     }
148
149
150     @SuppressWarnings("static-method")
151     private void doSuccess(RequestContext rc, int code, String message) {
152         SvcLogicContext svcLogic = rc.getSvcLogicContext();
153         String msg = Integer.toString(code)+" "+message;
154         svcLogic.setAttribute("healthcheck.result.code", "400");
155         svcLogic.setAttribute("healthcheck.result.message", msg);
156
157     }
158
159
160     /**
161      * initialize the provider adapter by building the context cache
162      */
163     private void initialize() {
164
165
166         logger.info("init rest health check adapter!!!!!");
167     }
168
169 }