Merge "Changes related to eviction of connections"
[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
61     private static final String[] SUPPORTED_ARTIFACT_TYPES = {HEAT, HEAT_ARTIFACT, HEAT_ENV, HEAT_NESTED, HEAT_NET,
62             HEAT_VOL, OTHER, TOSCA_CSAR, VF_MODULES_METADATA, CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT, WORKFLOW};
63
64     public static final List<String> SUPPORTED_ARTIFACT_TYPES_LIST =
65             Collections.unmodifiableList(Arrays.asList(SUPPORTED_ARTIFACT_TYPES));
66
67     @Autowired
68     private Environment env;
69
70     @Value("${mso.asdc.config.key}")
71     private String configKey;
72
73     @Value("${mso.asdc-connections.asdc-controller1.messageBusAddress}")
74     private String[] messageBusAddress;
75
76     public void setAsdcControllerName(String asdcControllerName) {
77         this.asdcControllerName = asdcControllerName;
78     }
79
80     @Override
81     public java.lang.Boolean isUseHttpsWithDmaap() {
82         return getBooleanPropertyWithDefault("mso.asdc-connections.asdc-controller1.useHttpsWithDmaap", true);
83     }
84
85     @Override
86     public boolean isConsumeProduceStatusTopic() {
87         return true;
88     }
89
90     @Override
91     public List<String> getMsgBusAddress() {
92         if (messageBusAddress.length > 0) {
93             return Arrays.asList(messageBusAddress);
94         } else {
95             return Collections.emptyList();
96         }
97     }
98
99     public String getAsdcControllerName() {
100         return asdcControllerName;
101     }
102
103     @Override
104     public String getConsumerGroup() {
105         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.consumerGroup");
106     }
107
108     public int getWatchDogTimeout() {
109         return getIntegerPropertyOrZero("mso.asdc-connections.asdc-controller1.watchDogTimeout");
110
111     }
112
113     @Override
114     public String getConsumerID() {
115         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.consumerId");
116     }
117
118     public int getIntegerPropertyOrZero(String propertyName) {
119         String property = env.getProperty(propertyName);
120         if (property == null || "NULL".equals(property) || property.isEmpty()) {
121             return 0;
122         } else {
123             try {
124                 return Integer.parseInt(property);
125             } catch (NumberFormatException e) {
126                 return 0;
127             }
128         }
129     }
130
131     public String getPropertyOrNull(String propertyName) {
132         String config = env.getProperty(propertyName);
133         if (config == null || "NULL".equals(config) || config.isEmpty()) {
134             return null;
135         } else {
136             return config;
137         }
138     }
139
140     public String getEncryptedPropertyOrNull(String propertyName) {
141         String decryptedKey;
142         String config = env.getProperty(propertyName);
143
144         if (config == null || "NULL".equals(config) || config.isEmpty()) {
145             return null;
146         }
147
148         try {
149             decryptedKey = CryptoUtils.decrypt(config, this.configKey);
150         } catch (GeneralSecurityException e) {
151             logger.debug("Exception while decrypting property: {}", propertyName, e);
152             return null;
153         }
154
155         if (decryptedKey.isEmpty()) {
156             return null;
157         } else {
158             return decryptedKey;
159         }
160     }
161
162     public boolean getBooleanPropertyWithDefault(String propertyName, boolean defaultValue) {
163         String config = env.getProperty(propertyName);
164         if (config == null || "NULL".equals(config) || config.isEmpty()) {
165             return defaultValue;
166         } else {
167             try {
168                 return Boolean.valueOf(config);
169             } catch (Exception e) {
170                 logger.warn("Exception while getting boolean property with default property", e);
171                 return defaultValue;
172             }
173         }
174     }
175
176     @Override
177     public String getEnvironmentName() {
178         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.environmentName");
179     }
180
181     @Override
182     public String getPassword() {
183         return getEncryptedPropertyOrNull("mso.asdc-connections.asdc-controller1.password");
184     }
185
186     @Override
187     public int getPollingInterval() {
188         return getIntegerPropertyOrZero("mso.asdc-connections.asdc-controller1.pollingInterval");
189     }
190
191     @Override
192     public List<String> getRelevantArtifactTypes() {
193         // DO not return the Static List SUPPORTED_ARTIFACT_TYPES_LIST because the ASDC Client will
194         // try to modify it !!!
195         return Arrays.asList(SUPPORTED_ARTIFACT_TYPES);
196     }
197
198     @Override
199     public String getUser() {
200         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.user");
201     }
202
203     @Override
204     public String getAsdcAddress() {
205         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.asdcAddress");
206     }
207
208     @Override
209     public int getPollingTimeout() {
210         return getIntegerPropertyOrZero("mso.asdc-connections.asdc-controller1.pollingTimeout");
211     }
212
213     @Override
214     public boolean activateServerTLSAuth() {
215         return getBooleanPropertyWithDefault("mso.asdc-connections.asdc-controller1.activateServerTLSAuth", true);
216     }
217
218     @Override
219     public String getKeyStorePassword() {
220         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.keyStorePassword");
221     }
222
223     @Override
224     public String getKeyStorePath() {
225         return getPropertyOrNull("mso.asdc-connections.asdc-controller1.keyStorePath");
226     }
227
228     /**
229      * The flag allows the client to receive metadata for all resources of the service regardless of the artifacts
230      * associated to them. Setting the flag to false will preserve legacy behavior.
231      */
232     @Override
233     public boolean isFilterInEmptyResources() {
234         return getBooleanPropertyWithDefault("mso.asdc-connections.asdc-controller1.isFilterInEmptyResources", true);
235     }
236
237 }