appc-config-generator-provider sonar fixes part 2
[appc.git] / appc-config / appc-config-generator / provider / src / main / java / org / onap / sdnc / config / generator / transform / XSLTTransformerNode.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.sdnc.config.generator.transform;
26
27 import com.att.eelf.configuration.EELFLogger;
28 import com.att.eelf.configuration.EELFManager;
29 import java.io.File;
30 import java.io.StringReader;
31 import java.io.StringWriter;
32 import java.nio.charset.Charset;
33 import java.util.Map;
34 import javax.xml.transform.Transformer;
35 import javax.xml.transform.TransformerException;
36 import javax.xml.transform.TransformerFactory;
37 import javax.xml.transform.stream.StreamResult;
38 import javax.xml.transform.stream.StreamSource;
39 import org.apache.commons.io.FileUtils;
40 import org.apache.commons.lang3.StringUtils;
41 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
42 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
43 import org.onap.ccsdk.sli.core.sli.SvcLogicJavaPlugin;
44 import org.onap.sdnc.config.generator.ConfigGeneratorConstant;
45 import org.onap.sdnc.config.generator.merge.ParameterMissingException;
46
47 public class XSLTTransformerNode implements SvcLogicJavaPlugin {
48
49     private static final EELFLogger log =
50         EELFManager.getInstance().getLogger(XSLTTransformerNode.class);
51
52     public void transformData(Map<String, String> inParams, SvcLogicContext ctx)
53         throws SvcLogicException {
54         log.trace("Received convertJson2DGContext call with params : " + inParams);
55         String responsePrefix = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_RESPONSE_PRIFIX);
56         try {
57             responsePrefix = StringUtils.isNotBlank(responsePrefix) ? (responsePrefix + ".") : "";
58
59             String templateData = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_TEMPLATE_DATA);
60
61             if (StringUtils.isNotBlank(templateData)) {
62                 String templateFile =
63                     inParams.get(ConfigGeneratorConstant.INPUT_PARAM_TEMPLATE_FILE);
64                 if (StringUtils.isNotBlank(templateFile)) {
65                     templateData = FileUtils.readFileToString(new File(templateFile),
66                         Charset.defaultCharset());
67                 }
68             }
69             if (StringUtils.isBlank(templateData)) {
70                 throw new ParameterMissingException("In-param templateFile/templateData value is missing");
71             }
72
73             String requestData = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_REQUEST_DATA);
74             if (StringUtils.isBlank(requestData)) {
75                 throw new ParameterMissingException("In-param requestData value is missing");
76             }
77
78             String transformedData = transform(requestData, templateData);
79             log.trace("Transformed Data : " + transformedData);
80             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_TRANSFORMED_DATA,
81                 transformedData);
82             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
83                 ConfigGeneratorConstant.OUTPUT_STATUS_SUCCESS);
84         } catch (Exception e) {
85             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
86                 ConfigGeneratorConstant.OUTPUT_STATUS_FAILURE);
87             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_ERROR_MESSAGE,
88                 e.getMessage());
89             log.error("Failed in XSLTTransformerNode", e);
90             throw new SvcLogicException(e.getMessage());
91         }
92     }
93
94     private String transform(String requestData, String templateData) throws TransformerException {
95         StringWriter xmlResultResource = new StringWriter();
96
97         Transformer xmlTransformer = TransformerFactory
98             .newInstance()
99             .newTransformer(new StreamSource(new StringReader(templateData)));
100
101         xmlTransformer
102             .transform(new StreamSource(new StringReader(requestData)), new StreamResult(xmlResultResource));
103
104         return xmlResultResource.getBuffer().toString();
105     }
106 }