b621759b596581470d594b1fe54511fcad08f345
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 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.adapters.vnfmadapter.extclients.vnfm;
22
23 import static org.onap.so.client.RestTemplateConfig.CONFIGURABLE_REST_TEMPLATE;
24 import com.google.gson.Gson;
25 import java.io.IOException;
26 import java.security.KeyManagementException;
27 import java.security.KeyStore;
28 import java.security.KeyStoreException;
29 import java.security.NoSuchAlgorithmException;
30 import java.security.UnrecoverableKeyException;
31 import java.security.cert.CertificateException;
32 import java.util.Iterator;
33 import java.util.ListIterator;
34 import java.util.Map;
35 import java.util.UUID;
36 import java.util.concurrent.ConcurrentHashMap;
37 import javax.net.ssl.SSLContext;
38 import org.apache.commons.lang3.StringUtils;
39 import org.apache.http.client.HttpClient;
40 import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
41 import org.apache.http.impl.client.HttpClients;
42 import org.apache.http.ssl.SSLContextBuilder;
43 import org.onap.aai.domain.yang.EsrSystemInfo;
44 import org.onap.aai.domain.yang.EsrVnfm;
45 import org.onap.so.adapters.vnfmadapter.extclients.vnfm.lcn.JSON;
46 import org.onap.so.configuration.rest.BasicHttpHeadersProvider;
47 import org.onap.so.logging.jaxrs.filter.SOSpringClientFilter;
48 import org.onap.so.rest.service.HttpRestServiceProvider;
49 import org.onap.so.rest.service.HttpRestServiceProviderImpl;
50 import org.slf4j.Logger;
51 import org.slf4j.LoggerFactory;
52 import org.springframework.beans.factory.annotation.Autowired;
53 import org.springframework.beans.factory.annotation.Qualifier;
54 import org.springframework.beans.factory.annotation.Value;
55 import org.springframework.context.annotation.Configuration;
56 import org.springframework.core.io.Resource;
57 import org.springframework.http.client.BufferingClientHttpRequestFactory;
58 import org.springframework.http.client.ClientHttpRequestInterceptor;
59 import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
60 import org.springframework.http.converter.HttpMessageConverter;
61 import org.springframework.http.converter.json.GsonHttpMessageConverter;
62 import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
63 import org.springframework.security.oauth2.client.OAuth2RestTemplate;
64 import org.springframework.security.oauth2.client.token.grant.client.ClientCredentialsResourceDetails;
65 import org.springframework.web.client.RestTemplate;
66
67 /**
68  * Configures the HttpRestServiceProvider for REST call to a VNFM.
69  */
70 @Configuration
71 public class VnfmServiceProviderConfiguration {
72
73     private static final Logger logger = LoggerFactory.getLogger(VnfmServiceProviderConfiguration.class);
74     private Map<String, HttpRestServiceProvider> mapOfVnfmIdToHttpRestServiceProvider = new ConcurrentHashMap<>();
75
76     @Value("${http.client.ssl.trust-store:#{null}}")
77     private Resource trustStore;
78     @Value("${http.client.ssl.trust-store-password:#{null}}")
79     private String trustStorePassword;
80
81     @Value("${server.ssl.key-store:#{null}}")
82     private Resource keyStoreResource;
83     @Value("${server.ssl.key--store-password:#{null}}")
84     private String keyStorePassword;
85
86     /**
87      * This property is only intended to be temporary until the AAI schema is updated to support setting the endpoint
88      */
89     @Value("${vnfmadapter.temp.vnfm.oauth.endpoint:#{null}}")
90     private String oauthEndpoint;
91
92     @Qualifier(CONFIGURABLE_REST_TEMPLATE)
93     @Autowired()
94     private RestTemplate defaultRestTemplate;
95
96     public HttpRestServiceProvider getHttpRestServiceProvider(final EsrVnfm vnfm) {
97         if (!mapOfVnfmIdToHttpRestServiceProvider.containsKey(vnfm.getVnfmId())) {
98             mapOfVnfmIdToHttpRestServiceProvider.put(vnfm.getVnfmId(), createHttpRestServiceProvider(vnfm));
99         }
100         return mapOfVnfmIdToHttpRestServiceProvider.get(vnfm.getVnfmId());
101     }
102
103     private HttpRestServiceProvider createHttpRestServiceProvider(final EsrVnfm vnfm) {
104         final RestTemplate restTemplate = createRestTemplate(vnfm);
105         setGsonMessageConverter(restTemplate);
106         if (trustStore != null) {
107             setTrustStore(restTemplate);
108         }
109         return new HttpRestServiceProviderImpl(restTemplate, new BasicHttpHeadersProvider());
110     }
111
112     private RestTemplate createRestTemplate(final EsrVnfm vnfm) {
113         if (vnfm != null) {
114             for (final EsrSystemInfo esrSystemInfo : vnfm.getEsrSystemInfoList().getEsrSystemInfo()) {
115                 if (!StringUtils.isEmpty(esrSystemInfo.getUserName())
116                         && !StringUtils.isEmpty(esrSystemInfo.getPassword())) {
117                     return createOAuth2RestTemplate(esrSystemInfo);
118                 }
119             }
120         }
121         return defaultRestTemplate;
122     }
123
124     private OAuth2RestTemplate createOAuth2RestTemplate(final EsrSystemInfo esrSystemInfo) {
125         logger.debug("Getting OAuth2RestTemplate ...");
126         final ClientCredentialsResourceDetails resourceDetails = new ClientCredentialsResourceDetails();
127         resourceDetails.setId(UUID.randomUUID().toString());
128         resourceDetails.setClientId(esrSystemInfo.getUserName());
129         resourceDetails.setClientSecret(esrSystemInfo.getPassword());
130         resourceDetails.setAccessTokenUri(
131                 oauthEndpoint == null ? esrSystemInfo.getServiceUrl().replace("vnflcm/v1", "oauth/token")
132                         : oauthEndpoint);
133         resourceDetails.setGrantType("client_credentials");
134         return new OAuth2RestTemplate(resourceDetails);
135     }
136
137     private void setGsonMessageConverter(final RestTemplate restTemplate) {
138         final Iterator<HttpMessageConverter<?>> iterator = restTemplate.getMessageConverters().iterator();
139         while (iterator.hasNext()) {
140             if (iterator.next() instanceof MappingJackson2HttpMessageConverter) {
141                 iterator.remove();
142             }
143         }
144         final Gson gson = new JSON().getGson();
145         restTemplate.getMessageConverters().add(new GsonHttpMessageConverter(gson));
146     }
147
148     private void setTrustStore(final RestTemplate restTemplate) {
149         SSLContext sslContext;
150         try {
151             if (keyStoreResource != null) {
152                 KeyStore keystore = KeyStore.getInstance("pkcs12");
153                 keystore.load(keyStoreResource.getInputStream(), keyStorePassword.toCharArray());
154                 sslContext =
155                         new SSLContextBuilder().loadTrustMaterial(trustStore.getURL(), trustStorePassword.toCharArray())
156                                 .loadKeyMaterial(keystore, keyStorePassword.toCharArray()).build();
157             } else {
158                 sslContext = new SSLContextBuilder()
159                         .loadTrustMaterial(trustStore.getURL(), trustStorePassword.toCharArray()).build();
160             }
161             logger.info("Setting truststore: {}", trustStore.getURL());
162             final SSLConnectionSocketFactory socketFactory = new SSLConnectionSocketFactory(sslContext);
163             final HttpClient httpClient = HttpClients.custom().setSSLSocketFactory(socketFactory).build();
164             final HttpComponentsClientHttpRequestFactory factory =
165                     new HttpComponentsClientHttpRequestFactory(httpClient);
166             restTemplate.setRequestFactory(new BufferingClientHttpRequestFactory(factory));
167         } catch (KeyManagementException | NoSuchAlgorithmException | KeyStoreException | CertificateException
168                 | IOException | UnrecoverableKeyException exception) {
169             logger.error("Error reading truststore, TLS connection to VNFM will fail.", exception);
170         }
171     }
172
173     private void removeSpringClientFilter(final RestTemplate restTemplate) {
174         ListIterator<ClientHttpRequestInterceptor> interceptorIterator = restTemplate.getInterceptors().listIterator();
175         while (interceptorIterator.hasNext()) {
176             if (interceptorIterator.next() instanceof SOSpringClientFilter) {
177                 interceptorIterator.remove();
178             }
179         }
180     }
181
182 }