7a8035ac633dad1093030b3a34b485427e0bf837
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / GlobalHealthcheckHandler.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.onap.so.apihandlerinfra;
22
23 import javax.transaction.Transactional;
24 import javax.ws.rs.DefaultValue;
25 import javax.ws.rs.GET;
26 import javax.ws.rs.Path;
27 import javax.ws.rs.Produces;
28 import javax.ws.rs.QueryParam;
29 import javax.ws.rs.container.ContainerRequestContext;
30 import javax.ws.rs.core.Context;
31 import javax.ws.rs.core.Response;
32
33 import org.apache.http.HttpStatus;
34 import org.onap.so.logger.MessageEnum;
35 import org.onap.so.logger.MsoLogger;
36 import org.onap.so.utils.UUIDChecker;
37 import org.springframework.stereotype.Component;
38
39 import io.swagger.annotations.Api;
40 import io.swagger.annotations.ApiOperation;
41
42
43
44 @Component
45 @Path("/globalhealthcheck")
46 @Api(value="/globalhealthcheck",description="APIH Infra Global Health Check")
47 public class GlobalHealthcheckHandler {
48
49     private static MsoLogger msoLogger = MsoLogger.getMsoLogger (MsoLogger.Catalog.APIH,GlobalHealthcheckHandler.class);
50     private static final String CHECK_HTML = "<!DOCTYPE html><html><head><meta charset=\"ISO-8859-1\"><title>Health Check</title></head><body>Application ready</body></html>";
51
52         public static final Response HEALTH_CHECK_RESPONSE = Response.status (HttpStatus.SC_OK)
53             .entity (CHECK_HTML)
54             .build ();
55         
56     @GET
57     @Produces("text/html")
58         @ApiOperation(value="Performing global health check",response=Response.class)
59     @Transactional
60     public Response globalHealthcheck (@DefaultValue("true") @QueryParam("enableBpmn") boolean enableBpmn, 
61                                                                         @Context ContainerRequestContext requestContext) {
62         long startTime = System.currentTimeMillis ();
63         MsoLogger.setServiceName ("GlobalHealthcheck");
64         // Generated RequestId
65         String requestId = requestContext.getProperty("requestId").toString();
66         MsoLogger.setLogContext(requestId, null);
67         msoLogger.info(MessageEnum.APIH_GENERATED_REQUEST_ID, requestId, "", "");
68         return HEALTH_CHECK_RESPONSE;
69     } 
70 }