Initial OpenECOMP MSO commit
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / HealthcheckHandler.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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.apihandlerinfra;
22
23 import javax.ws.rs.GET;
24 import javax.ws.rs.HEAD;
25 import javax.ws.rs.Path;
26 import javax.ws.rs.Produces;
27 import javax.ws.rs.QueryParam;
28 import javax.ws.rs.DefaultValue;
29 import javax.ws.rs.core.Response;
30 import org.openecomp.mso.HealthCheckUtils;
31
32 import org.openecomp.mso.logger.MsoLogger;
33 import org.openecomp.mso.utils.UUIDChecker;
34
35 @Path("/")
36 public class HealthcheckHandler {
37
38     public final static String MSO_PROP_APIHANDLER_INFRA = "MSO_PROP_APIHANDLER_INFRA";
39
40     private static MsoLogger msoLogger = MsoLogger.getMsoLogger (MsoLogger.Catalog.APIH);
41
42     @HEAD
43     @GET
44     @Path("/healthcheck")
45     @Produces("text/html")
46     public Response healthcheck (@QueryParam("requestId") String requestId) {
47         long startTime = System.currentTimeMillis ();
48         MsoLogger.setServiceName ("Healthcheck");
49         UUIDChecker.verifyOldUUID(requestId, msoLogger);
50         HealthCheckUtils healthCheck = new HealthCheckUtils ();
51         if (!healthCheck.siteStatusCheck(msoLogger, startTime)) {
52             return HealthCheckUtils.HEALTH_CHECK_NOK_RESPONSE;
53         }
54
55         if (!healthCheck.configFileCheck(msoLogger, startTime, MSO_PROP_APIHANDLER_INFRA)) {
56             return HealthCheckUtils.NOT_STARTED_RESPONSE;
57         }
58
59         if (!healthCheck.requestDBCheck (msoLogger, startTime)) {
60             return HealthCheckUtils.NOT_STARTED_RESPONSE;
61         }
62         msoLogger.debug("healthcheck - Successful");
63         return HealthCheckUtils.HEALTH_CHECK_RESPONSE;
64     }
65
66     @HEAD
67     @GET
68     @Path("/nodehealthcheck")
69     @Produces("text/html")
70     public Response nodeHealthcheck () {
71         long startTime = System.currentTimeMillis ();
72         MsoLogger.setServiceName ("NodeHealthcheck");
73         // Generate a Request Id
74         String requestId = UUIDChecker.generateUUID(msoLogger);
75         HealthCheckUtils healthCheck = new HealthCheckUtils ();
76         if (!healthCheck.siteStatusCheck (msoLogger, startTime)) {
77             return HealthCheckUtils.HEALTH_CHECK_NOK_RESPONSE;
78         }
79
80         if (healthCheck.verifyNodeHealthCheck(HealthCheckUtils.NodeType.APIH, requestId)) {
81             msoLogger.debug("nodeHealthcheck - Successful");
82             return HealthCheckUtils.HEALTH_CHECK_RESPONSE;
83         } else {
84             msoLogger.debug("nodeHealthcheck - At leaset one of the sub-modules is not available.");
85             return  HealthCheckUtils.HEALTH_CHECK_NOK_RESPONSE;
86         }
87     }
88
89     @HEAD
90     @GET
91     @Path("/globalhealthcheck")
92     @Produces("text/html")
93     public Response globalHealthcheck (@DefaultValue("true") @QueryParam("enableBpmn") boolean enableBpmn) {
94         long startTime = System.currentTimeMillis ();
95         MsoLogger.setServiceName ("GlobalHealthcheck");
96         // Generate a Request Id
97         String requestId = UUIDChecker.generateUUID(msoLogger);
98         HealthCheckUtils healthCheck = new HealthCheckUtils ();
99         if (!healthCheck.siteStatusCheck (msoLogger, startTime)) {
100             return HealthCheckUtils.HEALTH_CHECK_NOK_RESPONSE;
101         }
102
103         if (healthCheck.verifyGlobalHealthCheck(enableBpmn, requestId)) {
104             msoLogger.debug("globalHealthcheck - Successful");
105             return HealthCheckUtils.HEALTH_CHECK_RESPONSE;
106         } else {
107             msoLogger.debug("globalHealthcheck - At leaset one of the sub-modules is not available");
108             return  HealthCheckUtils.HEALTH_CHECK_NOK_RESPONSE;
109         }
110     } 
111
112 }