6b1072852159a07ba9579f6b5b12e24054b3da97
[aai/aai-common.git] / aai-schema-ingest / src / main / java / org / onap / aai / restclient / SchemaServiceOneWayClient.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.restclient;
22
23 import com.att.eelf.configuration.EELFLogger;
24 import com.att.eelf.configuration.EELFManager;
25
26 import java.util.Collections;
27 import java.util.Map;
28 import java.util.UUID;
29
30 import javax.annotation.PostConstruct;
31
32 import org.springframework.beans.factory.annotation.Value;
33 import org.springframework.http.HttpHeaders;
34 import org.springframework.http.MediaType;
35 import org.springframework.stereotype.Component;
36 import org.springframework.util.MultiValueMap;
37
38 @Component(value = "schema-service-one-way-rest-client")
39 public class SchemaServiceOneWayClient extends OneWaySSLRestClient {
40
41     private static EELFLogger logger = EELFManager.getInstance().getLogger(SchemaServiceOneWayClient.class);
42
43     @Value("${schema.service.base.url}")
44     private String baseUrl;
45
46     @Value("${schema.service.ssl.trust-store}")
47     private String truststorePath;
48
49     @Value("${schema.service.ssl.trust-store-password}")
50     private String truststorePassword;
51
52     @Override
53     public String getBaseUrl() {
54         return baseUrl;
55     }
56
57     @Override
58     protected String getTruststorePath() {
59         return truststorePath;
60     }
61
62     @Override
63     protected char[] getTruststorePassword() {
64         return truststorePassword.toCharArray();
65     }
66
67     @Override
68     public MultiValueMap<String, String> getHeaders(Map<String, String> headers) {
69         HttpHeaders httpHeaders = new HttpHeaders();
70
71         String defaultAccept = headers.getOrDefault(HttpHeaders.ACCEPT, MediaType.APPLICATION_JSON.toString());
72         String defaultContentType =
73                 headers.getOrDefault(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON.toString());
74
75         if (headers.isEmpty()) {
76             httpHeaders.setAccept(Collections.singletonList(MediaType.parseMediaType(defaultAccept)));
77             httpHeaders.setContentType(MediaType.parseMediaType(defaultContentType));
78         }
79
80         httpHeaders.add("X-FromAppId", appName);
81         httpHeaders.add("X-TransactionId", UUID.randomUUID().toString());
82         httpHeaders.add("X-TransactionId", appName);
83         headers.forEach(httpHeaders::add);
84         return httpHeaders;
85     }
86
87 }