
io.dropwizard.jersey.validation.FuzzyEnumParamConverterProvider Maven / Gradle / Ivy
package io.dropwizard.jersey.validation;
import com.google.common.base.Joiner;
import com.google.common.base.Strings;
import io.dropwizard.jersey.errors.ErrorMessage;
import io.dropwizard.util.Enums;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import javax.ws.rs.ext.ParamConverter;
import javax.ws.rs.ext.ParamConverterProvider;
import javax.ws.rs.ext.Provider;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import static io.dropwizard.jersey.validation.JerseyParameterNameProvider.getParameterNameFromAnnotations;
/**
* Provides converters to jersey for enums used as resource parameters.
*
* By default jersey will return a 404 if a resource parameter of an enum type cannot be converted. This class
* provides converters for all enum types used as resource parameters that provide better error handling. If an
* invalid value is provided for the parameter a {@code 400 Bad Request} is returned and the error message will
* include the parameter name and a list of valid values.
*/
@SuppressWarnings("unchecked")
@Provider
public class FuzzyEnumParamConverterProvider implements ParamConverterProvider {
private final static Joiner JOINER = Joiner.on(", ");
@Override
public ParamConverter getConverter(Class rawType, Type genericType, Annotation[] annotations) {
if (!rawType.isEnum()) {
return null;
}
final Class> type = (Class>) rawType;
final Enum>[] constants = type.getEnumConstants();
final String parameterName = getParameterNameFromAnnotations(annotations).orElse("Parameter");
return new ParamConverter() {
@Override
public T fromString(String value) {
if (Strings.isNullOrEmpty(value)) {
return null;
}
final Enum> constant = Enums.fromStringFuzzy(value, constants);
if (constant != null) {
return (T) constant;
}
final String errMsg = String.format("%s must be one of [%s]", parameterName, JOINER.join(constants));
throw new WebApplicationException(getErrorResponse(errMsg));
}
@Override
public String toString(T value) {
return value.toString();
}
protected Response getErrorResponse(String message) {
return Response
.status(400)
.entity(new ErrorMessage(400, message))
.type(MediaType.APPLICATION_JSON_TYPE)
.build();
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy