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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.so.adapters.vnfmadapter.extclients.vnfm;
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;
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;
68 * Configures the HttpRestServiceProvider for REST call to a VNFM.
71 public class VnfmServiceProviderConfiguration {
73 private static final Logger logger = LoggerFactory.getLogger(VnfmServiceProviderConfiguration.class);
74 private Map<String, HttpRestServiceProvider> mapOfVnfmIdToHttpRestServiceProvider = new ConcurrentHashMap<>();
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;
81 @Value("${server.ssl.key-store:#{null}}")
82 private Resource keyStoreResource;
83 @Value("${server.ssl.key--store-password:#{null}}")
84 private String keyStorePassword;
87 * This property is only intended to be temporary until the AAI schema is updated to support setting the endpoint
89 @Value("${vnfmadapter.temp.vnfm.oauth.endpoint:#{null}}")
90 private String oauthEndpoint;
92 @Qualifier(CONFIGURABLE_REST_TEMPLATE)
94 private RestTemplate defaultRestTemplate;
96 public HttpRestServiceProvider getHttpRestServiceProvider(final EsrVnfm vnfm) {
97 if (!mapOfVnfmIdToHttpRestServiceProvider.containsKey(vnfm.getVnfmId())) {
98 mapOfVnfmIdToHttpRestServiceProvider.put(vnfm.getVnfmId(), createHttpRestServiceProvider(vnfm));
100 return mapOfVnfmIdToHttpRestServiceProvider.get(vnfm.getVnfmId());
103 private HttpRestServiceProvider createHttpRestServiceProvider(final EsrVnfm vnfm) {
104 final RestTemplate restTemplate = createRestTemplate(vnfm);
105 setGsonMessageConverter(restTemplate);
106 if (trustStore != null) {
107 setTrustStore(restTemplate);
109 return new HttpRestServiceProviderImpl(restTemplate, new BasicHttpHeadersProvider());
112 private RestTemplate createRestTemplate(final EsrVnfm vnfm) {
114 for (final EsrSystemInfo esrSystemInfo : vnfm.getEsrSystemInfoList().getEsrSystemInfo()) {
115 if (!StringUtils.isEmpty(esrSystemInfo.getUserName())
116 && !StringUtils.isEmpty(esrSystemInfo.getPassword())) {
117 return createOAuth2RestTemplate(esrSystemInfo);
121 return defaultRestTemplate;
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")
133 resourceDetails.setGrantType("client_credentials");
134 return new OAuth2RestTemplate(resourceDetails);
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) {
144 final Gson gson = new JSON().getGson();
145 restTemplate.getMessageConverters().add(new GsonHttpMessageConverter(gson));
148 private void setTrustStore(final RestTemplate restTemplate) {
149 SSLContext sslContext;
151 if (keyStoreResource != null) {
152 KeyStore keystore = KeyStore.getInstance("pkcs12");
153 keystore.load(keyStoreResource.getInputStream(), keyStorePassword.toCharArray());
155 new SSLContextBuilder().loadTrustMaterial(trustStore.getURL(), trustStorePassword.toCharArray())
156 .loadKeyMaterial(keystore, keyStorePassword.toCharArray()).build();
158 sslContext = new SSLContextBuilder()
159 .loadTrustMaterial(trustStore.getURL(), trustStorePassword.toCharArray()).build();
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);
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();