ae288056759bf1b4a2b2954e9cff2f1d66fc5f76
[clamp.git] / src / main / java / org / onap / clamp / clds / client / OperationalPolicyDelegate.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23
24 package org.onap.clamp.clds.client;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28
29 import java.io.UnsupportedEncodingException;
30 import java.util.Map;
31
32 import org.apache.camel.Exchange;
33 import org.apache.camel.Handler;
34 import org.onap.clamp.clds.client.req.policy.OperationalPolicyReq;
35 import org.onap.clamp.clds.client.req.policy.PolicyClient;
36 import org.onap.clamp.clds.config.ClampProperties;
37 import org.onap.clamp.clds.model.properties.ModelProperties;
38 import org.onap.clamp.clds.model.properties.Policy;
39 import org.onap.clamp.clds.model.properties.PolicyChain;
40 import org.onap.clamp.clds.util.LoggingUtils;
41 import org.onap.policy.api.AttributeType;
42 import org.onap.policy.controlloop.policy.builder.BuilderException;
43 import org.springframework.beans.factory.annotation.Autowired;
44 import org.springframework.stereotype.Component;
45
46 /**
47  * Send Operational Policy info to policy api. It uses the policy code to define
48  * the model and communicate with it. See also the PolicyClient class.
49  */
50 @Component
51 public class OperationalPolicyDelegate {
52
53     protected static final EELFLogger logger = EELFManager.getInstance().getLogger(OperationalPolicyDelegate.class);
54     protected static final EELFLogger metricsLogger = EELFManager.getInstance().getMetricsLogger();
55     /**
56      * Automatically injected by Spring, define in CldsConfiguration as a bean.
57      */
58     @Autowired
59     private PolicyClient policyClient;
60     /**
61      * Automatically injected by Spring, define in CldsConfiguration as a bean.
62      */
63     @Autowired
64     private ClampProperties refProp;
65
66     /**
67      * Perform activity. Send Operational Policy info to policy api.
68      *
69      * @param camelExchange
70      *            The Camel Exchange object containing the properties
71      * @throws BuilderException
72      *             In case of issues with OperationalPolicyReq
73      * @throws UnsupportedEncodingException
74      *             In case of issues with the Charset encoding
75      */
76     @Handler
77     public void execute(Exchange camelExchange) throws BuilderException, UnsupportedEncodingException {
78         String responseMessage = null;
79         ModelProperties prop = ModelProperties.create(camelExchange);
80         Policy policy = prop.getType(Policy.class);
81         if (policy.isFound()) {
82             for (PolicyChain policyChain : prop.getType(Policy.class).getPolicyChains()) {
83                 Map<AttributeType, Map<String, String>> attributes = OperationalPolicyReq.formatAttributes(refProp,
84                         prop, prop.getType(Policy.class).getId(), policyChain);
85                 responseMessage = policyClient.sendBrmsPolicy(attributes, prop, LoggingUtils.getRequestId());
86             }
87             if (responseMessage != null) {
88                 camelExchange.setProperty("operationalPolicyResponseMessage", responseMessage.getBytes());
89             }
90         }
91     }
92 }