2024-02-18 10:42:21 +00:00
|
|
|
// Copyright 2016 Qiang Xue. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package validation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type DateRule struct {
|
|
|
|
layout string
|
|
|
|
min, max time.Time
|
|
|
|
message string
|
|
|
|
rangeMessage string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Date returns a validation rule that checks if a string value is in a format that can be parsed into a date.
|
|
|
|
// The format of the date should be specified as the layout parameter which accepts the same value as that for time.Parse.
|
|
|
|
// For example,
|
2024-04-26 19:30:35 +00:00
|
|
|
//
|
|
|
|
// validation.Date(time.ANSIC)
|
|
|
|
// validation.Date("02 Jan 06 15:04 MST")
|
|
|
|
// validation.Date("2006-01-02")
|
2024-02-18 10:42:21 +00:00
|
|
|
//
|
|
|
|
// By calling Min() and/or Max(), you can let the Date rule to check if a parsed date value is within
|
|
|
|
// the specified date range.
|
|
|
|
//
|
|
|
|
// An empty value is considered valid. Use the Required rule to make sure a value is not empty.
|
|
|
|
func Date(layout string) *DateRule {
|
|
|
|
return &DateRule{
|
|
|
|
layout: layout,
|
|
|
|
message: "must be a valid date",
|
|
|
|
rangeMessage: "the data is out of range",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error sets the error message that is used when the value being validated is not a valid date.
|
|
|
|
func (r *DateRule) Error(message string) *DateRule {
|
|
|
|
r.message = message
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
// RangeError sets the error message that is used when the value being validated is out of the specified Min/Max date range.
|
|
|
|
func (r *DateRule) RangeError(message string) *DateRule {
|
|
|
|
r.rangeMessage = message
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
// Min sets the minimum date range. A zero value means skipping the minimum range validation.
|
|
|
|
func (r *DateRule) Min(min time.Time) *DateRule {
|
|
|
|
r.min = min
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
// Max sets the maximum date range. A zero value means skipping the maximum range validation.
|
|
|
|
func (r *DateRule) Max(max time.Time) *DateRule {
|
|
|
|
r.max = max
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate checks if the given value is a valid date.
|
|
|
|
func (r *DateRule) Validate(value interface{}) error {
|
|
|
|
value, isNil := Indirect(value)
|
|
|
|
if isNil || IsEmpty(value) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
str, err := EnsureString(value)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
date, err := time.Parse(r.layout, str)
|
|
|
|
if err != nil {
|
|
|
|
return errors.New(r.message)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !r.min.IsZero() && r.min.After(date) || !r.max.IsZero() && date.After(r.max) {
|
|
|
|
return errors.New(r.rangeMessage)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|