Merge "Async: NCMP Rest impl. including Request ID generation"
[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.AccessLevel;
24 import lombok.NoArgsConstructor;
25 import lombok.extern.slf4j.Slf4j;
26 import org.onap.cps.ncmp.api.impl.exception.DmiRequestException;
27 import org.onap.cps.ncmp.api.impl.exception.NcmpException;
28 import org.onap.cps.ncmp.api.impl.exception.ServerNcmpException;
29 import org.onap.cps.ncmp.rest.controller.NetworkCmProxyController;
30 import org.onap.cps.ncmp.rest.controller.NetworkCmProxyInventoryController;
31 import org.onap.cps.ncmp.rest.model.ErrorMessage;
32 import org.onap.cps.spi.exceptions.CpsException;
33 import org.onap.cps.spi.exceptions.DataNodeNotFoundException;
34 import org.onap.cps.spi.exceptions.DataValidationException;
35 import org.springframework.http.HttpStatus;
36 import org.springframework.http.ResponseEntity;
37 import org.springframework.http.converter.HttpMessageNotReadableException;
38 import org.springframework.web.bind.annotation.ExceptionHandler;
39 import org.springframework.web.bind.annotation.RestControllerAdvice;
40
41 /**
42  * Exception handler with error message return.
43  */
44 @Slf4j
45 @RestControllerAdvice(assignableTypes = {NetworkCmProxyController.class, NetworkCmProxyInventoryController.class})
46 @NoArgsConstructor(access = AccessLevel.PACKAGE)
47 public class NetworkCmProxyRestExceptionHandler {
48
49     private static final String CHECK_LOGS_FOR_DETAILS = "Check logs for details.";
50
51     /**
52      * Default exception handler.
53      *
54      * @param exception the exception to handle
55      * @return response with response code 500.
56      */
57     @ExceptionHandler
58     public static ResponseEntity<Object> handleInternalServerErrorExceptions(
59         final Exception exception) {
60         return buildErrorResponse(HttpStatus.INTERNAL_SERVER_ERROR, exception);
61     }
62
63     @ExceptionHandler({CpsException.class, ServerNcmpException.class})
64     public static ResponseEntity<Object> handleAnyOtherCpsExceptions(final Exception exception) {
65         return buildErrorResponse(HttpStatus.INTERNAL_SERVER_ERROR, exception);
66     }
67
68     @ExceptionHandler({DmiRequestException.class, DataValidationException.class, HttpMessageNotReadableException.class})
69     public static ResponseEntity<Object> handleDmiRequestExceptions(final Exception exception) {
70         return buildErrorResponse(HttpStatus.BAD_REQUEST, exception);
71     }
72
73     @ExceptionHandler({DataNodeNotFoundException.class})
74     public static ResponseEntity<Object> handleNotFoundExceptions(final CpsException exception) {
75         return buildErrorResponse(HttpStatus.NOT_FOUND, exception);
76     }
77
78     private static ResponseEntity<Object> buildErrorResponse(final HttpStatus status, final Exception exception) {
79         if (exception.getCause() != null || !(exception instanceof CpsException)) {
80             log.error("Exception occurred", exception);
81         }
82         final var errorMessage = new ErrorMessage();
83         errorMessage.setStatus(status.toString());
84         errorMessage.setMessage(exception.getMessage());
85         if (exception instanceof CpsException) {
86             errorMessage.setDetails(((CpsException) exception).getDetails());
87         } else if (exception instanceof NcmpException) {
88             errorMessage.setDetails(((NcmpException) exception).getDetails());
89         } else {
90             errorMessage.setDetails(CHECK_LOGS_FOR_DETAILS);
91         }
92         errorMessage.setDetails(exception instanceof CpsException ? ((CpsException) exception).getDetails() :
93             CHECK_LOGS_FOR_DETAILS);
94         return new ResponseEntity<>(errorMessage, status);
95     }
96 }