Move back to spring-boot 1.5 for bugfix
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / prevalidation / ValidationServiceNoAuthClient.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2018-19 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.aai.prevalidation;
22
23 import org.slf4j.Logger;
24 import org.slf4j.LoggerFactory;
25 import org.onap.aai.restclient.NoAuthRestClient;
26 import org.springframework.beans.factory.annotation.Value;
27 import org.springframework.http.HttpHeaders;
28 import org.springframework.http.MediaType;
29 import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
30 import org.springframework.util.MultiValueMap;
31
32 import java.util.Collections;
33 import java.util.Map;
34 import java.util.UUID;
35
36 public class ValidationServiceNoAuthClient extends NoAuthRestClient {
37
38     private static Logger logger = LoggerFactory.getLogger(ValidationServiceNoAuthClient.class);
39
40     @Value("${validation.service.base.url}")
41     private String baseUrl;
42
43     @Value("${validation.service.timeout-in-milliseconds}")
44     private Integer timeout;
45
46     @Override
47     protected HttpComponentsClientHttpRequestFactory getHttpRequestFactory() throws Exception {
48         HttpComponentsClientHttpRequestFactory requestFactory = super.getHttpRequestFactory();
49         requestFactory.setConnectionRequestTimeout(timeout);
50         requestFactory.setReadTimeout(timeout);
51         requestFactory.setConnectTimeout(timeout);
52         return requestFactory;
53     }
54
55     @Override
56     public String getBaseUrl() {
57         return baseUrl;
58     }
59
60     @Override
61     public MultiValueMap<String, String> getHeaders(Map<String, String> headers) {
62         HttpHeaders httpHeaders = new HttpHeaders();
63
64         String defaultAccept = headers.getOrDefault(HttpHeaders.ACCEPT, MediaType.APPLICATION_JSON.toString());
65         String defaultContentType =
66                 headers.getOrDefault(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON.toString());
67
68         if (headers.isEmpty()) {
69             httpHeaders.setAccept(Collections.singletonList(MediaType.parseMediaType(defaultAccept)));
70             httpHeaders.setContentType(MediaType.parseMediaType(defaultContentType));
71         }
72
73         httpHeaders.add("X-FromAppId", appName);
74         httpHeaders.add("X-TransactionId", UUID.randomUUID().toString());
75         headers.forEach(httpHeaders::add);
76         return httpHeaders;
77     }
78
79 }