Update schema service to fail to start
[aai/aai-common.git] / aai-rest / src / main / java / org / onap / aai / restclient / RestClientResponseErrorHandler.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 package org.onap.aai.restclient;
21
22 import com.att.eelf.configuration.EELFLogger;
23 import com.att.eelf.configuration.EELFManager;
24 import org.springframework.http.HttpStatus;
25 import org.springframework.http.client.ClientHttpResponse;
26 import org.springframework.web.client.ResponseErrorHandler;
27
28 import java.io.IOException;
29
30 public class RestClientResponseErrorHandler implements ResponseErrorHandler {
31
32     private static EELFLogger logger = EELFManager.getInstance().getLogger(RestClientResponseErrorHandler.class);
33
34     @Override
35     public boolean hasError(ClientHttpResponse clientHttpResponse) throws IOException {
36         if (!clientHttpResponse.getStatusCode().is2xxSuccessful()) {
37
38             logger.debug("Status code: " + clientHttpResponse.getStatusCode());
39
40             if (clientHttpResponse.getStatusCode() == HttpStatus.FORBIDDEN) {
41                 logger.debug("Call returned a error 403 forbidden resposne ");
42                 return true;
43             }
44
45             if (clientHttpResponse.getRawStatusCode() % 100 == 5) {
46                 logger.debug("Call returned a error " + clientHttpResponse.getStatusText());
47                 return true;
48             }
49         }
50         return false;
51     }
52
53     @Override
54     public void handleError(ClientHttpResponse clientHttpResponse) throws IOException {
55     }
56 }