Created
September 28, 2016 19:34
-
-
Save nickbabcock/d34c360e7af44be4f8ed142c14e143cc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.dropwizard.jersey.validation; | |
import com.google.common.base.Joiner; | |
import com.google.common.base.Strings; | |
import io.dropwizard.jersey.errors.ErrorMessage; | |
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. | |
* | |
* <p>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.</p> | |
*/ | |
@SuppressWarnings("unchecked") | |
@Provider | |
public class ValidatingEnumParamConverterProvider implements ParamConverterProvider { | |
@Override | |
public <T> ParamConverter<T> getConverter(Class<T> rawType, Type genericType, Annotation[] annotations) { | |
if (!rawType.isEnum()) { | |
return null; | |
} | |
final Class<Enum<?>> type = (Class<Enum<?>>) rawType; | |
final Enum<?>[] constants = type.getEnumConstants(); | |
final String parameterName = getParameterNameFromAnnotations(annotations).orElse("Parameter"); | |
return new ParamConverter<T>() { | |
@Override | |
public T fromString(String value) { | |
if (Strings.isNullOrEmpty(value)) { | |
return null; | |
} | |
for (Enum<?> constant : constants) { | |
if (constant.name().equalsIgnoreCase(value)) { | |
return (T) constant; | |
} | |
} | |
for (Enum<?> constant : constants) { | |
if (constant.toString().equalsIgnoreCase(value)) { | |
return (T) constant; | |
} | |
} | |
throw new WebApplicationException(getErrorResponse(String.format("%s must be one of [%s]", parameterName, Joiner.on(", ").join(constants)))); | |
} | |
@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(); | |
} | |
}; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment