Move PAP database provider to spring boot default
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / rest / PdpGroupHealthCheckProvider.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
5  *  Modifications Copyright (C) 2021-2022 Bell Canada. 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  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.pap.main.rest;
24
25 import java.util.ArrayList;
26 import java.util.List;
27 import lombok.RequiredArgsConstructor;
28 import org.apache.commons.lang3.tuple.Pair;
29 import org.onap.policy.models.base.PfModelException;
30 import org.onap.policy.models.pdp.concepts.Pdp;
31 import org.onap.policy.models.pdp.concepts.PdpGroup;
32 import org.onap.policy.models.pdp.concepts.PdpSubGroup;
33 import org.onap.policy.models.pdp.concepts.Pdps;
34 import org.onap.policy.pap.main.service.PdpGroupService;
35 import org.slf4j.Logger;
36 import org.slf4j.LoggerFactory;
37 import org.springframework.http.HttpStatus;
38 import org.springframework.stereotype.Service;
39
40 /**
41  * Provider for PAP component to to fetch health status of all PDPs registered with PAP.
42  *
43  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
44  */
45 @Service
46 @RequiredArgsConstructor
47 public class PdpGroupHealthCheckProvider {
48
49     private static final Logger LOGGER = LoggerFactory.getLogger(PdpGroupHealthCheckProvider.class);
50
51     private final PdpGroupService pdpGroupService;
52
53     /**
54      * Returns health status of all PDPs.
55      *
56      * @return a pair containing the status and the response
57      * @throws PfModelException in case of errors
58      */
59     public Pair<HttpStatus, Pdps> fetchPdpGroupHealthStatus() throws PfModelException {
60
61         final var pdps = new Pdps();
62         final List<PdpGroup> groups = pdpGroupService.getPdpGroups();
63         final List<Pdp> pdpList = new ArrayList<>();
64         for (final PdpGroup group : groups) {
65             for (final PdpSubGroup subGroup : group.getPdpSubgroups()) {
66                 pdpList.addAll(subGroup.getPdpInstances());
67             }
68         }
69         pdps.setPdpList(pdpList);
70         LOGGER.debug("PdpGroup HealthCheck Response - {}", pdps);
71         return Pair.of(HttpStatus.OK, pdps);
72     }
73 }