blob: 10407e3224c94a8ccc1ad43f5922c1e4bc742bbc [file] [log] [blame]
// Copyright 2005 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package org.apache.tapestry.form.validator;
import java.util.Date;
import org.apache.tapestry.IMarkupWriter;
import org.apache.tapestry.IRequestCycle;
import org.apache.tapestry.form.FormComponentContributorContext;
import org.apache.tapestry.form.IFormComponent;
import org.apache.tapestry.form.ValidationMessages;
import org.apache.tapestry.form.translator.DateTranslator;
import org.apache.tapestry.json.JSONLiteral;
import org.apache.tapestry.json.JSONObject;
import org.apache.tapestry.valid.ValidationConstants;
import org.apache.tapestry.valid.ValidationConstraint;
import org.apache.tapestry.valid.ValidationStrings;
import org.apache.tapestry.valid.ValidatorException;
/**
* Expects the value to be a {@link Date}, and constrains the date to follow a particular date.
*
* @author Howard M. Lewis Ship
* @since 4.0
*/
public class MinDate extends BaseValidator
{
private Date _minDate;
public MinDate()
{
}
public MinDate(String initializer)
{
super(initializer);
}
public void setMinDate(Date minDate)
{
_minDate = minDate;
}
public Date getMinDate()
{
return _minDate;
}
public void validate(IFormComponent field, ValidationMessages messages, Object object)
throws ValidatorException
{
Date date = (Date) object;
DateTranslator translator = (DateTranslator) getFieldTranslator(field, DateTranslator.class);
if (date.before(_minDate))
throw new ValidatorException(buildMessage(messages, field, translator), ValidationConstraint.TOO_SMALL);
}
private String buildMessage(ValidationMessages messages, IFormComponent field,
DateTranslator translator)
{
return messages.formatValidationMessage(
getMessage(),
ValidationStrings.DATE_TOO_EARLY,
new Object[] { field.getDisplayName(),
(translator != null) ?
translator.format(field, messages.getLocale(), _minDate) : _minDate.toString()});
}
public void renderContribution(IMarkupWriter writer, IRequestCycle cycle,
FormComponentContributorContext context, IFormComponent field)
{
// TODO: This is a little hacky, but validators need to be able to cooperate
// with translators during client side validation as well
DateTranslator translator = (DateTranslator) getFieldTranslator(field, DateTranslator.class);
if (translator == null)
return;
JSONObject profile = context.getProfile();
context.addInitializationScript(field, "dojo.require(\"tapestry.form.datetime\");");
if (!profile.has(ValidationConstants.CONSTRAINTS)) {
profile.put(ValidationConstants.CONSTRAINTS, new JSONObject());
}
JSONObject cons = profile.getJSONObject(ValidationConstants.CONSTRAINTS);
accumulateProperty(cons, field.getClientId(),
new JSONLiteral("[tapestry.form.datetime.isValidDate,{"
+ "min:"
+ JSONObject.quote(translator.format(field, context.getLocale(), _minDate))
+ ","
+ "datePattern:"
+ JSONObject.quote(translator.getPattern())
+ (translator.isLenient() ? "" : ",strict:true")
+ "}]"));
accumulateProfileProperty(field, profile,
ValidationConstants.CONSTRAINTS, buildMessage(context, field, translator));
}
}