Add instructions to invoke the linter and code formatter plugins to the README and...
[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
25 import javax.annotation.Priority;
26 import javax.ws.rs.container.ContainerRequestContext;
27 import javax.ws.rs.container.ContainerResponseContext;
28 import javax.ws.rs.container.ContainerResponseFilter;
29 import javax.ws.rs.core.MediaType;
30
31 import org.onap.aai.schemaservice.interceptors.AAIContainerFilter;
32 import org.onap.aai.schemaservice.interceptors.AAIHeaderProperties;
33
34 @Priority(AAIResponseFilterPriority.HEADER_MANIPULATION)
35 public class ResponseHeaderManipulation extends AAIContainerFilter
36     implements ContainerResponseFilter {
37
38     private static final String DEFAULT_XML_TYPE = MediaType.APPLICATION_XML;
39     private static final String CONTENT_TYPE_HEADER = "Content-Type";
40
41     @Override
42     public void filter(ContainerRequestContext requestContext,
43         ContainerResponseContext responseContext) throws IOException {
44
45         updateResponseHeaders(requestContext, responseContext);
46
47     }
48
49     private void updateResponseHeaders(ContainerRequestContext requestContext,
50         ContainerResponseContext responseContext) {
51
52         responseContext.getHeaders().add(AAIHeaderProperties.AAI_TX_ID,
53             requestContext.getProperty(AAIHeaderProperties.AAI_TX_ID));
54
55         String responseContentType = responseContext.getHeaderString(CONTENT_TYPE_HEADER);
56
57         if (responseContentType == null) {
58             String acceptType = requestContext.getHeaderString("Accept");
59             if (acceptType == null || "*/*".equals(acceptType)) {
60                 responseContext.getHeaders().putSingle(CONTENT_TYPE_HEADER, DEFAULT_XML_TYPE);
61             } else {
62                 responseContext.getHeaders().putSingle(CONTENT_TYPE_HEADER, acceptType);
63             }
64         }
65
66     }
67
68 }