[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / POLICY-SDK-APP / src / main / java / org / onap / policy / controller / CreateClosedLoopPMController.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 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
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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.controller;
22
23
24 import java.io.IOException;
25 import java.util.Iterator;
26 import java.util.LinkedHashMap;
27 import java.util.List;
28
29 import javax.json.JsonArray;
30 import javax.json.JsonObject;
31
32 import org.onap.policy.admin.PolicyManagerServlet;
33 import org.onap.policy.common.logging.flexlogger.FlexLogger;
34 import org.onap.policy.common.logging.flexlogger.Logger;
35 import org.onap.policy.rest.adapter.ClosedLoopPMBody;
36 import org.onap.policy.rest.adapter.PolicyRestAdapter;
37 import org.onap.policy.rest.jpa.PolicyEntity;
38
39 import com.fasterxml.jackson.databind.ObjectMapper;
40
41 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AllOfType;
42 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AnyOfType;
43 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AttributeDesignatorType;
44 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AttributeValueType;
45 import oasis.names.tc.xacml._3_0.core.schema.wd_17.MatchType;
46 import oasis.names.tc.xacml._3_0.core.schema.wd_17.PolicyType;
47 import oasis.names.tc.xacml._3_0.core.schema.wd_17.TargetType;
48
49 public class CreateClosedLoopPMController{
50
51         private static final Logger LOGGER      = FlexLogger.getLogger(CreateClosedLoopPMController.class);
52         
53         protected PolicyRestAdapter policyAdapter = null;
54
55         public void prePopulateClosedLoopPMPolicyData(PolicyRestAdapter policyAdapter, PolicyEntity entity) {
56                 if (policyAdapter.getPolicyData() instanceof PolicyType) {
57                         Object policyData = policyAdapter.getPolicyData();
58                         PolicyType policy = (PolicyType) policyData;
59                         policyAdapter.setOldPolicyFileName(policyAdapter.getPolicyName());
60                         String policyNameValue = policyAdapter.getPolicyName().substring(policyAdapter.getPolicyName().indexOf("PM_") +3);
61                         policyAdapter.setPolicyName(policyNameValue);
62                         String description = "";
63                         try{
64                                 description = policy.getDescription().substring(0, policy.getDescription().indexOf("@CreatedBy:"));
65                         }catch(Exception e){
66                                 LOGGER.info("General error" , e);
67                                 description = policy.getDescription();
68                         }
69                         policyAdapter.setPolicyDescription(description);
70                         // Get the target data under policy.
71                         TargetType target = policy.getTarget();
72                         if (target != null) {
73                                 // Under target we have AnyOFType
74                                 List<AnyOfType> anyOfList = target.getAnyOf();
75                                 if (anyOfList != null) {
76                                         Iterator<AnyOfType> iterAnyOf = anyOfList.iterator();
77                                         while (iterAnyOf.hasNext()) {
78                                                 AnyOfType anyOf = iterAnyOf.next();
79                                                 // Under AnyOFType we have AllOFType
80                                                 List<AllOfType> allOfList = anyOf.getAllOf();
81                                                 if (allOfList != null) {
82                                                         Iterator<AllOfType> iterAllOf = allOfList.iterator();
83                                                         while (iterAllOf.hasNext()) {
84                                                                 AllOfType allOf = iterAllOf.next();
85                                                                 // Under AllOFType we have Match
86                                                                 List<MatchType> matchList = allOf.getMatch();
87                                                                 if (matchList != null) {
88                                                                         Iterator<MatchType> iterMatch = matchList.iterator();
89                                                                         while (matchList.size()>1 && iterMatch.hasNext()) {
90                                                                                 MatchType match = iterMatch.next();
91                                                                                 //
92                                                                                 // Under the match we have attribute value and
93                                                                                 // attributeDesignator. So,finally down to the actual attribute.
94                                                                                 //
95                                                                                 AttributeValueType attributeValue = match.getAttributeValue();
96                                                                                 String value = (String) attributeValue.getContent().get(0);
97                                                                                 AttributeDesignatorType designator = match.getAttributeDesignator();
98                                                                                 String attributeId = designator.getAttributeId();
99
100                                                                                 // First match in the target is OnapName, so set that value.
101                                                                                 if (attributeId.equals("ONAPName")) {
102                                                                                         policyAdapter.setOnapName(value);
103                                                                                 }
104                                                                                 if (attributeId.equals("RiskType")){
105                                                                                         policyAdapter.setRiskType(value);
106                                                                                 }
107                                                                                 if (attributeId.equals("RiskLevel")){
108                                                                                         policyAdapter.setRiskLevel(value);
109                                                                                 }
110                                                                                 if (attributeId.equals("guard")){
111                                                                                         policyAdapter.setGuard(value);
112                                                                                 }
113                                                                                 if (attributeId.equals("TTLDate") && !value.contains("NA")){
114                                                                                         String newDate = convertDate(value, true);
115                                                                                         policyAdapter.setTtlDate(newDate);
116                                                                                 }
117                                                                                 if (attributeId.equals("ServiceType")){
118                                                                                         LinkedHashMap<String, String> serviceTypePolicyName1 = new LinkedHashMap<>();
119                                                                                         String key = "serviceTypePolicyName";
120                                                                                         serviceTypePolicyName1.put(key, value);
121                                                                                         policyAdapter.setServiceTypePolicyName(serviceTypePolicyName1);
122                                                                                         LinkedHashMap<String, String> vertica = new LinkedHashMap<>();
123                                                                                         vertica.put("verticaMetrics", getVertica(value));
124                                                                                         policyAdapter.setVerticaMetrics(vertica);
125                                                                                         LinkedHashMap<String, String> desc = new LinkedHashMap<>();
126                                                                                         desc.put("policyDescription", getDescription(value));
127                                                                                         policyAdapter.setDescription(desc);
128                                                                                         LinkedHashMap<String, Object> attributes = new LinkedHashMap<>();
129                                                                                         attributes.put("attributes", getAttributes(value));
130                                                                                         policyAdapter.setAttributeFields(attributes);
131                                                                                 }
132                                                                         }
133                                                                 }
134                                                         }
135                                                 }
136                                         }
137                                 }
138                         }
139                         readClosedLoopJSONFile(policyAdapter, entity);
140                 }               
141         }
142
143         private String convertDate(String dateTTL, boolean portalType) {
144                 String formateDate = null;
145                 String[] date;
146                 String[] parts;
147
148                 if (portalType){
149                         parts = dateTTL.split("-");
150                         formateDate = parts[2] + "-" + parts[1] + "-" + parts[0] + "T05:00:00.000Z";
151                 } else {
152                         date  = dateTTL.split("T");
153                         parts = date[0].split("-");
154                         formateDate = parts[2] + "-" + parts[1] + "-" + parts[0];
155                 }
156                 return formateDate;
157         }
158
159         protected void readClosedLoopJSONFile(PolicyRestAdapter policyAdapter, PolicyEntity entity) {
160                 ObjectMapper mapper = new ObjectMapper();
161                 try {
162                         ClosedLoopPMBody closedLoopBody = mapper.readValue(entity.getConfigurationData().getConfigBody(), ClosedLoopPMBody.class);
163                         policyAdapter.setJsonBodyData(closedLoopBody);
164                 } catch (IOException e) {
165                         LOGGER.error("Exception Occured"+e);
166                 }       
167         }
168         
169         //get vertica metrics data from the table
170         private String getVertica(String policyName){
171                 String verticas = null;
172                 JsonArray data = PolicyManagerServlet.getPolicyNames();
173                 for(int i=0 ; i< data.size(); i++){
174                         if(policyName.equals(data.getJsonObject(i).getJsonString("serviceTypePolicyName").getString())){
175                                 verticas = data.getJsonObject(i).getJsonString("verticaMetrics").getString();
176                                 return verticas;
177                         }
178                 }
179                 return verticas;
180         }
181
182         //get policy description from the table
183         private String getDescription(String policyName){
184                 String description = null;
185                 JsonArray data = PolicyManagerServlet.getPolicyNames();
186                 for(int i=0 ; i< data.size(); i++){
187                         if(policyName.equals(data.getJsonObject(i).getJsonString("serviceTypePolicyName").getString())){
188                                 description = data.getJsonObject(i).getJsonString("policyDescription").getString();
189                                 return description;
190                         }
191                 }
192                 return description;
193         }
194
195         //get Attributes
196         private JsonObject getAttributes(String policyName){
197                 JsonObject attributes = null;
198                 JsonArray data = PolicyManagerServlet.getPolicyNames();
199                 for(int i=0 ; i< data.size(); i++){
200                         if(policyName.equals(data.getJsonObject(i).getJsonString("serviceTypePolicyName").getString())){
201                                 attributes = data.getJsonObject(i).getJsonObject("attributes");
202                                 return attributes;
203                         }
204                 }
205                 return attributes;
206         }
207
208 }