summaryrefslogtreecommitdiffstats
path: root/pomba/network-discovery/src/main/java/org/onap/sdnc/apps/pomba/networkdiscovery/OpenstackConfiguration.java
blob: ee18397a9231faee7c9c9f7dc9c8fabe4a169841 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
 * ============LICENSE_START===================================================
 * Copyright (c) 2018 Amdocs
 * ============================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=====================================================
 */
package org.onap.sdnc.apps.pomba.networkdiscovery;

import java.util.HashMap;
import java.util.Map;
import java.util.StringTokenizer;

import org.eclipse.jetty.util.security.Password;
import org.onap.aai.restclient.client.RestClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.Environment;

@Configuration
public class OpenstackConfiguration {
    @Autowired
    private Environment env;

    @Value("${openstack.identity.url:http://localhost:5000/v3}")
    private String identityUrl;

    @Value("${openstack.identity.user}")
    private String identityUser;

    @Value("${openstack.identity.password}")
    private String identityPassword;

    @Value("${openstack.api.microversion}")
    private String apiMicroversion;

    @Value("${openstack.identity.keyStorePath:config/auth/client-cert-onap.p12}")
    private String keyStorePath;

    @Value("${openstack.identity.keyStorePassword:OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10}")
    private String keyStorePassword;

    @Value("${openstack.connectionTimeout:5000}")
    private int connectionTimeout;

    @Value("${openstack.readTimeout:60000}")
    private int readTimeout;

    @Bean(name = "openstackClient")
    public RestClient restClient() {
        return new RestClient().validateServerHostname(false)
                        .validateServerCertChain(false)
                        .connectTimeoutMs(this.connectionTimeout)
                        .readTimeoutMs(this.readTimeout);
    }

    @Bean(name = "openstackIdentityUrl")
    public String getIdentityURL() {
        return this.identityUrl;
    }

    @Bean(name = "openstackIdentityUser")
    public String getIdentityUser() {
        return this.identityUser;
    }

    @Bean(name = "openstackIdentityPassword")
    public String getIdentityPassword() {
        return Password.deobfuscate(this.identityPassword);
    }

    @Bean(name = "openstackApiMicroversion")
    public String getApiMicroversion() {
        return this.apiMicroversion;
    }

    @Bean(name = "openstackTypeURLs")
    public Map<String, String> getOpenstackTypeURLs() {

        Map<String, String> result = new HashMap<>();
        String types = this.env.getProperty("openstack.types");
        if (types == null) {
            return result;
        }

        StringTokenizer tokenizer = new StringTokenizer(types, ", ");
        while (tokenizer.hasMoreTokens()) {
            String type = tokenizer.nextToken();
            String openstackUrl = this.env.getProperty("openstack.type." + type + ".url");
            result.put(type, openstackUrl);
        }

        return result;
    }

}