Enhancements for the aai-common library
[aai/aai-common.git] / aai-aaf-auth / src / main / java / org / onap / aai / aaf / auth / ResponseFormatter.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  *
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.aaf.auth;
22
23 import org.onap.aai.exceptions.AAIException;
24 import org.onap.aai.logging.ErrorLogHelper;
25
26 import javax.servlet.http.HttpServletRequest;
27 import javax.servlet.http.HttpServletResponse;
28 import javax.ws.rs.core.MediaType;
29 import java.io.IOException;
30 import java.util.ArrayList;
31 import java.util.Collections;
32
33 public class ResponseFormatter {
34
35     private static final String ACCEPT_HEADER = "accept";
36
37     public static void errorResponse(HttpServletRequest request, HttpServletResponse response) throws IOException {
38         errorResponse(new AAIException("AAI_3300"), request, response);
39     }
40
41     public static void errorResponse(AAIException exception, HttpServletRequest request, HttpServletResponse response) throws IOException {
42
43         if(response.isCommitted()){
44             return;
45         }
46
47         String accept = request.getHeader(ACCEPT_HEADER) == null ? MediaType.APPLICATION_XML : request.getHeader(ACCEPT_HEADER);
48
49         response.setStatus(exception.getErrorObject().getHTTPResponseCode().getStatusCode());
50         response.setHeader("Content-Type", accept);
51         response.resetBuffer();
52
53         String resp = ErrorLogHelper.getRESTAPIErrorResponse(Collections.singletonList(MediaType.valueOf(accept)), exception, new ArrayList<>());
54         response.getOutputStream().print(resp);
55         response.flushBuffer();
56     }
57 }