summaryrefslogtreecommitdiffstats
path: root/appc-config/appc-config-params/provider/src/main/java/org/openecomp/sdnc/config/params/parser/PropertyDefinitionNode.java
blob: 714d01c6ef06114e4c03d42d3b1a31fc1318d313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/*-
 * ============LICENSE_START=======================================================
 * ONAP : APPC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Copyright (C) 2017 Amdocs
 * =============================================================================
 * 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.
 * 
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.sdnc.config.params.parser;

import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.commons.lang3.StringUtils;
import org.openecomp.sdnc.config.params.ParamsHandlerConstant;
import org.openecomp.sdnc.config.params.data.Parameter;
import org.openecomp.sdnc.config.params.data.PropertyDefinition;
import org.openecomp.sdnc.sli.SvcLogicContext;
import org.openecomp.sdnc.sli.SvcLogicException;
import org.openecomp.sdnc.sli.SvcLogicJavaPlugin;

import com.att.eelf.configuration.EELFLogger;
import com.att.eelf.configuration.EELFManager;
import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.dataformat.yaml.YAMLFactory;

public class PropertyDefinitionNode implements SvcLogicJavaPlugin{


	private static final  EELFLogger log = EELFManager.getInstance().getLogger(PropertyDefinitionNode.class);

	public void processMissingParamKeys(Map<String, String> inParams, SvcLogicContext ctx) throws SvcLogicException {
		log.info("Received processParamKeys call with params : " + inParams);
		String responsePrefix = inParams.get(ParamsHandlerConstant.INPUT_PARAM_RESPONSE_PRIFIX);		
		try{
			responsePrefix = StringUtils.isNotBlank(responsePrefix) ? (responsePrefix+".") : "";

			String requestParamJson = inParams.get(ParamsHandlerConstant.INPUT_PARAM_JSON_DATA);	
			String pdContent = inParams.get(ParamsHandlerConstant.INPUT_PARAM_PD_CONTENT);	

			if(StringUtils.isBlank(pdContent)){
				throw new Exception("Request Param (pdContent) is Missing ..");
			}

			if(StringUtils.isBlank(requestParamJson)){
				throw new Exception("Request Param (jsonData) is Missing ..");
			}

			PropertyDefinition propertyDefinition = parsePDContent(pdContent);
			if(propertyDefinition != null){
				requestParamJson = mergeMissingRequestParamFromPD(propertyDefinition, requestParamJson);
				ctx.setAttribute(responsePrefix + ParamsHandlerConstant.OUTPUT_PARAM_CONFIGURATION_PARAMETER, requestParamJson);
			}
			
			ctx.setAttribute(responsePrefix + ParamsHandlerConstant.OUTPUT_PARAM_STATUS, ParamsHandlerConstant.OUTPUT_STATUS_SUCCESS);
		} catch (Exception e) {
			ctx.setAttribute(responsePrefix + ParamsHandlerConstant.OUTPUT_PARAM_STATUS, ParamsHandlerConstant.OUTPUT_STATUS_FAILURE);
			ctx.setAttribute(responsePrefix + ParamsHandlerConstant.OUTPUT_PARAM_ERROR_MESSAGE,e.getMessage());
			log.error("Failed in merging data to template " + e.getMessage());
			throw new SvcLogicException(e.getMessage());
		}
	}

	public void processExternalSystemParamKeys(Map<String, String> inParams, SvcLogicContext ctx) throws SvcLogicException {
		log.info("Received processExternalSystemParamKeys call with params : " + inParams);
		String responsePrefix = inParams.get(ParamsHandlerConstant.INPUT_PARAM_RESPONSE_PRIFIX);		
		try{
			responsePrefix = StringUtils.isNotBlank(responsePrefix) ? (responsePrefix+".") : "";

			String requestParamJson = inParams.get(ParamsHandlerConstant.INPUT_PARAM_JSON_DATA);	
			String pdContent = inParams.get(ParamsHandlerConstant.INPUT_PARAM_PD_CONTENT);	
			String systemName = inParams.get(ParamsHandlerConstant.INPUT_PARAM_SYSTEM_NAME);	


			if(StringUtils.isBlank(pdContent)){
				throw new Exception("Request Param (pdContent) is Missing ..");
			}

			if(StringUtils.isBlank(requestParamJson)){
				throw new Exception("Request Param (jsonData) is Missing ..");
			}

			if(StringUtils.isBlank(systemName)){
				throw new Exception("Request Param (systemName) is Missing ..");
			}

			PropertyDefinition propertyDefinition = parsePDContent(pdContent);
			if(propertyDefinition != null){
				getSystemRequestParamInfoFromPD(propertyDefinition, requestParamJson, systemName, ctx);
			}

			ctx.setAttribute(responsePrefix + ParamsHandlerConstant.OUTPUT_PARAM_STATUS, ParamsHandlerConstant.OUTPUT_STATUS_SUCCESS);
		} catch (Exception e) {
			ctx.setAttribute(responsePrefix + ParamsHandlerConstant.OUTPUT_PARAM_STATUS, ParamsHandlerConstant.OUTPUT_STATUS_FAILURE);
			ctx.setAttribute(responsePrefix + ParamsHandlerConstant.OUTPUT_PARAM_ERROR_MESSAGE,e.getMessage());
			log.error("Failed in merging data to template " + e.getMessage());
			throw new SvcLogicException(e.getMessage());
		}
	}


	public void mergeJsonData(Map<String, String> inParams, SvcLogicContext ctx) throws SvcLogicException {
		log.info("Received mergeJsonData call with params : " + inParams);
		String responsePrefix = inParams.get(ParamsHandlerConstant.INPUT_PARAM_RESPONSE_PRIFIX);		
		try{
			responsePrefix = StringUtils.isNotBlank(responsePrefix) ? (responsePrefix+".") : "";

			String requestParamJson = inParams.get(ParamsHandlerConstant.INPUT_PARAM_JSON_DATA);	
			String mergeJsonData = inParams.get(ParamsHandlerConstant.INPUT_PARAM_MERGE__JSON_DATA);			

			if(StringUtils.isBlank(requestParamJson)){
				throw new Exception("Request Param (jsonData) is Missing ..");
			}

			if(StringUtils.isBlank(mergeJsonData)){
				throw new Exception("Request Param (mergeJsonData) is Missing ..");
			}

			requestParamJson = mergeJson(requestParamJson, mergeJsonData);
			ctx.setAttribute(responsePrefix + ParamsHandlerConstant.OUTPUT_PARAM_CONFIGURATION_PARAMETER, requestParamJson);
			ctx.setAttribute(responsePrefix + ParamsHandlerConstant.OUTPUT_PARAM_STATUS, ParamsHandlerConstant.OUTPUT_STATUS_SUCCESS);
		} catch (Exception e) {
			ctx.setAttribute(responsePrefix + ParamsHandlerConstant.OUTPUT_PARAM_STATUS, ParamsHandlerConstant.OUTPUT_STATUS_FAILURE);
			ctx.setAttribute(responsePrefix + ParamsHandlerConstant.OUTPUT_PARAM_ERROR_MESSAGE,e.getMessage());
			log.error("Failed in merging data to template " + e.getMessage());
			throw new SvcLogicException(e.getMessage());
		}
	}


	/* */

	private PropertyDefinition parsePDContent(String pdContent) throws JsonParseException, JsonMappingException, IOException{
		PropertyDefinition propertyDefinition = null;
		if(StringUtils.isNotBlank(pdContent)){
			ObjectMapper mapper = new ObjectMapper(new YAMLFactory());
			propertyDefinition = mapper.readValue(pdContent, PropertyDefinition.class);
		}
		return propertyDefinition;
	}


	private String mergeMissingRequestParamFromPD(PropertyDefinition propertyDefinition, String requestParamJson) throws Exception{

		if(propertyDefinition == null){
			throw new Exception("PropertyDefinition is Missing ..");
		}

		if(StringUtils.isBlank(requestParamJson)){
			throw new Exception("Request Param is Missing ..");
		}

		ObjectMapper mapper = new ObjectMapper();
		Map<String, String> requestParamMap = mapper.readValue(requestParamJson, HashMap.class);
		if(requestParamMap != null){
			List<Parameter> parameters = propertyDefinition.getParameters();
			for (Parameter parameter : parameters) {
				if(parameter != null){
					
					log.info("Checking Key " + parameter.getName() + ":: Source :" +parameter.getSource());	
					// Add Only non external system keys,If it is not present in request Params
					if( !requestParamMap.containsKey(parameter.getName()) 
							&& StringUtils.isBlank(parameter.getSource())
							){
						log.info("Adding New Key " + parameter.getName());	
						requestParamMap.put(parameter.getName(), parameter.getDefaultValue());
					}					
				}				
			}			
			requestParamJson = mapper.writeValueAsString(requestParamMap);
			log.info("Processed Request Param " + requestParamJson);	
		}

		return requestParamJson;
	}

	private void getSystemRequestParamInfoFromPD(PropertyDefinition propertyDefinition, String requestParamJson, String systemName, SvcLogicContext ctx) throws Exception{

		if(propertyDefinition == null){
			throw new Exception("PropertyDefinition is Missing ..");
		}

		if(StringUtils.isBlank(requestParamJson)){
			throw new Exception("Request Param is Missing ..");
		}

		ObjectMapper mapper = new ObjectMapper();
		Map<String, String> requestParamMap = mapper.readValue(requestParamJson, HashMap.class);
		if(requestParamMap != null){
			List<Parameter> parameters = propertyDefinition.getParameters();

			List<String> externalSystemKeys = new ArrayList<String>();
			for (Parameter parameter : parameters) {
				if(parameter != null){
					if( !requestParamMap.containsKey(parameter.getName()) && StringUtils.isNotBlank(parameter.getSource()) ){
						log.info("Adding New System Key " + parameter.getName() + ":"+ mapper.writeValueAsString(parameter));
						externalSystemKeys.add(parameter.getName());
						ctx.setAttribute(systemName +"."+parameter.getName(), mapper.writeValueAsString(parameter));
					}					
				}				
			}	

			String systemKeys = systemName+".keys";
			ctx.setAttribute(systemKeys, mapper.writeValueAsString(externalSystemKeys));
		}
	}


	private String mergeJson(String requestParamJson, String systemParamJson) throws Exception {
		ObjectMapper mapper = new ObjectMapper();
		Map<String, String> requestParamMap = mapper.readValue(requestParamJson, HashMap.class);
		if(requestParamMap != null){
			Map<String, String> systemParamMap = mapper.readValue(systemParamJson, HashMap.class);
			if(systemParamMap != null){
				for (String systemParamKey : systemParamMap.keySet()) {
					log.trace("Megging System Key Values " + systemParamKey);	
					requestParamMap.put( systemParamKey , systemParamMap.get(systemParamKey));		
				}	
			}
			requestParamJson = mapper.writeValueAsString(requestParamMap);
			log.info("Processed Request Param " + requestParamJson);	
		}

		return requestParamJson;
	}




}