2014-08-18 08:41:43 +00:00
|
|
|
// Copyright 2014 beego Author. All Rights Reserved.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// 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
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// 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.
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Package validation for validations
|
2014-08-18 08:41:43 +00:00
|
|
|
//
|
|
|
|
// import (
|
|
|
|
// "github.com/astaxie/beego/validation"
|
|
|
|
// "log"
|
|
|
|
// )
|
|
|
|
//
|
|
|
|
// type User struct {
|
|
|
|
// Name string
|
|
|
|
// Age int
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// func main() {
|
|
|
|
// u := User{"man", 40}
|
|
|
|
// valid := validation.Validation{}
|
|
|
|
// valid.Required(u.Name, "name")
|
|
|
|
// valid.MaxSize(u.Name, 15, "nameMax")
|
|
|
|
// valid.Range(u.Age, 0, 140, "age")
|
|
|
|
// if valid.HasErrors() {
|
|
|
|
// // validation does not pass
|
|
|
|
// // print invalid message
|
|
|
|
// for _, err := range valid.Errors {
|
|
|
|
// log.Println(err.Key, err.Message)
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// // or use like this
|
2016-01-05 13:14:35 +00:00
|
|
|
// if v := valid.Max(u.Age, 140, "ageMax"); !v.Ok {
|
2014-08-18 08:41:43 +00:00
|
|
|
// log.Println(v.Error.Key, v.Error.Message)
|
|
|
|
// }
|
|
|
|
// }
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// more info: http://beego.me/docs/mvc/controller/validation.md
|
2013-07-20 17:37:24 +00:00
|
|
|
package validation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2013-07-23 17:20:24 +00:00
|
|
|
"reflect"
|
2013-07-20 17:37:24 +00:00
|
|
|
"regexp"
|
2013-09-10 13:51:25 +00:00
|
|
|
"strings"
|
2013-07-20 17:37:24 +00:00
|
|
|
)
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// ValidFormer valid interface
|
2013-10-09 12:26:23 +00:00
|
|
|
type ValidFormer interface {
|
|
|
|
Valid(*Validation)
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Error show the error
|
|
|
|
type Error struct {
|
2013-09-10 13:51:25 +00:00
|
|
|
Message, Key, Name, Field, Tmpl string
|
|
|
|
Value interface{}
|
|
|
|
LimitValue interface{}
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// String Returns the Message.
|
|
|
|
func (e *Error) String() string {
|
2013-07-20 17:37:24 +00:00
|
|
|
if e == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return e.Message
|
|
|
|
}
|
|
|
|
|
2016-05-05 11:26:03 +00:00
|
|
|
// Implement Error interface.
|
|
|
|
// Return e.String()
|
|
|
|
func (e *Error) Error() string { return e.String() }
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Result is returned from every validation method.
|
2013-10-09 12:26:23 +00:00
|
|
|
// It provides an indication of success, and a pointer to the Error (if any).
|
2015-09-12 16:13:19 +00:00
|
|
|
type Result struct {
|
|
|
|
Error *Error
|
2013-10-09 12:26:23 +00:00
|
|
|
Ok bool
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Key Get Result by given key string.
|
|
|
|
func (r *Result) Key(key string) *Result {
|
2013-10-09 12:26:23 +00:00
|
|
|
if r.Error != nil {
|
|
|
|
r.Error.Key = key
|
|
|
|
}
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Message Set Result message by string or format string with args
|
|
|
|
func (r *Result) Message(message string, args ...interface{}) *Result {
|
2013-10-09 12:26:23 +00:00
|
|
|
if r.Error != nil {
|
|
|
|
if len(args) == 0 {
|
|
|
|
r.Error.Message = message
|
|
|
|
} else {
|
|
|
|
r.Error.Message = fmt.Sprintf(message, args...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
2013-07-20 17:37:24 +00:00
|
|
|
// A Validation context manages data validation and error messages.
|
|
|
|
type Validation struct {
|
2015-09-12 16:13:19 +00:00
|
|
|
Errors []*Error
|
|
|
|
ErrorsMap map[string]*Error
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Clear Clean all ValidationError.
|
2013-07-20 17:37:24 +00:00
|
|
|
func (v *Validation) Clear() {
|
2015-09-12 16:13:19 +00:00
|
|
|
v.Errors = []*Error{}
|
|
|
|
v.ErrorsMap = nil
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// HasErrors Has ValidationError nor not.
|
2013-07-20 17:37:24 +00:00
|
|
|
func (v *Validation) HasErrors() bool {
|
|
|
|
return len(v.Errors) > 0
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// ErrorMap Return the errors mapped by key.
|
2013-07-20 17:37:24 +00:00
|
|
|
// If there are multiple validation errors associated with a single key, the
|
|
|
|
// first one "wins". (Typically the first validation will be the more basic).
|
2015-09-12 16:13:19 +00:00
|
|
|
func (v *Validation) ErrorMap() map[string]*Error {
|
2013-10-09 12:26:23 +00:00
|
|
|
return v.ErrorsMap
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Error Add an error to the validation context.
|
|
|
|
func (v *Validation) Error(message string, args ...interface{}) *Result {
|
|
|
|
result := (&Result{
|
2013-07-20 17:37:24 +00:00
|
|
|
Ok: false,
|
2015-09-12 16:13:19 +00:00
|
|
|
Error: &Error{},
|
2013-07-20 17:37:24 +00:00
|
|
|
}).Message(message, args...)
|
|
|
|
v.Errors = append(v.Errors, result.Error)
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Required Test that the argument is non-nil and non-empty (if string or list)
|
|
|
|
func (v *Validation) Required(obj interface{}, key string) *Result {
|
2013-07-20 17:37:24 +00:00
|
|
|
return v.apply(Required{key}, obj)
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Min Test that the obj is greater than min if obj's type is int
|
|
|
|
func (v *Validation) Min(obj interface{}, min int, key string) *Result {
|
2013-07-28 08:59:35 +00:00
|
|
|
return v.apply(Min{min, key}, obj)
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Max Test that the obj is less than max if obj's type is int
|
|
|
|
func (v *Validation) Max(obj interface{}, max int, key string) *Result {
|
2013-07-28 08:59:35 +00:00
|
|
|
return v.apply(Max{max, key}, obj)
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Range Test that the obj is between mni and max if obj's type is int
|
|
|
|
func (v *Validation) Range(obj interface{}, min, max int, key string) *Result {
|
2013-07-28 08:59:35 +00:00
|
|
|
return v.apply(Range{Min{Min: min}, Max{Max: max}, key}, obj)
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// MinSize Test that the obj is longer than min size if type is string or slice
|
|
|
|
func (v *Validation) MinSize(obj interface{}, min int, key string) *Result {
|
2013-07-20 17:37:24 +00:00
|
|
|
return v.apply(MinSize{min, key}, obj)
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// MaxSize Test that the obj is shorter than max size if type is string or slice
|
|
|
|
func (v *Validation) MaxSize(obj interface{}, max int, key string) *Result {
|
2013-07-20 17:37:24 +00:00
|
|
|
return v.apply(MaxSize{max, key}, obj)
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Length Test that the obj is same length to n if type is string or slice
|
|
|
|
func (v *Validation) Length(obj interface{}, n int, key string) *Result {
|
2013-07-20 17:37:24 +00:00
|
|
|
return v.apply(Length{n, key}, obj)
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Alpha Test that the obj is [a-zA-Z] if type is string
|
|
|
|
func (v *Validation) Alpha(obj interface{}, key string) *Result {
|
2013-07-20 17:37:24 +00:00
|
|
|
return v.apply(Alpha{key}, obj)
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Numeric Test that the obj is [0-9] if type is string
|
|
|
|
func (v *Validation) Numeric(obj interface{}, key string) *Result {
|
2013-07-20 17:37:24 +00:00
|
|
|
return v.apply(Numeric{key}, obj)
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// AlphaNumeric Test that the obj is [0-9a-zA-Z] if type is string
|
|
|
|
func (v *Validation) AlphaNumeric(obj interface{}, key string) *Result {
|
2013-07-20 17:37:24 +00:00
|
|
|
return v.apply(AlphaNumeric{key}, obj)
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Match Test that the obj matches regexp if type is string
|
|
|
|
func (v *Validation) Match(obj interface{}, regex *regexp.Regexp, key string) *Result {
|
2013-07-28 08:59:35 +00:00
|
|
|
return v.apply(Match{regex, key}, obj)
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// NoMatch Test that the obj doesn't match regexp if type is string
|
|
|
|
func (v *Validation) NoMatch(obj interface{}, regex *regexp.Regexp, key string) *Result {
|
2013-07-28 08:59:35 +00:00
|
|
|
return v.apply(NoMatch{Match{Regexp: regex}, key}, obj)
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// AlphaDash Test that the obj is [0-9a-zA-Z_-] if type is string
|
|
|
|
func (v *Validation) AlphaDash(obj interface{}, key string) *Result {
|
2013-07-28 08:59:35 +00:00
|
|
|
return v.apply(AlphaDash{NoMatch{Match: Match{Regexp: alphaDashPattern}}, key}, obj)
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Email Test that the obj is email address if type is string
|
|
|
|
func (v *Validation) Email(obj interface{}, key string) *Result {
|
2013-07-28 08:59:35 +00:00
|
|
|
return v.apply(Email{Match{Regexp: emailPattern}, key}, obj)
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// IP Test that the obj is IP address if type is string
|
|
|
|
func (v *Validation) IP(obj interface{}, key string) *Result {
|
2013-07-28 08:59:35 +00:00
|
|
|
return v.apply(IP{Match{Regexp: ipPattern}, key}, obj)
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Base64 Test that the obj is base64 encoded if type is string
|
|
|
|
func (v *Validation) Base64(obj interface{}, key string) *Result {
|
2013-07-28 08:59:35 +00:00
|
|
|
return v.apply(Base64{Match{Regexp: base64Pattern}, key}, obj)
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Mobile Test that the obj is chinese mobile number if type is string
|
|
|
|
func (v *Validation) Mobile(obj interface{}, key string) *Result {
|
2013-07-28 08:59:35 +00:00
|
|
|
return v.apply(Mobile{Match{Regexp: mobilePattern}, key}, obj)
|
2013-07-27 12:40:15 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Tel Test that the obj is chinese telephone number if type is string
|
|
|
|
func (v *Validation) Tel(obj interface{}, key string) *Result {
|
2013-07-28 08:59:35 +00:00
|
|
|
return v.apply(Tel{Match{Regexp: telPattern}, key}, obj)
|
2013-07-27 12:40:15 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Phone Test that the obj is chinese mobile or telephone number if type is string
|
|
|
|
func (v *Validation) Phone(obj interface{}, key string) *Result {
|
2013-07-27 12:40:15 +00:00
|
|
|
return v.apply(Phone{Mobile{Match: Match{Regexp: mobilePattern}},
|
2013-07-28 08:59:35 +00:00
|
|
|
Tel{Match: Match{Regexp: telPattern}}, key}, obj)
|
2013-07-27 12:40:15 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// ZipCode Test that the obj is chinese zip code if type is string
|
|
|
|
func (v *Validation) ZipCode(obj interface{}, key string) *Result {
|
2013-07-28 08:59:35 +00:00
|
|
|
return v.apply(ZipCode{Match{Regexp: zipCodePattern}, key}, obj)
|
2013-07-27 12:40:15 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
func (v *Validation) apply(chk Validator, obj interface{}) *Result {
|
2013-07-20 17:37:24 +00:00
|
|
|
if chk.IsSatisfied(obj) {
|
2015-09-12 16:13:19 +00:00
|
|
|
return &Result{Ok: true}
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add the error to the validation context.
|
2013-09-10 13:51:25 +00:00
|
|
|
key := chk.GetKey()
|
|
|
|
Name := key
|
|
|
|
Field := ""
|
|
|
|
|
|
|
|
parts := strings.Split(key, ".")
|
|
|
|
if len(parts) == 2 {
|
|
|
|
Field = parts[0]
|
|
|
|
Name = parts[1]
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
err := &Error{
|
2013-09-10 13:51:25 +00:00
|
|
|
Message: chk.DefaultMessage(),
|
|
|
|
Key: key,
|
|
|
|
Name: Name,
|
|
|
|
Field: Field,
|
|
|
|
Value: obj,
|
|
|
|
Tmpl: MessageTmpls[Name],
|
|
|
|
LimitValue: chk.GetLimitValue(),
|
2013-07-20 17:37:24 +00:00
|
|
|
}
|
2013-10-09 12:26:23 +00:00
|
|
|
v.setError(err)
|
2013-07-20 17:37:24 +00:00
|
|
|
|
|
|
|
// Also return it in the result.
|
2015-09-12 16:13:19 +00:00
|
|
|
return &Result{
|
2013-07-20 17:37:24 +00:00
|
|
|
Ok: false,
|
|
|
|
Error: err,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
func (v *Validation) setError(err *Error) {
|
2013-10-09 12:26:23 +00:00
|
|
|
v.Errors = append(v.Errors, err)
|
|
|
|
if v.ErrorsMap == nil {
|
2015-09-12 16:13:19 +00:00
|
|
|
v.ErrorsMap = make(map[string]*Error)
|
2013-10-09 12:26:23 +00:00
|
|
|
}
|
|
|
|
if _, ok := v.ErrorsMap[err.Field]; !ok {
|
|
|
|
v.ErrorsMap[err.Field] = err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// SetError Set error message for one field in ValidationError
|
|
|
|
func (v *Validation) SetError(fieldName string, errMsg string) *Error {
|
|
|
|
err := &Error{Key: fieldName, Field: fieldName, Tmpl: errMsg, Message: errMsg}
|
2013-10-09 12:26:23 +00:00
|
|
|
v.setError(err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Check Apply a group of validators to a field, in order, and return the
|
2013-07-20 17:37:24 +00:00
|
|
|
// ValidationResult from the first one that fails, or the last one that
|
|
|
|
// succeeds.
|
2015-09-12 16:13:19 +00:00
|
|
|
func (v *Validation) Check(obj interface{}, checks ...Validator) *Result {
|
|
|
|
var result *Result
|
2013-07-20 17:37:24 +00:00
|
|
|
for _, check := range checks {
|
|
|
|
result = v.apply(check, obj)
|
|
|
|
if !result.Ok {
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
2013-07-23 17:20:24 +00:00
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Valid Validate a struct.
|
2013-07-23 17:20:24 +00:00
|
|
|
// the obj parameter must be a struct or a struct pointer
|
|
|
|
func (v *Validation) Valid(obj interface{}) (b bool, err error) {
|
2013-07-24 04:20:42 +00:00
|
|
|
objT := reflect.TypeOf(obj)
|
|
|
|
objV := reflect.ValueOf(obj)
|
2013-07-23 17:20:24 +00:00
|
|
|
switch {
|
2013-07-24 04:20:42 +00:00
|
|
|
case isStruct(objT):
|
|
|
|
case isStructPtr(objT):
|
|
|
|
objT = objT.Elem()
|
|
|
|
objV = objV.Elem()
|
2013-07-23 17:20:24 +00:00
|
|
|
default:
|
|
|
|
err = fmt.Errorf("%v must be a struct or a struct pointer", obj)
|
|
|
|
return
|
|
|
|
}
|
2013-07-24 04:20:42 +00:00
|
|
|
|
|
|
|
for i := 0; i < objT.NumField(); i++ {
|
|
|
|
var vfs []ValidFunc
|
|
|
|
if vfs, err = getValidFuncs(objT.Field(i)); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for _, vf := range vfs {
|
|
|
|
if _, err = funcs.Call(vf.Name,
|
|
|
|
mergeParam(v, objV.Field(i).Interface(), vf.Params)...); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-09 12:26:23 +00:00
|
|
|
|
|
|
|
if !v.HasErrors() {
|
|
|
|
if form, ok := obj.(ValidFormer); ok {
|
|
|
|
form.Valid(v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-24 04:20:42 +00:00
|
|
|
return !v.HasErrors(), nil
|
2013-07-23 17:20:24 +00:00
|
|
|
}
|
2015-04-24 02:58:46 +00:00
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// RecursiveValid Recursively validate a struct.
|
2015-04-24 02:58:46 +00:00
|
|
|
// Step1: Validate by v.Valid
|
|
|
|
// Step2: If pass on step1, then reflect obj's fields
|
|
|
|
// Step3: Do the Recursively validation to all struct or struct pointer fields
|
|
|
|
func (v *Validation) RecursiveValid(objc interface{}) (bool, error) {
|
|
|
|
//Step 1: validate obj itself firstly
|
2015-04-24 03:14:49 +00:00
|
|
|
// fails if objc is not struct
|
2015-04-24 02:58:46 +00:00
|
|
|
pass, err := v.Valid(objc)
|
|
|
|
if err != nil || false == pass {
|
|
|
|
return pass, err // Stop recursive validation
|
2015-09-12 16:13:19 +00:00
|
|
|
}
|
|
|
|
// Step 2: Validate struct's struct fields
|
|
|
|
objT := reflect.TypeOf(objc)
|
|
|
|
objV := reflect.ValueOf(objc)
|
|
|
|
|
|
|
|
if isStructPtr(objT) {
|
|
|
|
objT = objT.Elem()
|
|
|
|
objV = objV.Elem()
|
|
|
|
}
|
2015-04-24 02:58:46 +00:00
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
for i := 0; i < objT.NumField(); i++ {
|
2015-04-24 02:58:46 +00:00
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
t := objT.Field(i).Type
|
2015-04-24 02:58:46 +00:00
|
|
|
|
2015-09-12 16:13:19 +00:00
|
|
|
// Recursive applies to struct or pointer to structs fields
|
|
|
|
if isStruct(t) || isStructPtr(t) {
|
|
|
|
// Step 3: do the recursive validation
|
|
|
|
// Only valid the Public field recursively
|
|
|
|
if objV.Field(i).CanInterface() {
|
|
|
|
pass, err = v.RecursiveValid(objV.Field(i).Interface())
|
2015-04-24 02:58:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-09-12 16:13:19 +00:00
|
|
|
return pass, err
|
2015-04-24 02:58:46 +00:00
|
|
|
}
|