c2b3ffddca3bb43415c3cc316a8004cf2664c37c
[so.git] / asdc-controller / src / main / java / org / onap / so / asdc / client / ASDCConfiguration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
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.so.asdc.client;
24
25 import java.security.GeneralSecurityException;
26 import java.util.Arrays;
27 import java.util.Collections;
28 import java.util.List;
29 import org.onap.sdc.api.consumer.IConfiguration;
30 import org.onap.so.utils.CryptoUtils;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.beans.factory.annotation.Autowired;
34 import org.springframework.beans.factory.annotation.Value;
35 import org.springframework.core.env.Environment;
36 import org.springframework.stereotype.Component;
37
38 @Component
39 public class ASDCConfiguration implements IConfiguration {
40
41     // SHell command to obtain the same encryption, 128 bits key, key must be HEX
42     // echo -n "This is a test string" | openssl aes-128-ecb -e -K 546573746F736973546573746F736973
43     // -nosalt | xxd
44
45     private static Logger logger = LoggerFactory.getLogger(ASDCConfiguration.class);
46
47     private String asdcControllerName;
48
49     public static final String HEAT = "HEAT";
50     public static final String HEAT_ARTIFACT = "HEAT_ARTIFACT";
51     public static final String HEAT_ENV = "HEAT_ENV";
52     public static final String HEAT_NESTED = "HEAT_NESTED";
53     public static final String HEAT_NET = "HEAT_NET";
54     public static final String HEAT_VOL = "HEAT_VOL";
55     public static final String OTHER = "OTHER";
56     public static final String TOSCA_CSAR = "TOSCA_CSAR";
57     public static final String WORKFLOW = "WORKFLOW";
58     public static final String VF_MODULES_METADATA = "VF_MODULES_METADATA";
59     public static final String CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT = "CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT";
60     public static final String HELM = "HELM";
61
62
63     private static final String[] SUPPORTED_ARTIFACT_TYPES = {HEAT, HEAT_ARTIFACT, HEAT_ENV, HEAT_NESTED, HEAT_NET,
64             HEAT_VOL, OTHER, TOSCA_CSAR, VF_MODULES_METADATA, WORKFLOW, CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT, HELM};
65
66
67     public static final List<String> SUPPORTED_ARTIFACT_TYPES_LIST =
68             Collections.unmodifiableList(Arrays.asList(SUPPORTED_ARTIFACT_TYPES));
69
70     @Autowired
71     private Environment env;
72
73     @Value("${mso.asdc.config.key}")
74     private String configKey;
75
76     @Value("${mso.asdc-connections.asdc-controller1.messageBusAddress}")
77     private String[] messageBusAddress;
78
79     public void setAsdcControllerName(String asdcControllerName) {
80         this.asdcControllerName = asdcControllerName;
81     }
82
83     @Override
84     public java.lang.Boolean isUseHttpsWithDmaap() {
85         return getBooleanPropertyWithDefault("mso.asdc-connections.asdc-controller1.useHttpsWithDmaap", true);
86     }
87
88     @Override
89     public java.lang.Boolean isUseHttpsWithSDC() {
90         return getBooleanPropertyWithDefault("mso.asdc-connections.asdc-controller1.useHttpsWithSdc", true);
91     }
92
93     @Override
94     public boolean isConsumeProduceStatusTopic() {
95         return true;
96     }
97
98     @Override
99     public List<String> getMsgBusAddress() {
100         if (messageBusAddress.length > 0) {
101             return Arrays.asList(messageBusAddress);
102         } else {
103             return Collections.emptyList();
104         }
105     }
106
107     public String getAsdcControllerName() {
108         return asdcControllerName;
109     }
110
111     @Override
112     public String getConsumerGroup() {
113         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.consumerGroup");
114     }
115
116     public int getWatchDogTimeout() {
117         return getIntegerPropertyOrZero("mso.asdc-connections.asdc-controller1.watchDogTimeout");
118
119     }
120
121     @Override
122     public String getConsumerID() {
123         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.consumerId");
124     }
125
126     public int getIntegerPropertyOrZero(String propertyName) {
127         String property = env.getProperty(propertyName);
128         if (property == null || "NULL".equals(property) || property.isEmpty()) {
129             return 0;
130         } else {
131             try {
132                 return Integer.parseInt(property);
133             } catch (NumberFormatException e) {
134                 return 0;
135             }
136         }
137     }
138
139     public String getPropertyOrNull(String propertyName) {
140         String config = env.getProperty(propertyName);
141         if (config == null || "NULL".equals(config) || config.isEmpty()) {
142             return null;
143         } else {
144             return config;
145         }
146     }
147
148     public String getEncryptedPropertyOrNull(String propertyName) {
149         String decryptedKey;
150         String config = env.getProperty(propertyName);
151
152         if (config == null || "NULL".equals(config) || config.isEmpty()) {
153             return null;
154         }
155
156         try {
157             decryptedKey = CryptoUtils.decrypt(config, this.configKey);
158         } catch (GeneralSecurityException e) {
159             logger.debug("Exception while decrypting property: {}", propertyName, e);
160             return null;
161         }
162
163         if (decryptedKey.isEmpty()) {
164             return null;
165         } else {
166             return decryptedKey;
167         }
168     }
169
170     public boolean getBooleanPropertyWithDefault(String propertyName, boolean defaultValue) {
171         String config = env.getProperty(propertyName);
172         if (config == null || "NULL".equals(config) || config.isEmpty()) {
173             return defaultValue;
174         } else {
175             try {
176                 return Boolean.valueOf(config);
177             } catch (Exception e) {
178                 logger.warn("Exception while getting boolean property with default property", e);
179                 return defaultValue;
180             }
181         }
182     }
183
184     @Override
185     public String getEnvironmentName() {
186         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.environmentName");
187     }
188
189     @Override
190     public String getPassword() {
191         return getEncryptedPropertyOrNull("mso.asdc-connections.asdc-controller1.password");
192     }
193
194     @Override
195     public int getPollingInterval() {
196         return getIntegerPropertyOrZero("mso.asdc-connections.asdc-controller1.pollingInterval");
197     }
198
199     @Override
200     public List<String> getRelevantArtifactTypes() {
201         // DO not return the Static List SUPPORTED_ARTIFACT_TYPES_LIST because the ASDC Client will
202         // try to modify it !!!
203         return Arrays.asList(SUPPORTED_ARTIFACT_TYPES);
204     }
205
206     @Override
207     public String getUser() {
208         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.user");
209     }
210
211     @Override
212     public String getAsdcAddress() {
213         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.asdcAddress");
214     }
215
216     @Override
217     public int getPollingTimeout() {
218         return getIntegerPropertyOrZero("mso.asdc-connections.asdc-controller1.pollingTimeout");
219     }
220
221     @Override
222     public boolean activateServerTLSAuth() {
223         return getBooleanPropertyWithDefault("mso.asdc-connections.asdc-controller1.activateServerTLSAuth", true);
224     }
225
226     @Override
227     public String getKeyStorePassword() {
228         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.keyStorePassword");
229     }
230
231     @Override
232     public String getKeyStorePath() {
233         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.keyStorePath");
234     }
235
236     /**
237      * The flag allows the client to receive metadata for all resources of the service regardless of the artifacts
238      * associated to them. Setting the flag to false will preserve legacy behavior.
239      */
240     @Override
241     public boolean isFilterInEmptyResources() {
242         return getBooleanPropertyWithDefault("mso.asdc-connections.asdc-controller1.isFilterInEmptyResources", true);
243     }
244
245 }