Fix sonar issues + merge
[aai/schema-service.git] / aai-schema-service / src / main / java / org / onap / aai / schemaservice / interceptors / post / ResponseHeaderManipulation.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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  * <p>
11  * http://www.apache.org/licenses/LICENSE-2.0
12  * <p>
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.schemaservice.interceptors.post;
22
23 import java.io.IOException;
24 import javax.annotation.Priority;
25 import javax.ws.rs.container.ContainerRequestContext;
26 import javax.ws.rs.container.ContainerResponseContext;
27 import javax.ws.rs.container.ContainerResponseFilter;
28 import javax.ws.rs.core.MediaType;
29 import org.onap.aai.schemaservice.interceptors.AAIContainerFilter;
30 import org.onap.aai.schemaservice.interceptors.AAIHeaderProperties;
31
32 @Priority(AAIResponseFilterPriority.HEADER_MANIPULATION)
33 public class ResponseHeaderManipulation extends AAIContainerFilter
34     implements ContainerResponseFilter {
35
36     private static final String DEFAULT_XML_TYPE = MediaType.APPLICATION_XML;
37     private static final String CONTENT_TYPE_HEADER = "Content-Type";
38
39     @Override
40     public void filter(ContainerRequestContext requestContext,
41                        ContainerResponseContext responseContext)
42         throws IOException {
43
44         updateResponseHeaders(requestContext, responseContext);
45
46     }
47
48     private void updateResponseHeaders(ContainerRequestContext requestContext,
49                                        ContainerResponseContext responseContext) {
50
51         responseContext.getHeaders().add(AAIHeaderProperties.AAI_TX_ID,
52             requestContext.getProperty(AAIHeaderProperties.AAI_TX_ID));
53
54         String responseContentType = responseContext.getHeaderString(CONTENT_TYPE_HEADER);
55
56         if (responseContentType == null) {
57             String acceptType = requestContext.getHeaderString("Accept");
58             if (acceptType == null || "*/*".equals(acceptType)) {
59                 responseContext.getHeaders().putSingle(CONTENT_TYPE_HEADER, DEFAULT_XML_TYPE);
60             } else {
61                 responseContext.getHeaders().putSingle(CONTENT_TYPE_HEADER, acceptType);
62             }
63         }
64
65     }
66
67 }