aboutsummaryrefslogtreecommitdiffstats
path: root/services/activity-spec/activity-spec-web/activity-spec-service/src/main/java/org/onap/sdc/activityspec/errors/DefaultExceptionMapper.java
blob: 7d1b5b4b1126c77e2a905777652edc62e916896a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
 * Copyright © 2016-2018 European Support Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.onap.sdc.activityspec.errors;

import java.util.Set;
import javax.validation.ConstraintViolation;
import javax.validation.ConstraintViolationException;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;
import javax.ws.rs.ext.ExceptionMapper;

import org.codehaus.jackson.map.JsonMappingException;
import org.hibernate.validator.internal.engine.path.PathImpl;
import org.openecomp.sdc.common.errors.CoreException;
import org.openecomp.sdc.logging.api.Logger;
import org.openecomp.sdc.logging.api.LoggerFactory;

public class DefaultExceptionMapper implements ExceptionMapper<Exception> {

    private static final Logger LOGGER = LoggerFactory.getLogger(DefaultExceptionMapper.class);

    @Override
    public Response toResponse(Exception exception) {
        Response response;
        if (exception instanceof CoreException) {
            response = transform(CoreException.class.cast(exception));
        } else if (exception instanceof ActivitySpecNotFoundException) {
            response = transform(ActivitySpecNotFoundException.class.cast(exception));
        } else if (exception instanceof ConstraintViolationException) {
            response = transform(ConstraintViolationException.class.cast(exception));
        } else if (exception instanceof JsonMappingException) {
            response = transform(JsonMappingException.class.cast(exception));
        } else {
            response = transform(exception);
        }

        return response;
    }

    private Response transform(ActivitySpecNotFoundException notFoundException) {
        LOGGER.error("Error while fetching Activity Spec :", notFoundException);
        return generateResponse(Status.NOT_FOUND, new ActivitySpecErrorResponse(notFoundException.getMessage()));
    }

    private Response transform(CoreException coreException) {
        LOGGER.error(coreException.getMessage(), coreException);
        return generateResponse(Status.BAD_REQUEST, new ActivitySpecErrorResponse(coreException.getMessage()));
    }

    private Response transform(ConstraintViolationException validationException) {
        LOGGER.error("ConstraintViolationException Occurred :", validationException);
        Set<ConstraintViolation<?>> constraintViolationSet = validationException.getConstraintViolations();
        String message;

        String fieldName = null;
        if (constraintViolationSet != null) {
            // getting the first violation message for the output response.
            ConstraintViolation<?> constraintViolation = constraintViolationSet.iterator().next();
            message = constraintViolation.getMessage();
            fieldName = ((PathImpl) constraintViolation.getPropertyPath()).getLeafNode().toString();

        } else {
            message = validationException.getMessage();
        }
        return generateResponse(Status.BAD_REQUEST, new ActivitySpecErrorResponse(String.format(message, fieldName)));
    }

    private Response transform(Exception exception) {
        LOGGER.error("Error occurred :", exception);
        return generateResponse(Status.INTERNAL_SERVER_ERROR, new ActivitySpecErrorResponse(exception.getMessage()));
    }

    private Response transform(JsonMappingException jsonMappingException) {
        LOGGER.error("Error Occurred during JSON mapping :", jsonMappingException);
        return generateResponse(Status.BAD_REQUEST, new ActivitySpecErrorResponse("Invalid Json Input"));
    }

    private Response generateResponse(Response.Status status, ActivitySpecErrorResponse activitySpecErrorResponse) {
        return Response.status(status).entity(activitySpecErrorResponse).type(MediaType.APPLICATION_JSON).build();
    }
}