Enhancements for the aai-common library
[aai/aai-common.git] / aai-schema-ingest / src / main / java / org / onap / aai / restclient / SchemaServiceNoAuthClient.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 SchemaServiceNoAuthClient extends NoAuthRestClient {
35
36     private static Logger logger = LoggerFactory.getLogger(SchemaServiceNoAuthClient.class);
37
38     @Value("${schema.service.base.url}")
39     private String baseUrl;
40
41     @Override
42     public String getBaseUrl() {
43         return baseUrl;
44     }
45
46     @Override
47     public MultiValueMap<String, String> getHeaders(Map<String, String> headers) {
48         HttpHeaders httpHeaders = new HttpHeaders();
49
50         String defaultAccept = headers.getOrDefault(HttpHeaders.ACCEPT, MediaType.APPLICATION_JSON.toString());
51         String defaultContentType =
52                 headers.getOrDefault(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON.toString());
53
54         if (headers.isEmpty()) {
55             httpHeaders.setAccept(Collections.singletonList(MediaType.parseMediaType(defaultAccept)));
56             httpHeaders.setContentType(MediaType.parseMediaType(defaultContentType));
57         }
58
59         httpHeaders.add("X-FromAppId", appName);
60         httpHeaders.add("X-TransactionId", UUID.randomUUID().toString());
61         headers.forEach(httpHeaders::add);
62         return httpHeaders;
63     }
64
65 }