/*- * ============LICENSE_START======================================================= * ONAP * ================================================================================ * Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved. * Modifications Copyright (C) 2021 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * SPDX-License-Identifier: Apache-2.0 * ============LICENSE_END========================================================= */ package org.onap.policy.xacml.pdp.application.monitoring; import com.att.research.xacml.api.Response; import java.util.Arrays; import java.util.Map; import java.util.Map.Entry; import org.apache.commons.lang3.tuple.Pair; import org.onap.policy.models.decisions.concepts.DecisionRequest; import org.onap.policy.models.decisions.concepts.DecisionResponse; import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier; import org.onap.policy.pdp.xacml.application.common.ToscaPolicyTranslator; import org.onap.policy.pdp.xacml.application.common.std.StdCombinedPolicyResultsTranslator; import org.onap.policy.pdp.xacml.application.common.std.StdXacmlApplicationServiceProvider; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * This is the engine class that manages the instance of the XACML PDP engine. * *

It is responsible for initializing it and shutting it down properly in a thread-safe manner. * * * @author pameladragosh * */ public class MonitoringPdpApplication extends StdXacmlApplicationServiceProvider { private static final Logger LOGGER = LoggerFactory.getLogger(MonitoringPdpApplication.class); public static final String ONAP_MONITORING_BASE_POLICY_TYPE = "onap.Monitoring"; public static final String ONAP_MONITORING_DERIVED_POLICY_TYPE = "onap.policies.monitoring."; public static final String VERSION_100 = "1.0.0"; private StdCombinedPolicyResultsTranslator translator = new StdCombinedPolicyResultsTranslator(); /** * Constructor. */ public MonitoringPdpApplication() { super(); applicationName = "monitoring"; actions = Arrays.asList("configure"); // // By default this supports just Monitoring policy types // supportedPolicyTypes.add(new ToscaConceptIdentifier(ONAP_MONITORING_BASE_POLICY_TYPE, VERSION_100)); } @Override public boolean canSupportPolicyType(ToscaConceptIdentifier policyTypeId) { // // For Monitoring, we will attempt to support all versions // of the policy type. Since we are only packaging a decision // back with a JSON payload of the property contents. // return policyTypeId.getName().startsWith(ONAP_MONITORING_DERIVED_POLICY_TYPE); } @Override public Pair makeDecision(DecisionRequest request, Map requestQueryParams) { // // Make the decision // Pair decisionPair = super.makeDecision(request, requestQueryParams); var decisionResponse = decisionPair.getKey(); // // Abbreviate results if needed // if (checkAbbreviateResults(requestQueryParams) && decisionResponse.getPolicies() != null) { LOGGER.info("Abbreviating decision results {}", decisionResponse); for (Entry entry : decisionResponse.getPolicies().entrySet()) { // // DecisionResponse policies will always be a map // @SuppressWarnings("unchecked") Map policy = (Map) entry.getValue(); policy.remove("type_version"); policy.remove("properties"); policy.remove("name"); policy.remove("version"); } } return decisionPair; } @Override protected ToscaPolicyTranslator getTranslator(String type) { return translator; } /** * Checks the query parameters to determine whether the decision results should be abbreviated. * * @param queryParams - http request query parameters */ protected boolean checkAbbreviateResults(Map queryParams) { if (queryParams != null && !queryParams.isEmpty()) { // Check if query params contains "abbrev" flag if (queryParams.containsKey("abbrev")) { return Arrays.asList(queryParams.get("abbrev")).contains("true"); } else { LOGGER.info("Unsupported query param for Monitoring application: {}", queryParams); return false; } } LOGGER.info("Query parameters empty"); return false; } }