83687a7693952ee55a5755e6a78f432a2dae5c61
[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 package org.onap.aai.restclient;
21
22 import com.att.eelf.configuration.EELFLogger;
23 import com.att.eelf.configuration.EELFManager;
24 import org.springframework.beans.factory.annotation.Value;
25 import org.springframework.http.HttpHeaders;
26 import org.springframework.http.MediaType;
27 import org.springframework.stereotype.Component;
28 import org.springframework.util.MultiValueMap;
29
30 import javax.annotation.PostConstruct;
31 import java.util.Collections;
32 import java.util.Map;
33 import java.util.UUID;
34
35 @Component(value="no-auth-service-rest-client")
36 public class SchemaServiceNoAuthClient extends NoAuthRestClient{
37
38         private static EELFLogger logger = EELFManager.getInstance().getLogger(SchemaServiceNoAuthClient.class);
39
40         @Value("${schema.service.base.url}")
41         private String baseUrl;
42
43     @PostConstruct
44     public void init () throws Exception {
45         super.init();
46     }
47
48         @Override
49         public String getBaseUrl() {
50        return baseUrl;
51         }
52
53     @Override
54         public MultiValueMap<String, String> getHeaders(Map<String, String> headers) {
55                 HttpHeaders httpHeaders = new HttpHeaders();
56
57         String defaultAccept = headers.getOrDefault(HttpHeaders.ACCEPT, MediaType.APPLICATION_JSON.toString());
58         String defaultContentType = headers.getOrDefault(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON.toString());
59
60         if(headers.isEmpty()){
61             httpHeaders.setAccept(Collections.singletonList(MediaType.parseMediaType(defaultAccept)));
62             httpHeaders.setContentType(MediaType.parseMediaType(defaultContentType));
63         }
64
65                 httpHeaders.add("X-FromAppId", appName);
66                 httpHeaders.add("X-TransactionId", UUID.randomUUID().toString());
67         headers.forEach(httpHeaders::add);
68                 return httpHeaders;
69         }
70
71 }