b6a4e5a00fafa4b7d61c64683751d0beefab76ee
[policy/xacml-pdp.git] / main / src / main / java / org / onap / policy / pdpx / main / rest / provider / DecisionProvider.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.pdpx.main.rest.provider;
22
23 import com.att.research.xacml.api.Response;
24 import com.att.research.xacml.api.Result;
25 import java.util.Map;
26 import org.apache.commons.lang3.tuple.Pair;
27 import org.onap.policy.models.decisions.concepts.DecisionException;
28 import org.onap.policy.models.decisions.concepts.DecisionRequest;
29 import org.onap.policy.models.decisions.concepts.DecisionResponse;
30 import org.onap.policy.pdp.xacml.application.common.XacmlApplicationServiceProvider;
31 import org.onap.policy.pdpx.main.rest.XacmlPdpApplicationManager;
32 import org.onap.policy.pdpx.main.rest.XacmlPdpStatisticsManager;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35
36
37 public class DecisionProvider {
38     private static final Logger LOGGER = LoggerFactory.getLogger(DecisionProvider.class);
39
40     /**
41      * Retrieves the policy decision for the specified parameters.
42      *
43      * @param request DecisionRequest
44      * @param queryParams Map of parameters
45      * @return DecisionResponse
46      */
47     public DecisionResponse fetchDecision(DecisionRequest request, Map<String, String[]> queryParams) {
48         LOGGER.debug("Fetching decision {}", request);
49         //
50         // Find application for this decision
51         //
52         XacmlApplicationServiceProvider application = findApplication(request);
53         //
54         // Found application for action
55         //
56         Pair<DecisionResponse, Response> decision = application.makeDecision(request, queryParams);
57         //
58         // Calculate statistics
59         //
60         this.calculateStatistic(decision.getValue());
61         //
62         // Return the decision
63         //
64         return decision.getKey();
65     }
66
67     private XacmlApplicationServiceProvider findApplication(DecisionRequest request) {
68         XacmlApplicationServiceProvider application = XacmlPdpApplicationManager.getCurrent().findApplication(request);
69         if (application != null) {
70             return application;
71         }
72         throw new DecisionException(javax.ws.rs.core.Response.Status.BAD_REQUEST,
73                 "No application for action " + request.getAction());
74     }
75
76     private void calculateStatistic(Response xacmlResponse) {
77
78         for (Result result : xacmlResponse.getResults()) {
79             switch (result.getDecision()) {
80                 case PERMIT:
81                     XacmlPdpStatisticsManager.getCurrent().updatePermitDecisionsCount();
82                     break;
83
84                 case DENY:
85                     XacmlPdpStatisticsManager.getCurrent().updateDenyDecisionsCount();
86                     break;
87
88                 case INDETERMINATE:
89                 case INDETERMINATE_DENY:
90                 case INDETERMINATE_DENYPERMIT:
91                 case INDETERMINATE_PERMIT:
92                     XacmlPdpStatisticsManager.getCurrent().updateIndeterminantDecisionsCount();
93                     break;
94
95                 case NOTAPPLICABLE:
96                     XacmlPdpStatisticsManager.getCurrent().updateNotApplicableDecisionsCount();
97                     break;
98
99                 default:
100                     break;
101
102             }
103         }
104     }
105
106 }