Improve logging in NCMP
[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.NcmpException;
25 import org.onap.cps.ncmp.rest.controller.NetworkCmProxyController;
26 import org.onap.cps.ncmp.rest.model.ErrorMessage;
27 import org.onap.cps.spi.exceptions.CpsException;
28 import org.springframework.http.HttpStatus;
29 import org.springframework.http.ResponseEntity;
30 import org.springframework.web.bind.annotation.ExceptionHandler;
31 import org.springframework.web.bind.annotation.RestControllerAdvice;
32
33 /**
34  * Exception handler with error message return.
35  */
36 @Slf4j
37 @RestControllerAdvice(assignableTypes = {NetworkCmProxyController.class})
38 public class NetworkCmProxyRestExceptionHandler {
39
40     private static final String CHECK_LOGS_FOR_DETAILS = "Check logs for details.";
41
42     /**
43      * Default exception handler.
44      *
45      * @param exception the exception to handle
46      * @return response with response code 500.
47      */
48     @ExceptionHandler
49     public static ResponseEntity<Object> handleInternalServerErrorExceptions(
50         final Exception exception) {
51         return buildErrorResponse(HttpStatus.INTERNAL_SERVER_ERROR, exception);
52     }
53
54     @ExceptionHandler({CpsException.class})
55     public static ResponseEntity<Object> handleAnyOtherCpsExceptions(final CpsException exception) {
56         return buildErrorResponse(HttpStatus.INTERNAL_SERVER_ERROR, exception);
57     }
58
59     @ExceptionHandler({NcmpException.class})
60     public static ResponseEntity<Object> handleNcmpExceptions(final NcmpException exception) {
61         return buildErrorResponse(HttpStatus.INTERNAL_SERVER_ERROR, exception);
62     }
63
64     private static ResponseEntity<Object> buildErrorResponse(final HttpStatus status, final Exception exception) {
65         if (exception.getCause() != null || !(exception instanceof CpsException)) {
66             log.error("Exception occurred", exception);
67         }
68         final var errorMessage = new ErrorMessage();
69         errorMessage.setStatus(status.toString());
70         errorMessage.setMessage(exception.getMessage());
71         if (exception instanceof CpsException) {
72             errorMessage.setDetails(((CpsException) exception).getDetails());
73         } else if (exception instanceof NcmpException) {
74             errorMessage.setDetails(((NcmpException) exception).getDetails());
75         } else {
76             errorMessage.setDetails(CHECK_LOGS_FOR_DETAILS);
77         }
78         errorMessage.setDetails(exception instanceof CpsException ? ((CpsException) exception).getDetails() :
79             CHECK_LOGS_FOR_DETAILS);
80         return new ResponseEntity<>(errorMessage, status);
81     }
82 }