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