Update license headers
[vid.git] / vid-app-common / src / main / java / org / onap / vid / controller / VidRestrictedBaseController.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.vid.controller;
22
23 import org.apache.commons.lang.StringUtils;
24 import org.apache.commons.lang.exception.ExceptionUtils;
25 import org.onap.portalsdk.core.controller.RestrictedBaseController;
26 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
27 import org.onap.vid.model.ExceptionResponse;
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.ResponseBody;
32 import org.springframework.web.bind.annotation.ResponseStatus;
33 import org.springframework.web.method.annotation.MethodArgumentTypeMismatchException;
34
35 import static org.onap.vid.utils.Logging.getMethodCallerName;
36 import static org.springframework.http.HttpStatus.INTERNAL_SERVER_ERROR;
37
38 public abstract class VidRestrictedBaseController extends RestrictedBaseController {
39
40     protected final EELFLoggerDelegate LOGGER = EELFLoggerDelegate.getLogger(this.getClass().getName());
41
42     @ExceptionHandler(MethodArgumentTypeMismatchException.class)
43     @ResponseBody
44     public ResponseEntity handleMethodArgumentTypeMismatchException(MethodArgumentTypeMismatchException e) {
45         LOGGER.error(EELFLoggerDelegate.errorLogger, "{}: {}", getMethodCallerName(), ExceptionUtils.getMessage(e), e);
46         Class<?> type = e.getRequiredType();
47         String message;
48         if (type.isEnum()) {
49             message = "The parameter " + e.getName() + " must have a value among : " + StringUtils.join(type.getEnumConstants(), ", ");
50         }
51         else {
52             message = "The parameter " + e.getName() + " must be of type " + type.getTypeName();
53         }
54         return new ResponseEntity<String>(message, HttpStatus.BAD_REQUEST);
55     }
56
57     @ExceptionHandler(Exception.class)
58     @ResponseStatus(value=INTERNAL_SERVER_ERROR)
59     public ExceptionResponse exceptionHandler(Exception e) {
60         return ControllersUtils.handleException(e, LOGGER);
61     }
62 }