2018-08-16 16:53:20 +02:00
|
|
|
package sonia.scm.api.v2;
|
|
|
|
|
|
2018-10-26 14:20:19 +02:00
|
|
|
import com.google.inject.Inject;
|
2018-08-16 16:53:20 +02:00
|
|
|
import org.jboss.resteasy.api.validation.ResteasyViolationException;
|
2018-10-26 14:20:19 +02:00
|
|
|
import sonia.scm.api.v2.resources.ViolationExceptionToErrorDtoMapper;
|
2018-08-16 16:53:20 +02:00
|
|
|
|
|
|
|
|
import javax.ws.rs.core.MediaType;
|
|
|
|
|
import javax.ws.rs.core.Response;
|
|
|
|
|
import javax.ws.rs.ext.ExceptionMapper;
|
|
|
|
|
import javax.ws.rs.ext.Provider;
|
2018-10-26 09:47:30 +02:00
|
|
|
|
2018-08-16 16:53:20 +02:00
|
|
|
@Provider
|
|
|
|
|
public class ValidationExceptionMapper implements ExceptionMapper<ResteasyViolationException> {
|
|
|
|
|
|
2018-10-26 14:20:19 +02:00
|
|
|
@Inject
|
|
|
|
|
private ViolationExceptionToErrorDtoMapper mapper;
|
|
|
|
|
|
2018-08-16 16:53:20 +02:00
|
|
|
@Override
|
|
|
|
|
public Response toResponse(ResteasyViolationException exception) {
|
|
|
|
|
return Response
|
|
|
|
|
.status(Response.Status.BAD_REQUEST)
|
|
|
|
|
.type(MediaType.APPLICATION_JSON_TYPE)
|
2018-10-26 14:20:19 +02:00
|
|
|
.entity(mapper.map(exception))
|
2018-08-16 16:53:20 +02:00
|
|
|
.build();
|
|
|
|
|
}
|
|
|
|
|
}
|