Help NBI user to get information
[externalapi/nbi.git] / src / main / java / org / onap / nbi / exceptions / BackendErrorHandler.java
1 /**
2  *     Copyright (c) 2018 Orange
3  *
4  *     Licensed under the Apache License, Version 2.0 (the "License");
5  *     you may not use this file except in compliance with the License.
6  *     You may obtain a copy of the License at
7  *
8  *         http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *     Unless required by applicable law or agreed to in writing, software
11  *     distributed under the License is distributed on an "AS IS" BASIS,
12  *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *     See the License for the specific language governing permissions and
14  *     limitations under the License.
15  */
16 package org.onap.nbi.exceptions;
17
18 import java.io.IOException;
19 import java.nio.charset.StandardCharsets;
20 import org.apache.commons.io.IOUtils;
21 import org.springframework.http.client.ClientHttpResponse;
22 import org.springframework.web.client.DefaultResponseErrorHandler;
23 import org.springframework.web.client.ResponseErrorHandler;
24
25 public class BackendErrorHandler implements ResponseErrorHandler {
26
27     private ResponseErrorHandler errorHandler = new DefaultResponseErrorHandler();
28
29     @Override
30     public boolean hasError(ClientHttpResponse response) throws IOException {
31         return errorHandler.hasError(response);
32     }
33
34     @Override
35     public void handleError(ClientHttpResponse response) throws IOException {
36         if (response.getStatusCode() != null) {
37             String body=null;
38             if(response.getBody()!=null) {
39                 body = IOUtils.toString(response.getBody(), StandardCharsets.UTF_8.name());
40             }
41
42             throw new BackendFunctionalException(response.getStatusCode(), response.getStatusText(),body);
43         }
44     }
45 }