2  * ============LICENSE_START=======================================================
 
   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
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  21 package org.openecomp.mso.adapters.network;
 
  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.Response;
 
  31 import org.openecomp.mso.logger.MsoLogger;
 
  32 import org.openecomp.mso.HealthCheckUtils;
 
  33 import org.openecomp.mso.utils.UUIDChecker;
 
  37         public class HealthCheckHandler {
 
  39                 private static MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.RA);
 
  40                 private static final String MSO_PROP_NETWORK_ADAPTER = "MSO_PROP_NETWORK_ADAPTER";
 
  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;
 
  55                         if (!healthCheck.configFileCheck(msoLogger, startTime, MSO_PROP_NETWORK_ADAPTER)) {
 
  56                                 return HealthCheckUtils.NOT_STARTED_RESPONSE;
 
  59                         if (!healthCheck.catalogDBCheck (msoLogger, startTime)) {
 
  60                                 return HealthCheckUtils.NOT_STARTED_RESPONSE;
 
  62                         msoLogger.debug("healthcheck - Successful");
 
  63                         return HealthCheckUtils.HEALTH_CHECK_RESPONSE;