Enhancements for the aai-common library
[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 org.slf4j.Logger;
24 import org.slf4j.LoggerFactory;
25 import org.springframework.beans.factory.annotation.Value;
26 import org.springframework.http.HttpHeaders;
27 import org.springframework.http.MediaType;
28 import org.springframework.util.MultiValueMap;
29
30 import java.util.Collections;
31 import java.util.Map;
32 import java.util.UUID;
33
34 public class SchemaServiceOneWayClient extends OneWaySSLRestClient {
35
36     private static Logger logger = LoggerFactory.getLogger(SchemaServiceOneWayClient.class);
37
38     @Value("${schema.service.base.url}")
39     private String baseUrl;
40
41     @Value("${schema.service.ssl.trust-store}")
42     private String truststorePath;
43
44     @Value("${schema.service.ssl.trust-store-password}")
45     private String truststorePassword;
46
47     @Override
48     public String getBaseUrl() {
49         return baseUrl;
50     }
51
52     @Override
53     protected String getTruststorePath() {
54         return truststorePath;
55     }
56
57     @Override
58     protected char[] getTruststorePassword() {
59         return truststorePassword.toCharArray();
60     }
61
62     @Override
63     public MultiValueMap<String, String> getHeaders(Map<String, String> headers) {
64         HttpHeaders httpHeaders = new HttpHeaders();
65
66         String defaultAccept = headers.getOrDefault(HttpHeaders.ACCEPT, MediaType.APPLICATION_JSON.toString());
67         String defaultContentType =
68                 headers.getOrDefault(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON.toString());
69
70         if (headers.isEmpty()) {
71             httpHeaders.setAccept(Collections.singletonList(MediaType.parseMediaType(defaultAccept)));
72             httpHeaders.setContentType(MediaType.parseMediaType(defaultContentType));
73         }
74
75         httpHeaders.add("X-FromAppId", appName);
76         httpHeaders.add("X-TransactionId", UUID.randomUUID().toString());
77         httpHeaders.add("X-TransactionId", appName);
78         headers.forEach(httpHeaders::add);
79         return httpHeaders;
80     }
81
82 }