2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2019 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.
 
  19  * SPDX-License-Identifier: Apache-2.0
 
  20  * ============LICENSE_END=========================================================
 
  23 package org.onap.policy.xacml.pdp.application.guard;
 
  25 import com.att.research.xacml.api.Request;
 
  26 import com.att.research.xacml.api.Response;
 
  27 import com.att.research.xacml.util.XACMLPolicyScanner;
 
  29 import java.io.ByteArrayInputStream;
 
  31 import java.io.FileInputStream;
 
  32 import java.io.IOException;
 
  33 import java.io.InputStream;
 
  34 import java.nio.charset.StandardCharsets;
 
  35 import java.nio.file.Files;
 
  36 import java.nio.file.Paths;
 
  37 import java.util.List;
 
  39 import java.util.UUID;
 
  40 import java.util.stream.Collectors;
 
  41 import java.util.stream.Stream;
 
  43 import oasis.names.tc.xacml._3_0.core.schema.wd_17.PolicyType;
 
  45 import org.apache.commons.io.IOUtils;
 
  46 import org.onap.policy.models.decisions.concepts.DecisionRequest;
 
  47 import org.onap.policy.models.decisions.concepts.DecisionResponse;
 
  48 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy;
 
  49 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyConversionException;
 
  50 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyTranslator;
 
  51 import org.slf4j.Logger;
 
  52 import org.slf4j.LoggerFactory;
 
  53 import org.yaml.snakeyaml.Yaml;
 
  54 import org.yaml.snakeyaml.constructor.Constructor;
 
  56 public class CoordinationGuardTranslator implements ToscaPolicyTranslator {
 
  58     private static final Logger LOGGER = LoggerFactory.getLogger(CoordinationGuardTranslator.class);
 
  60     public CoordinationGuardTranslator() {
 
  65     public PolicyType convertPolicy(ToscaPolicy toscaPolicy) throws ToscaPolicyConversionException {
 
  66         LOGGER.debug("Using CoordinationGuardTranslator.convertPolicy");
 
  68         // Policy name should be at the root
 
  70         String policyName = toscaPolicy.getMetadata().get("policy-id");
 
  71         String type = toscaPolicy.getType();
 
  72         String coordinationFunctionPath = "src/main/resources/coordination/function";
 
  73         Map<String, Object> policyProps = toscaPolicy.getProperties();
 
  74         LOGGER.debug("path = {}", coordinationFunctionPath);
 
  75         LOGGER.debug("props = {}", policyProps);
 
  76         List<String> controlLoop = (List<String>) policyProps.get("controlLoop");
 
  77         CoordinationDirective cd = new CoordinationDirective();
 
  78         cd.setCoordinationFunction(type);
 
  79         cd.setControlLoop(controlLoop);
 
  80         LOGGER.debug("CoordinationDirective = {}", cd);
 
  82         String xacmlStr = generateXacmlFromCoordinationDirective(cd, coordinationFunctionPath);
 
  84         LOGGER.debug("xacmlStr\n{}", xacmlStr);
 
  85         PolicyType scannedPolicy = null;
 
  86         try (InputStream is = new ByteArrayInputStream(xacmlStr.getBytes(StandardCharsets.UTF_8))) {
 
  87             scannedPolicy = (PolicyType) XACMLPolicyScanner.readPolicy(is);
 
  88         } catch (IOException e) {
 
  89             LOGGER.error("Failed to read policy", e);
 
  95     public Request convertRequest(DecisionRequest request) {
 
  96         LOGGER.info("this convertRequest shouldn't be used");
 
 101     public DecisionResponse convertResponse(Response xacmlResponse) {
 
 102         LOGGER.info("this convertRequest shouldn't be used");
 
 107      * Load YAML coordination directive.
 
 109      * @param directiveFilename yaml directive file to load
 
 110      * @return the CoordinationDirective
 
 112     public static CoordinationDirective loadCoordinationDirectiveFromFile(String directiveFilename) {
 
 113         try (InputStream is = new FileInputStream(new File(directiveFilename))) {
 
 114             String contents = IOUtils.toString(is, StandardCharsets.UTF_8);
 
 116             // Read the yaml into our Java Object
 
 118             Yaml yaml = new Yaml(new Constructor(CoordinationDirective.class));
 
 119             Object obj = yaml.load(contents);
 
 121             LOGGER.debug(contents);
 
 123             return (CoordinationDirective) obj;
 
 124         } catch (IOException e) {
 
 125             LOGGER.error("Error while loading YAML coordination directive", e);
 
 131      * Generate Xacml rule implementing specified CoordinationDirective.
 
 133      * @param cd the CoordinationDirective
 
 134      * @param protoDir the directory containing Xacml implementation prototypes
 
 135      * @return the generated Xacml policy
 
 137     public static String generateXacmlFromCoordinationDirective(CoordinationDirective cd,
 
 140          * Determine file names
 
 142         String xacmlProtoFilename = protoDir + File.separator + cd.getCoordinationFunction() + ".xml";
 
 143         LOGGER.debug("xacmlProtoFilename={}", xacmlProtoFilename);
 
 145          * Values to be used for placeholders
 
 147         final String uniqueId = UUID.randomUUID().toString();
 
 148         final String cLOne = cd.getControlLoop(0);
 
 149         final String cLTwo = cd.getControlLoop(1);
 
 151          * Replace prototype placeholders with appropriate values
 
 153         String xacmlPolicy = null;
 
 154         try (Stream<String> stream = Files.lines(Paths.get(xacmlProtoFilename))) {
 
 155             xacmlPolicy = stream.map(s -> s.replaceAll("UNIQUE_ID", uniqueId))
 
 156                 .map(s -> s.replaceAll("CONTROL_LOOP_ONE", cLOne))
 
 157                 .map(s -> s.replaceAll("CONTROL_LOOP_TWO", cLTwo))
 
 158                 .collect(Collectors.joining(System.lineSeparator()));
 
 159         } catch (IOException e) {
 
 160             LOGGER.error("Error while generating XACML policy for coordination directive", e);