play.data.validation.InFutureCheck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
RePlay is a fork of the Play1 framework, created by Codeborne.
package play.data.validation;
import net.sf.oval.Validator;
import net.sf.oval.configuration.annotation.AbstractAnnotationCheck;
import net.sf.oval.context.OValContext;
import play.exceptions.UnexpectedException;
import play.libs.I18N;
import play.utils.Utils.AlternativeDateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
@SuppressWarnings("serial")
public class InFutureCheck extends AbstractAnnotationCheck {
static final String mes = "validation.future";
Date reference;
@Override
public void configure(InFuture future) {
try {
this.reference = future.value().equals("") ? new Date() : AlternativeDateFormat.getDefaultFormatter().parse(future.value());
} catch (ParseException ex) {
throw new UnexpectedException("Cannot parse date " +future.value(), ex);
}
if(!future.value().equals("") && future.message().equals(mes)) {
setMessage("validation.after");
} else {
setMessage(future.message());
}
}
@Override
public boolean isSatisfied(Object validatedObject, Object value, OValContext context, Validator validator) {
requireMessageVariablesRecreation();
if (value == null) {
return true;
}
if (value instanceof Date) {
try {
return reference.before((Date)value);
} catch (Exception e) {
return false;
}
}
if (value instanceof Long) {
try {
return reference.before(new Date((Long) value));
} catch (Exception e) {
return false;
}
}
return false;
}
@Override
public Map createMessageVariables() {
Map messageVariables = new HashMap<>();
messageVariables.put("reference", new SimpleDateFormat(I18N.getDateFormat()).format(reference));
return messageVariables;
}
}