aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/masspnfsim/pnf-sim-lightweight/src/main/java/org/onap/pnfsimulator/simulator/client/RestTemplateAdapterImpl.java
blob: e08263745b5fd631414a4dcfee89b3b5dcef7def (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
 * ============LICENSE_START=======================================================
 * PNF-REGISTRATION-HANDLER
 * ================================================================================
 * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.pnfsimulator.simulator.client;

import static org.onap.pnfsimulator.logging.MDCVariables.REQUEST_ID;
import static org.onap.pnfsimulator.logging.MDCVariables.X_INVOCATION_ID;
import static org.onap.pnfsimulator.logging.MDCVariables.X_ONAP_REQUEST_ID;
import static org.onap.pnfsimulator.logging.MDCVariables.AUTHORIZATION;

import org.springframework.web.client.ResourceAccessException;
import java.security.KeyManagementException;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.cert.X509Certificate;
import javax.net.ssl.SSLContext;
import javax.net.ssl.TrustManager;
import javax.net.ssl.X509TrustManager;
import org.apache.http.conn.ssl.NoopHostnameVerifier;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
import org.springframework.web.client.RestTemplate;

import org.springframework.http.HttpEntity;
import org.springframework.http.ResponseEntity;
import org.springframework.http.HttpHeaders;

import java.util.UUID;
import org.springframework.web.client.HttpClientErrorException;
import org.apache.http.client.config.RequestConfig;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.slf4j.MDC;
import org.slf4j.Marker;
import org.slf4j.MarkerFactory;

public class RestTemplateAdapterImpl implements RestTemplateAdapter {

    private static final Logger LOGGER = LoggerFactory.getLogger(RestTemplateAdapterImpl.class);
    private static final String CONTENT_TYPE = "Content-Type";
    private static final String APPLICATION_JSON = "application/json";
    private final Marker INVOKE = MarkerFactory.getMarker("INVOKE");
    private static final RequestConfig CONFIG = RequestConfig.custom()
        .setConnectTimeout(1000)
        .setConnectionRequestTimeout(1000)
        .setSocketTimeout(1000)
        .build();

    private RestTemplate restTemplate;

    public RestTemplateAdapterImpl() {
        try {
        this.restTemplate = createRestTemplate();
        } catch (KeyStoreException | NoSuchAlgorithmException | KeyManagementException ex) {
            LOGGER.warn("Error while creating a RestTemplate object: {}", ex.getMessage());
        }
    }

    RestTemplateAdapterImpl(RestTemplate restTemplate) {
        this.restTemplate = restTemplate;
    }

    @Override
    public void send(String content, String url) {
        try {
            HttpEntity<String> entity = createPostEntity(content);
            ResponseEntity<String> response = restTemplate.postForEntity(url, entity, String.class);
            LOGGER.info(INVOKE, "Message sent, ves response code: {}", response.getStatusCode());
        } catch (HttpClientErrorException codeEx) {
            LOGGER.warn("Response body: ", codeEx.getResponseBodyAsString());
            LOGGER.warn("Error sending message to ves: {}", codeEx.getMessage());
            LOGGER.warn("URL: {}", url);
        } catch (ResourceAccessException ioEx) {
            LOGGER.warn("The URL cannot be reached: {}", ioEx.getMessage());
            LOGGER.warn("URL: {}", url);
        }
    }

    private CloseableHttpClient createClient()
    throws KeyStoreException, NoSuchAlgorithmException, KeyManagementException {

        TrustManager[] trustAllCerts = new TrustManager[] {
            new X509TrustManager() {

                public java.security.cert.X509Certificate[] getAcceptedIssuers() {
                    return new X509Certificate[0];
                }

                public void checkClientTrusted(
                    java.security.cert.X509Certificate[] certs,
                    String authType) {}

                public void checkServerTrusted(
                    java.security.cert.X509Certificate[] certs,
                    String authType) {}
            }
        };

        SSLContext sslContext = SSLContext.getInstance("TLS");
        sslContext.init(
            null,
            trustAllCerts,
            new java.security.SecureRandom()
        );

        CloseableHttpClient httpClient = HttpClients
            .custom()
            .setSSLContext(sslContext)
            .setSSLHostnameVerifier(NoopHostnameVerifier.INSTANCE)
            .build();

        return httpClient;
    }

    private RestTemplate createRestTemplate()
    throws KeyStoreException, NoSuchAlgorithmException, KeyManagementException {

        CloseableHttpClient client = createClient();
        HttpComponentsClientHttpRequestFactory requestFactory = new HttpComponentsClientHttpRequestFactory();
        requestFactory.setHttpClient(client);

        return new RestTemplate(requestFactory);

    }

    private HttpEntity createPostEntity(String content) {

        HttpHeaders headers = new HttpHeaders();
        headers.set(CONTENT_TYPE, APPLICATION_JSON);
        headers.set(AUTHORIZATION, MDC.get(AUTHORIZATION));
        headers.set(X_ONAP_REQUEST_ID, MDC.get(REQUEST_ID));
        headers.set(X_INVOCATION_ID, UUID.randomUUID().toString());

        return new HttpEntity<>(content, headers);

    }
}