Merge "API healthcheck must return healthcheck report object"
[policy/api.git] / main / src / main / java / org / onap / policy / api / main / rest / provider / healthcheck / HealthCheckProvider.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy API
4  * ================================================================================
5  * Copyright (C) 2018 Samsung Electronics Co., Ltd. All rights reserved.
6  * Modifications Copyright (C) 2019, 2021 AT&T Intellectual Property. All rights reserved.
7  * Modifications Copyright (C) 2019 Nordix Foundation.
8  * Modifications Copyright (C) 2022 Bell Canada. All rights reserved.
9  * ================================================================================
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  *      http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  *
22  * SPDX-License-Identifier: Apache-2.0
23  * ============LICENSE_END=========================================================
24  */
25
26 package org.onap.policy.api.main.rest.provider.healthcheck;
27
28 import lombok.RequiredArgsConstructor;
29 import org.onap.policy.api.main.service.ToscaServiceTemplateService;
30 import org.onap.policy.common.endpoints.report.HealthCheckReport;
31 import org.onap.policy.common.utils.network.NetworkUtil;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34 import org.springframework.stereotype.Service;
35
36 /**
37  * Class to fetch health check of api service.
38  *
39  */
40 @Service
41 @RequiredArgsConstructor
42 public class HealthCheckProvider {
43
44     private static final Logger LOGGER = LoggerFactory.getLogger(HealthCheckProvider.class);
45     private static final String ALIVE = "alive";
46     private static final String URL = NetworkUtil.getHostname();
47     private static final String NAME = "Policy API";
48     private static final String DB_CONN_FAILURE = "unable to connect with database";
49
50     private final ToscaServiceTemplateService toscaServiceTemplateService;
51
52     /**
53      * Performs the health check of api service.
54      *
55      * @return Report containing health check status
56      */
57     public HealthCheckReport performHealthCheck() {
58         final var report = new HealthCheckReport();
59         final var dbConnectionStatus = verifyApiDatabase();
60         report.setName(NAME);
61         report.setUrl(URL);
62         report.setHealthy(dbConnectionStatus);
63         report.setCode(dbConnectionStatus ? 200 : 503);
64         report.setMessage(dbConnectionStatus ? ALIVE : DB_CONN_FAILURE);
65         return report;
66     }
67
68     /**
69      * Verifies the connectivity between api component & policy database.
70      *
71      * @return boolean signaling the verification result
72      */
73     private boolean verifyApiDatabase() {
74         try {
75             toscaServiceTemplateService.getDefaultJpaToscaServiceTemplate();
76             return true;
77         } catch (Exception ex) {
78             LOGGER.warn("Api to database connection check failed. Details: ", ex);
79             return false;
80         }
81     }
82 }