8c6f9f1d70df837189362da19e8c8f32b0fc4b1e
[cps.git] / cps-ncmp-rest / src / main / java / org / onap / cps / ncmp / rest / exceptions / NetworkCmProxyRestExceptionHandler.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Pantheon.tech
4  *  Modifications Copyright (C) 2021-2022 Nordix Foundation
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *  SPDX-License-Identifier: Apache-2.0
18  *  ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.ncmp.rest.exceptions;
22
23 import lombok.extern.slf4j.Slf4j;
24 import org.onap.cps.ncmp.api.impl.exception.DmiRequestException;
25 import org.onap.cps.ncmp.api.impl.exception.NcmpException;
26 import org.onap.cps.ncmp.api.impl.exception.ServerNcmpException;
27 import org.onap.cps.ncmp.rest.controller.NetworkCmProxyController;
28 import org.onap.cps.ncmp.rest.model.ErrorMessage;
29 import org.onap.cps.spi.exceptions.CpsException;
30 import org.springframework.http.HttpStatus;
31 import org.springframework.http.ResponseEntity;
32 import org.springframework.web.bind.annotation.ExceptionHandler;
33 import org.springframework.web.bind.annotation.RestControllerAdvice;
34
35 /**
36  * Exception handler with error message return.
37  */
38 @Slf4j
39 @RestControllerAdvice(assignableTypes = {NetworkCmProxyController.class})
40 public class NetworkCmProxyRestExceptionHandler {
41
42     private static final String CHECK_LOGS_FOR_DETAILS = "Check logs for details.";
43
44     /**
45      * Default exception handler.
46      *
47      * @param exception the exception to handle
48      * @return response with response code 500.
49      */
50     @ExceptionHandler
51     public static ResponseEntity<Object> handleInternalServerErrorExceptions(
52         final Exception exception) {
53         return buildErrorResponse(HttpStatus.INTERNAL_SERVER_ERROR, exception);
54     }
55
56     @ExceptionHandler({CpsException.class})
57     public static ResponseEntity<Object> handleAnyOtherCpsExceptions(final CpsException exception) {
58         return buildErrorResponse(HttpStatus.INTERNAL_SERVER_ERROR, exception);
59     }
60
61     @ExceptionHandler({ServerNcmpException.class})
62     public static ResponseEntity<Object> handleServerNcmpExceptions(final ServerNcmpException exception) {
63         return buildErrorResponse(HttpStatus.INTERNAL_SERVER_ERROR, exception);
64     }
65
66     @ExceptionHandler({DmiRequestException.class})
67     public static ResponseEntity<Object> handleDmiRequestExceptions(final DmiRequestException exception) {
68         return buildErrorResponse(HttpStatus.BAD_REQUEST, exception);
69     }
70
71     private static ResponseEntity<Object> buildErrorResponse(final HttpStatus status, final Exception exception) {
72         if (exception.getCause() != null || !(exception instanceof CpsException)) {
73             log.error("Exception occurred", exception);
74         }
75         final var errorMessage = new ErrorMessage();
76         errorMessage.setStatus(status.toString());
77         errorMessage.setMessage(exception.getMessage());
78         if (exception instanceof CpsException) {
79             errorMessage.setDetails(((CpsException) exception).getDetails());
80         } else if (exception instanceof NcmpException) {
81             errorMessage.setDetails(((NcmpException) exception).getDetails());
82         } else {
83             errorMessage.setDetails(CHECK_LOGS_FOR_DETAILS);
84         }
85         errorMessage.setDetails(exception instanceof CpsException ? ((CpsException) exception).getDetails() :
86             CHECK_LOGS_FOR_DETAILS);
87         return new ResponseEntity<>(errorMessage, status);
88     }
89 }