6910003c54134066f60b3cce8efd405f086bb6d7
[cps.git] /
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Pantheon.tech
4  *  Modifications Copyright (C) 2021-2024 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.controller;
22
23 import lombok.AccessLevel;
24 import lombok.NoArgsConstructor;
25 import lombok.extern.slf4j.Slf4j;
26 import org.onap.cps.ncmp.api.data.exceptions.InvalidDatastoreException;
27 import org.onap.cps.ncmp.api.data.exceptions.InvalidOperationException;
28 import org.onap.cps.ncmp.api.data.exceptions.OperationNotSupportedException;
29 import org.onap.cps.ncmp.api.exceptions.DmiClientRequestException;
30 import org.onap.cps.ncmp.api.exceptions.DmiRequestException;
31 import org.onap.cps.ncmp.api.exceptions.InvalidTopicException;
32 import org.onap.cps.ncmp.api.exceptions.NcmpException;
33 import org.onap.cps.ncmp.api.exceptions.PayloadTooLargeException;
34 import org.onap.cps.ncmp.api.exceptions.PolicyExecutorException;
35 import org.onap.cps.ncmp.api.exceptions.ServerNcmpException;
36 import org.onap.cps.ncmp.rest.model.DmiErrorMessage;
37 import org.onap.cps.ncmp.rest.model.DmiErrorMessageDmiResponse;
38 import org.onap.cps.ncmp.rest.model.ErrorMessage;
39 import org.onap.cps.spi.exceptions.AlreadyDefinedException;
40 import org.onap.cps.spi.exceptions.CpsException;
41 import org.onap.cps.spi.exceptions.DataNodeNotFoundException;
42 import org.onap.cps.spi.exceptions.DataValidationException;
43 import org.springframework.http.HttpStatus;
44 import org.springframework.http.ResponseEntity;
45 import org.springframework.http.converter.HttpMessageNotReadableException;
46 import org.springframework.web.bind.annotation.ExceptionHandler;
47 import org.springframework.web.bind.annotation.RestControllerAdvice;
48
49 /**
50  * Exception handler with error message return.
51  */
52 @Slf4j
53 @RestControllerAdvice(assignableTypes = {NetworkCmProxyController.class, NetworkCmProxyInventoryController.class})
54 @NoArgsConstructor(access = AccessLevel.PACKAGE)
55 public class NetworkCmProxyRestExceptionHandler {
56
57     private static final String CHECK_LOGS_FOR_DETAILS = "Check logs for details.";
58
59     /**
60      * Default exception handler.
61      *
62      * @param exception the exception to handle
63      * @return response with response code 500.
64      */
65     @ExceptionHandler
66     public static ResponseEntity<Object> handleInternalServerErrorExceptions(final Exception exception) {
67         return buildErrorResponse(HttpStatus.INTERNAL_SERVER_ERROR, exception);
68     }
69
70     @ExceptionHandler({CpsException.class, ServerNcmpException.class})
71     public static ResponseEntity<Object> handleAnyOtherCpsExceptions(final Exception exception) {
72         return buildErrorResponse(HttpStatus.INTERNAL_SERVER_ERROR, exception);
73     }
74
75     @ExceptionHandler({DmiClientRequestException.class})
76     public static ResponseEntity<Object> handleClientRequestExceptions(
77             final DmiClientRequestException dmiClientRequestException) {
78         return wrapDmiErrorResponse(dmiClientRequestException);
79     }
80
81     @ExceptionHandler({DmiRequestException.class, DataValidationException.class, InvalidOperationException.class,
82         OperationNotSupportedException.class, HttpMessageNotReadableException.class, InvalidTopicException.class,
83         InvalidDatastoreException.class})
84     public static ResponseEntity<Object> handleDmiRequestExceptions(final Exception exception) {
85         return buildErrorResponse(HttpStatus.BAD_REQUEST, exception);
86     }
87
88     @ExceptionHandler({AlreadyDefinedException.class, PolicyExecutorException.class})
89     public static ResponseEntity<Object> handleConflictExceptions(final Exception exception) {
90         return buildErrorResponse(HttpStatus.CONFLICT, exception);
91     }
92
93     @ExceptionHandler({DataNodeNotFoundException.class})
94     public static ResponseEntity<Object> handleNotFoundExceptions(final Exception exception) {
95         return buildErrorResponse(HttpStatus.NOT_FOUND, exception);
96     }
97
98     @ExceptionHandler({PayloadTooLargeException.class})
99     public static ResponseEntity<Object> handlePayloadTooLargeExceptions(final Exception exception) {
100         return buildErrorResponse(HttpStatus.PAYLOAD_TOO_LARGE, exception);
101     }
102
103     private static ResponseEntity<Object> buildErrorResponse(final HttpStatus status, final Exception exception) {
104         if (exception.getCause() != null || !(exception instanceof CpsException)) {
105             log.error("Exception occurred", exception);
106         }
107         final var errorMessage = new ErrorMessage();
108         errorMessage.setStatus(status.toString());
109         errorMessage.setMessage(exception.getMessage());
110         if (exception instanceof CpsException) {
111             errorMessage.setDetails(((CpsException) exception).getDetails());
112         } else if (exception instanceof NcmpException) {
113             errorMessage.setDetails(((NcmpException) exception).getDetails());
114         } else {
115             errorMessage.setDetails(CHECK_LOGS_FOR_DETAILS);
116         }
117         return new ResponseEntity<>(errorMessage, status);
118     }
119
120     private static ResponseEntity<Object> wrapDmiErrorResponse(final DmiClientRequestException
121                                                                        dmiClientRequestException) {
122         final var dmiErrorMessage = new DmiErrorMessage();
123         final var dmiErrorResponse = new DmiErrorMessageDmiResponse();
124         dmiErrorResponse.setHttpCode(dmiClientRequestException.getHttpStatusCode());
125         dmiErrorResponse.setBody(dmiClientRequestException.getResponseBodyAsString());
126         dmiErrorMessage.setMessage(dmiClientRequestException.getMessage());
127         dmiErrorMessage.setDmiResponse(dmiErrorResponse);
128         return new ResponseEntity<>(dmiErrorMessage, HttpStatus.BAD_GATEWAY);
129     }
130 }