2018-08-16 16:53:20 +02:00
|
|
|
package sonia.scm.api.v2;
|
|
|
|
|
|
|
|
|
|
import org.jboss.resteasy.api.validation.ResteasyViolationException;
|
2018-11-20 11:04:30 +01:00
|
|
|
import sonia.scm.api.v2.resources.ResteasyViolationExceptionToErrorDtoMapper;
|
2019-03-04 08:44:41 +01:00
|
|
|
import sonia.scm.web.VndMediaType;
|
2018-08-16 16:53:20 +02:00
|
|
|
|
2018-10-26 14:59:26 +02:00
|
|
|
import javax.inject.Inject;
|
2018-08-16 16:53:20 +02:00
|
|
|
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
|
2018-11-20 11:04:30 +01:00
|
|
|
public class ResteasyValidationExceptionMapper implements ExceptionMapper<ResteasyViolationException> {
|
2018-08-16 16:53:20 +02:00
|
|
|
|
2018-11-20 11:04:30 +01:00
|
|
|
private final ResteasyViolationExceptionToErrorDtoMapper mapper;
|
2018-10-26 14:59:26 +02:00
|
|
|
|
2018-10-26 14:20:19 +02:00
|
|
|
@Inject
|
2018-11-20 11:04:30 +01:00
|
|
|
public ResteasyValidationExceptionMapper(ResteasyViolationExceptionToErrorDtoMapper mapper) {
|
2018-10-26 14:59:26 +02:00
|
|
|
this.mapper = mapper;
|
|
|
|
|
}
|
2018-10-26 14:20:19 +02:00
|
|
|
|
2018-08-16 16:53:20 +02:00
|
|
|
@Override
|
|
|
|
|
public Response toResponse(ResteasyViolationException exception) {
|
|
|
|
|
return Response
|
|
|
|
|
.status(Response.Status.BAD_REQUEST)
|
2019-03-04 08:44:41 +01:00
|
|
|
.type(VndMediaType.ERROR_TYPE)
|
2018-10-26 14:20:19 +02:00
|
|
|
.entity(mapper.map(exception))
|
2018-08-16 16:53:20 +02:00
|
|
|
.build();
|
|
|
|
|
}
|
|
|
|
|
}
|