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