net.ymate.platform.validation.validate.DateTimeValidator.java Source code

Java tutorial

Introduction

Here is the source code for net.ymate.platform.validation.validate.DateTimeValidator.java

Source

/*
 * Copyright 2007-2016 the original author or authors.
 *
 * 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 net.ymate.platform.validation.validate;

import net.ymate.platform.core.beans.annotation.CleanProxy;
import net.ymate.platform.core.i18n.I18N;
import net.ymate.platform.core.lang.BlurObject;
import net.ymate.platform.core.util.DateTimeUtils;
import net.ymate.platform.validation.IValidator;
import net.ymate.platform.validation.ValidateContext;
import net.ymate.platform.validation.ValidateResult;
import net.ymate.platform.validation.annotation.Validator;
import org.apache.commons.lang.StringUtils;

/**
 * ??
 *
 * @author  (suninformation@163.com) on 2013-4-17 ?9:43:55
 * @version 1.0
 */
@Validator(VDateTime.class)
@CleanProxy
public class DateTimeValidator implements IValidator {

    public ValidateResult validate(ValidateContext context) {
        Object _paramValue = context.getParamValue();
        if (_paramValue != null) {
            if (!context.getParamValue().getClass().isArray()) {
                String _dateStr = BlurObject.bind(_paramValue).toStringValue();
                if (StringUtils.isNotBlank(_dateStr)) {
                    VDateTime _vDate = (VDateTime) context.getAnnotation();
                    try {
                        DateTimeUtils.parseDateTime(_dateStr, _vDate.pattern());
                    } catch (Exception e) {
                        String _pName = StringUtils.defaultIfBlank(context.getParamLabel(), context.getParamName());
                        _pName = I18N.formatMessage(VALIDATION_I18N_RESOURCE, _pName, _pName);
                        //
                        String _msg = StringUtils.trimToNull(_vDate.msg());
                        if (_msg != null) {
                            _msg = I18N.formatMessage(VALIDATION_I18N_RESOURCE, _msg, _msg, _pName);
                        } else {
                            String __DATETIME = "ymp.validation.datetime";
                            _msg = I18N.formatMessage(VALIDATION_I18N_RESOURCE, __DATETIME,
                                    "{0} not a valid datetime.", _pName);
                        }
                        return new ValidateResult(context.getParamName(), _msg);
                    }
                }
            }
        }
        return null;
    }
}