Configure "portal app_password" in DB by environment variable
[vid.git] / vid-app-common / src / main / java / org / onap / vid / properties / VidProperties.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.vid.properties;
22
23 import org.apache.commons.lang3.StringUtils;
24 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
25 import org.onap.portalsdk.core.util.SystemProperties;
26 import org.onap.vid.model.ModelConstants;
27 /**
28  * The Class VidProperties.
29  */
30 public class VidProperties extends SystemProperties {
31
32         //VID General Properties
33         public static final String MSO_DISPLAY_TEST_API_ON_SCREEN="mso.displayTestAPIOnScreen";
34         public static final String HOMEPAGE_CONTACT_US_URL = "homepage_contact_us_url";
35         public static final String MSO_DEFAULT_TEST_API="mso.defaultTestAPI";
36         public static final String MSO_MAX_OPENED_INSTANTIATION_REQUESTS="mso.maxOpenedInstantiationRequests";
37         public static final String MSO_ASYNC_POLLING_INTERVAL_SECONDS="mso.asyncPollingIntervalSeconds";
38         public static final String PROBE_SDC_MODEL_UUID="probe.sdc.model.uuid";
39         public static final String PORTAL_APP_PASSWORD_ENVIRONMENT_VARIABLE_NAME="VID_PORTAL_APP_PASSWORD";
40
41         /** The Constant VID_TRUSTSTORE_FILENAME. */
42         public static final String VID_TRUSTSTORE_FILENAME = "vid.truststore.filename";
43
44         /** The Constant VID_TRUSTSTORE_PASSWD_X. */
45         public static final String VID_TRUSTSTORE_PASSWD_X = "vid.truststore.passwd.x";
46
47         /** The Constant FILESEPARATOR. */
48         public static final String FILESEPARATOR = (System.getProperty("file.separator") == null) ? "/" : System.getProperty("file.separator");
49
50         /** The Constant LOG. */
51         private static final EELFLoggerDelegate LOG = EELFLoggerDelegate.getLogger(VidProperties.class);
52
53         public static final String VID_JOB_MAX_HOURS_IN_PROGRESS = "vid.asyncJob.maxHoursInProgress";
54
55         public static final String VID_THREAD_COUNT = "vid.thread.count";
56         public static final String VID_THREAD_TIMEOUT = "vid.thread.timeout";
57
58         /**
59          * Gets the asdc model namespace prefix property
60          *
61          * @return the property value or a default value
62          */
63         public static String getAsdcModelNamespace() {
64                 String methodName = "getAsdcModelNamespace ";
65                 String asdcModelNamespace = ModelConstants.DEFAULT_ASDC_MODEL_NAMESPACE;
66                 try {
67                         asdcModelNamespace = SystemProperties.getProperty(ModelConstants.ASDC_MODEL_NAMESPACE);
68                         if ( asdcModelNamespace == null || asdcModelNamespace.isEmpty()) {
69                                 asdcModelNamespace = ModelConstants.DEFAULT_ASDC_MODEL_NAMESPACE;
70                         }
71                 }
72                 catch ( Exception e ) {
73                         LOG.error (EELFLoggerDelegate.errorLogger, methodName + "unable to find the value, using the default "
74                                         + ModelConstants.DEFAULT_ASDC_MODEL_NAMESPACE);
75                         asdcModelNamespace = ModelConstants.DEFAULT_ASDC_MODEL_NAMESPACE;
76                 }
77                 return (asdcModelNamespace);
78         }
79         /**
80          * Gets the specified property value. If the property is not defined, returns a default value.
81          *
82          * @return the property value or a default value
83          */
84         public static String getPropertyWithDefault ( String propName, String defaultValue ) {
85                 String methodName = "getPropertyWithDefault ";
86                 String propValue = defaultValue;
87                 try {
88                         propValue = SystemProperties.getProperty(propName);
89                         if ( propValue == null || propValue.isEmpty()) {
90                                 propValue = defaultValue;
91                         }
92                 }
93                 catch ( Exception e ) {
94                         LOG.error (EELFLoggerDelegate.errorLogger, methodName + "unable to find the value, using the default "
95                                         + defaultValue);
96                         propValue = defaultValue;
97                 }
98                 return (propValue);
99         }
100
101         public static long getLongProperty(String key) {
102                 return getLongProperty(key, 0);
103         }
104
105         public static long getLongProperty(String key, long defaultValue) {
106                 if (!containsProperty(key)) {
107                         LOG.debug(EELFLoggerDelegate.debugLogger, "No such property: {}. {} value is used", key, defaultValue);
108                         return defaultValue;
109                 }
110                 String configValue = getProperty(key);
111                 if (StringUtils.isNumeric(configValue)) {
112                         return Long.parseLong(configValue);
113                 } else {
114                         LOG.debug(EELFLoggerDelegate.debugLogger, "{} property value is not valid: {}. {} value is used", key, configValue, defaultValue);
115                         return defaultValue;
116                 }
117         }
118 }