make logs quieter
[ccsdk/sli/plugins.git] / template-node / provider / src / main / java / org / onap / ccsdk / sli / plugins / template / TemplateNode.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : SDN-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                      reserved.
7  * Modifications Copyright © 2018 IBM.
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  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.ccsdk.sli.plugins.template;
24
25 import java.io.FileInputStream;
26 import java.io.StringWriter;
27 import java.util.Map;
28 import java.util.Map.Entry;
29 import java.util.Properties;
30 import org.apache.velocity.Template;
31 import org.apache.velocity.VelocityContext;
32 import org.apache.velocity.app.VelocityEngine;
33 import org.apache.velocity.runtime.RuntimeConstants;
34 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
35 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
36 import org.onap.ccsdk.sli.core.sli.SvcLogicJavaPlugin;
37 import org.slf4j.Logger;
38 import org.slf4j.LoggerFactory;
39
40 public class TemplateNode implements SvcLogicJavaPlugin {
41     private static final Logger logger = LoggerFactory.getLogger(TemplateNode.class);
42     public static final String TEMPLATE_PATH = "templatePath";
43     public static final String OUTPUT_PATH_KEY = "output";
44     public static final String PREFIX_KEY = "prefix";
45     public static final String REQUIRED_PARAMETERS_ERROR_MESSAGE = "templateName & outputPath are required fields";
46     protected static final String TEMPLATE_PROPERTIES_FILE_NAME = "template-node.properties";
47     protected static final String DEFAULT_PROPERTIES_DIR = "/opt/onap/ccsdk/data/properties";
48     protected static final String PROPERTIES_DIR_KEY = "SDNC_CONFIG_DIR";
49
50     protected VelocityEngine ve;
51
52     public TemplateNode() {
53         ve = new VelocityEngine();
54         setProperties();
55         ve.init();
56     }
57
58     protected void setProperties() {
59         String configDir = System.getProperty(PROPERTIES_DIR_KEY, DEFAULT_PROPERTIES_DIR);
60         Properties props = new Properties();
61
62         try (FileInputStream in = new FileInputStream(configDir + "/" + TEMPLATE_PROPERTIES_FILE_NAME)) {
63             props.load(in);
64         } catch (Exception e) {
65             logger.warn("Properties not loaded for template node, using sensible defaults. " + e.getMessage());
66         }
67
68         // give sensible defaults for required properties
69         ve.setProperty(RuntimeConstants.RESOURCE_LOADER, props.getProperty("velocity.resource.loader", "file"));
70         ve.setProperty(RuntimeConstants.FILE_RESOURCE_LOADER_PATH,
71                 props.getProperty("velocity.file.resource.loader.path", "/opt/onap/sdnc/restapi/templates"));
72         ve.setProperty(RuntimeConstants.FILE_RESOURCE_LOADER_CACHE,
73                 props.getProperty("velocity.file.resource.loader.cache", "false"));
74
75         // allow flexible reading of additional velocity properties
76         for (String propertyName : props.stringPropertyNames()) {
77             if (propertyName.startsWith("velocity")) {
78                 logger.error("set " + propertyName.substring(9) + "=" + props.get(propertyName));
79                 ve.setProperty(propertyName.substring(9), props.get(propertyName));
80             }
81         }
82     }
83
84     public void evaluateTemplate(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {
85         String templateName = params.get(TEMPLATE_PATH);
86         String outputPath = params.get(OUTPUT_PATH_KEY);
87         String prefix = params.get(PREFIX_KEY);
88
89         if (prefix != null && prefix.length() > 0) {
90             outputPath = prefix + "." + outputPath;
91         }
92
93         if (templateName == null || outputPath == null) {
94             throw new SvcLogicException(REQUIRED_PARAMETERS_ERROR_MESSAGE);
95         } else {
96             try {
97                 Template template = ve.getTemplate(templateName);
98                 VelocityContext context = new VelocityContext();
99                 context.put("ctx", ctx);
100                 context.put("params", params);
101                 //Adding these values directly to context makes working with the values cleaner
102                 for (Entry<String, String> entry : params.entrySet()) {
103                     context.put(entry.getKey(), entry.getValue());
104                 }
105                 StringWriter sw = new StringWriter();
106                 template.merge(context, sw);
107                 ctx.setAttribute(outputPath, sw.toString());
108             } catch (Exception e) {
109                 throw new SvcLogicException(e.getMessage());
110             }
111         }
112     }
113
114 }