2 * Copyright © 2016-2018 European Support Limited
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * 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.
17 package org.openecomp.sdcrests.errors;
19 import java.util.ArrayList;
20 import java.util.List;
24 import javax.validation.ConstraintViolation;
25 import javax.validation.ConstraintViolationException;
26 import javax.validation.Path;
27 import javax.ws.rs.core.MediaType;
28 import javax.ws.rs.core.Response;
29 import javax.ws.rs.ext.ExceptionMapper;
31 import org.apache.commons.collections4.CollectionUtils;
32 import com.fasterxml.jackson.databind.JsonMappingException;
33 import org.hibernate.validator.internal.engine.path.PathImpl;
34 import org.openecomp.core.utilities.file.FileUtils;
35 import org.openecomp.core.utilities.json.JsonUtil;
36 import org.openecomp.sdc.common.errors.CoreException;
37 import org.openecomp.sdc.common.errors.ErrorCategory;
38 import org.openecomp.sdc.common.errors.ErrorCode;
39 import org.openecomp.sdc.common.errors.ErrorCodeAndMessage;
40 import org.openecomp.sdc.common.errors.GeneralErrorBuilder;
41 import org.openecomp.sdc.common.errors.JsonMappingErrorBuilder;
42 import org.openecomp.sdc.common.errors.ValidationErrorBuilder;
43 import org.openecomp.sdc.logging.api.Logger;
44 import org.openecomp.sdc.logging.api.LoggerFactory;
46 public class DefaultExceptionMapper implements ExceptionMapper<Exception> {
48 private static final String ERROR_CODES_TO_RESPONSE_STATUS_MAPPING_FILE = "errorCodesToResponseStatusMapping.json";
49 @SuppressWarnings("unchecked")
50 private static final Map<String, String> ERROR_CODE_TO_RESPONSE_STATUS = FileUtils.readViaInputStream(
51 ERROR_CODES_TO_RESPONSE_STATUS_MAPPING_FILE, stream -> JsonUtil.json2Object(stream, Map.class));
53 private static final Logger LOGGER = LoggerFactory.getLogger(DefaultExceptionMapper.class);
56 public Response toResponse(Exception exception) {
58 if (exception instanceof CoreException) {
59 response = transform(CoreException.class.cast(exception));
60 } else if (exception instanceof ConstraintViolationException) {
61 response = transform(ConstraintViolationException.class.cast(exception));
63 } else if (exception instanceof JsonMappingException) {
64 response = transform(JsonMappingException.class.cast(exception));
67 response = transform(exception);
70 List<Object> contentTypes = new ArrayList<>();
71 contentTypes.add(MediaType.APPLICATION_JSON);
72 response.getMetadata().put("Content-Type", contentTypes);
76 private Response transform(CoreException coreException) {
78 ErrorCode code = coreException.code();
79 LOGGER.error(code.message(), coreException);
81 if (coreException.code().category().equals(ErrorCategory.APPLICATION)) {
82 if (Response.Status.NOT_FOUND.name().equals(ERROR_CODE_TO_RESPONSE_STATUS.get(code.id()))) {
83 response = Response.status(Response.Status.NOT_FOUND).entity(toEntity(Response.Status.NOT_FOUND, code))
85 } else if (Response.Status.BAD_REQUEST.name().equals(ERROR_CODE_TO_RESPONSE_STATUS.get(code.id()))) {
87 Response.status(Response.Status.BAD_REQUEST).entity(toEntity(Response.Status.BAD_REQUEST, code))
90 response = Response.status(Response.Status.EXPECTATION_FAILED)
91 .entity(toEntity(Response.Status.EXPECTATION_FAILED, code)).build();
94 response = Response.status(Response.Status.INTERNAL_SERVER_ERROR)
95 .entity(toEntity(Response.Status.INTERNAL_SERVER_ERROR, code)).build();
102 private Response transform(ConstraintViolationException validationException) {
103 Set<ConstraintViolation<?>> constraintViolationSet = validationException.getConstraintViolations();
106 String fieldName = null;
107 if (CollectionUtils.isEmpty(constraintViolationSet)) {
108 message = validationException.getMessage();
110 // getting the first violation message for the output response.
111 ConstraintViolation<?> constraintViolation = constraintViolationSet.iterator().next();
112 message = constraintViolation.getMessage();
113 fieldName = getFieldName(constraintViolation.getPropertyPath());
117 ErrorCode validationErrorCode = new ValidationErrorBuilder(message, fieldName).build();
119 LOGGER.error(validationErrorCode.message(), validationException);
120 return Response.status(Response.Status.EXPECTATION_FAILED) //error 417
121 .entity(toEntity(Response.Status.EXPECTATION_FAILED, validationErrorCode)).build();
124 private Response transform(JsonMappingException jsonMappingException) {
125 ErrorCode jsonMappingErrorCode = new JsonMappingErrorBuilder().build();
126 LOGGER.error(jsonMappingErrorCode.message(), jsonMappingException);
127 return Response.status(Response.Status.EXPECTATION_FAILED) //error 417
128 .entity(toEntity(Response.Status.EXPECTATION_FAILED, jsonMappingErrorCode)).build();
131 private Response transform(Exception exception) {
132 ErrorCode errorCode = new GeneralErrorBuilder().build();
133 LOGGER.error(errorCode.message(), exception);
134 return Response.status(Response.Status.INTERNAL_SERVER_ERROR)
135 .entity(toEntity(Response.Status.INTERNAL_SERVER_ERROR, errorCode)).build();
138 private String getFieldName(Path propertyPath) {
139 return ((PathImpl) propertyPath).getLeafNode().toString();
142 private Object toEntity(Response.Status status, ErrorCode code) {
143 return new ErrorCodeAndMessage(status, code);