cc88edef1e987da9f2c6fa18aa387840aeec72eb
[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 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 = "no-auth-service-rest-client")
39 public class SchemaServiceNoAuthClient extends NoAuthRestClient {
40
41     private static EELFLogger logger = EELFManager.getInstance().getLogger(SchemaServiceNoAuthClient.class);
42
43     @Value("${schema.service.base.url}")
44     private String baseUrl;
45
46     @PostConstruct
47     public void init() throws Exception {
48         super.init();
49     }
50
51     @Override
52     public String getBaseUrl() {
53         return baseUrl;
54     }
55
56     @Override
57     public MultiValueMap<String, String> getHeaders(Map<String, String> headers) {
58         HttpHeaders httpHeaders = new HttpHeaders();
59
60         String defaultAccept = headers.getOrDefault(HttpHeaders.ACCEPT, MediaType.APPLICATION_JSON.toString());
61         String defaultContentType =
62                 headers.getOrDefault(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON.toString());
63
64         if (headers.isEmpty()) {
65             httpHeaders.setAccept(Collections.singletonList(MediaType.parseMediaType(defaultAccept)));
66             httpHeaders.setContentType(MediaType.parseMediaType(defaultContentType));
67         }
68
69         httpHeaders.add("X-FromAppId", appName);
70         httpHeaders.add("X-TransactionId", UUID.randomUUID().toString());
71         headers.forEach(httpHeaders::add);
72         return httpHeaders;
73     }
74
75 }