Change the header to SO
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / 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.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.core.Response;
29
30 import org.openecomp.mso.HealthCheckUtils;
31 import org.openecomp.mso.logger.MsoLogger;
32 import org.openecomp.mso.utils.UUIDChecker;
33
34 import com.wordnik.swagger.annotations.Api;
35 import com.wordnik.swagger.annotations.ApiOperation;
36
37 @Path("/healthcheck")
38 @Api(value="/healthcheck",description="API Handler Infra Health Check")
39 public class HealthcheckHandler {
40
41     public final static String MSO_PROP_APIHANDLER_INFRA = "MSO_PROP_APIHANDLER_INFRA";
42
43     private static MsoLogger msoLogger = MsoLogger.getMsoLogger (MsoLogger.Catalog.APIH);
44
45     @HEAD
46     @GET
47     @Produces("text/html")
48     @ApiOperation(value="Perform Health Check",response=Response.class)
49     public Response healthcheck (@QueryParam("requestId") String requestId) {
50         long startTime = System.currentTimeMillis ();
51         MsoLogger.setServiceName ("Healthcheck");
52         UUIDChecker.verifyOldUUID(requestId, msoLogger);
53         HealthCheckUtils healthCheck = new HealthCheckUtils ();
54         if (!healthCheck.siteStatusCheck(msoLogger, startTime)) {
55             return HealthCheckUtils.HEALTH_CHECK_NOK_RESPONSE;
56         }
57
58         if (!healthCheck.configFileCheck(msoLogger, startTime, MSO_PROP_APIHANDLER_INFRA)) {
59             return HealthCheckUtils.NOT_STARTED_RESPONSE;
60         }
61
62         if (!healthCheck.requestDBCheck (msoLogger, startTime)) {
63             return HealthCheckUtils.NOT_STARTED_RESPONSE;
64         }
65         msoLogger.debug("healthcheck - Successful");
66         return HealthCheckUtils.HEALTH_CHECK_RESPONSE;
67     }
68 }