25a43a86d0d03a31b9a983957b385a54cb460c99
[so.git] / so-etsi-nfvo / so-etsi-nfvo-ns-lcm / so-etsi-nfvo-ns-lcm-bpmn-flows / src / main / java / org / onap / so / etsi / nfvo / ns / lcm / bpmn / flows / extclients / aai / AaiPropertiesImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.etsi.nfvo.ns.lcm.bpmn.flows.extclients.aai;
22
23 import org.onap.aaiclient.client.aai.AAIProperties;
24 import org.onap.aaiclient.client.aai.AAIVersion;
25 import org.onap.so.client.CacheProperties;
26 import org.onap.so.spring.SpringContextHelper;
27 import org.springframework.context.ApplicationContext;
28 import java.net.MalformedURLException;
29 import java.net.URL;
30
31 public class AaiPropertiesImpl implements AAIProperties {
32
33     private final String endpoint;
34     private final String encryptedBasicAuth;
35     private final String encryptionKey;
36     private final String aaiVersion;
37     private final Long readTimeout;
38     private final Long connectionTimeout;
39     private final boolean enableCaching;
40     private final Long cacheMaxAge;
41
42     public AaiPropertiesImpl() {
43         final ApplicationContext context = SpringContextHelper.getAppContext();
44         this.endpoint = context.getEnvironment().getProperty("aai.endpoint");
45         this.encryptedBasicAuth = context.getEnvironment().getProperty("aai.auth");
46         this.encryptionKey = context.getEnvironment().getProperty("mso.key");
47         this.aaiVersion = context.getEnvironment().getProperty("aai.version");
48         this.readTimeout = context.getEnvironment().getProperty("aai.readTimeout", Long.class, 60000L);
49         this.connectionTimeout = context.getEnvironment().getProperty("aai.connectionTimeout", Long.class, 60000L);
50         this.enableCaching = context.getEnvironment().getProperty("aai.caching.enabled", Boolean.class, false);
51         this.cacheMaxAge = context.getEnvironment().getProperty("aai.caching.maxAge", Long.class, 60000L);
52     }
53
54     @Override
55     public URL getEndpoint() throws MalformedURLException {
56         return new URL(endpoint);
57     }
58
59     @Override
60     public String getSystemName() {
61         return "MSO";
62     }
63
64     @Override
65     public AAIVersion getDefaultVersion() {
66         for (final AAIVersion version : AAIVersion.values()) {
67             if (version.toString().equalsIgnoreCase(this.aaiVersion)) {
68                 return version;
69             } ;
70
71         }
72         return AAIVersion.LATEST;
73     }
74
75     @Override
76     public String getAuth() {
77         return encryptedBasicAuth;
78     }
79
80     @Override
81     public String getKey() {
82         return encryptionKey;
83     }
84
85     @Override
86     public Long getReadTimeout() {
87         return this.readTimeout;
88     }
89
90     @Override
91     public Long getConnectionTimeout() {
92         return this.connectionTimeout;
93     }
94
95     @Override
96     public boolean isCachingEnabled() {
97         return this.enableCaching;
98     }
99
100     @Override
101     public CacheProperties getCacheProperties() {
102         return new AAICacheProperties() {
103             @Override
104             public Long getMaxAge() {
105                 return cacheMaxAge;
106             }
107         };
108     }
109 }