f7900b70aec97b80f46138e8fceb5e79b3cf4fb9
[appc.git] /
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.writer;
26
27 import java.io.File;
28 import java.util.Map;
29 import org.apache.commons.io.FileUtils;
30 import org.apache.commons.lang3.StringUtils;
31 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
32 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
33 import org.onap.ccsdk.sli.core.sli.SvcLogicJavaPlugin;
34 import org.onap.sdnc.config.generator.ConfigGeneratorConstant;
35 import com.att.eelf.configuration.EELFLogger;
36 import com.att.eelf.configuration.EELFManager;
37
38 public class FileWriterNode implements SvcLogicJavaPlugin {
39
40     private static final EELFLogger log = EELFManager.getInstance().getLogger(FileWriterNode.class);
41
42
43
44     public void writeFile(Map<String, String> inParams, SvcLogicContext ctx)
45             throws SvcLogicException {
46         log.info("Received writeFile call with params : " + inParams);
47         String responsePrefix = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_RESPONSE_PRIFIX);
48         try {
49             responsePrefix = StringUtils.isNotBlank(responsePrefix) ? (responsePrefix + ".") : "";
50             String fileName = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_FILE_NAME);
51             String fileContents = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_REQUEST_DATA);
52
53
54             File file = new File(fileName);
55             File filePath = file.getParentFile();
56             FileUtils.forceMkdir(filePath);
57
58             FileUtils.writeStringToFile(file, fileContents,
59                     ConfigGeneratorConstant.STRING_ENCODING);
60
61
62             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
63                     ConfigGeneratorConstant.OUTPUT_STATUS_SUCCESS);
64         } catch (Exception e) {
65             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
66                     ConfigGeneratorConstant.OUTPUT_STATUS_FAILURE);
67             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_ERROR_MESSAGE,
68                     e.getMessage());
69             log.error("Failed in writeFile " + e.getMessage());
70             throw new SvcLogicException(e.getMessage());
71         }
72     }
73
74
75
76 }