2  * ============LICENSE_START=======================================================
 
   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
 
  13  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 
  22  * ============LICENSE_END=========================================================
 
  25 package org.onap.sdnc.config.generator.writer;
 
  27 import com.att.eelf.configuration.EELFLogger;
 
  28 import com.att.eelf.configuration.EELFManager;
 
  31 import org.apache.commons.io.FileUtils;
 
  32 import org.apache.commons.lang3.StringUtils;
 
  33 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
 
  34 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
 
  35 import org.onap.ccsdk.sli.core.sli.SvcLogicJavaPlugin;
 
  36 import org.onap.sdnc.config.generator.ConfigGeneratorConstant;
 
  38 public class FileWriterNode implements SvcLogicJavaPlugin {
 
  40     private static final EELFLogger log = EELFManager.getInstance().getLogger(FileWriterNode.class);
 
  42     public void writeFile(Map<String, String> inParams, SvcLogicContext ctx)
 
  43         throws SvcLogicException {
 
  44         log.info("Received writeFile call with params : " + inParams);
 
  45         String responsePrefix = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_RESPONSE_PRIFIX);
 
  47             responsePrefix = StringUtils.isNotBlank(responsePrefix) ? (responsePrefix + ".") : "";
 
  48             String fileName = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_FILE_NAME);
 
  49             String fileContents = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_REQUEST_DATA);
 
  51             File file = new File(fileName);
 
  52             File filePath = file.getParentFile();
 
  53             FileUtils.forceMkdir(filePath);
 
  55             FileUtils.writeStringToFile(file, fileContents,
 
  56                 ConfigGeneratorConstant.STRING_ENCODING);
 
  58             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
 
  59                 ConfigGeneratorConstant.OUTPUT_STATUS_SUCCESS);
 
  60         } catch (Exception e) {
 
  61             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
 
  62                 ConfigGeneratorConstant.OUTPUT_STATUS_FAILURE);
 
  63             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_ERROR_MESSAGE,
 
  65             log.error("Failed in writeFile", e);
 
  66             throw new SvcLogicException(e.getMessage());