Change the header to SO
[so.git] / adapters / mso-vnf-adapter / src / main / java / org / openecomp / mso / adapters / vnf / HealthCheckHandler.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.mso.adapters.vnf;
22
23
24 import javax.ws.rs.GET;
25 import javax.ws.rs.HEAD;
26 import javax.ws.rs.Path;
27 import javax.ws.rs.Produces;
28 import javax.ws.rs.QueryParam;
29 import javax.ws.rs.core.MediaType;
30 import javax.ws.rs.core.Response;
31
32 import org.openecomp.mso.logger.MsoLogger;
33 import org.openecomp.mso.HealthCheckUtils;
34 import org.openecomp.mso.utils.UUIDChecker;
35
36
37 @Path("/")
38 public class HealthCheckHandler {
39
40         private static MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.RA);
41     private static final String MSO_PROP_VNF_ADAPTER = "MSO_PROP_VNF_ADAPTER";
42
43         @HEAD
44         @GET
45         @Path("/healthcheck")
46         @Produces(MediaType.TEXT_HTML)
47         public Response healthcheck (@QueryParam("requestId") String requestId) {
48                 long startTime = System.currentTimeMillis ();
49                 MsoLogger.setServiceName ("Healthcheck");
50                 UUIDChecker.verifyOldUUID(requestId, msoLogger);
51                 HealthCheckUtils healthCheck = new HealthCheckUtils ();
52                 if (!healthCheck.siteStatusCheck(msoLogger, startTime)) {
53                         return HealthCheckUtils.HEALTH_CHECK_NOK_RESPONSE;
54                 }
55
56                 if (!healthCheck.configFileCheck(msoLogger, startTime, MSO_PROP_VNF_ADAPTER)) {
57                         return HealthCheckUtils.NOT_STARTED_RESPONSE;
58                 }
59
60                 if (!healthCheck.catalogDBCheck (msoLogger, startTime)) {
61                         return HealthCheckUtils.NOT_STARTED_RESPONSE;
62                 }
63                 msoLogger.debug("healthcheck - Successful");
64                 return HealthCheckUtils.HEALTH_CHECK_RESPONSE;
65         }
66 }