Documentation ¶
Overview ¶
Package validator is a powerful validator that supports struct tag expression.
Copyright 2019 Bytedance Inc. All Rights Reserved.
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.
Example ¶
package main import ( "fmt" vd "github.com/bytedance/go-tagexpr/validator" ) func main() { type InfoRequest struct { Name string `vd:"($!='Alice'||(Age)$==18) && regexp('\\w')"` Age int `vd:"$>0"` Email string `vd:"email($)"` Phone1 string `vd:"phone($)"` Phone2 string `vd:"phone($,'CN')"` *InfoRequest `vd:"?"` Info1 *InfoRequest `vd:"?"` Info2 *InfoRequest `vd:"-"` } info := InfoRequest{ Name: "Alice", Age: 18, Email: "henrylee2cn@gmail.com", Phone1: "+8618812345678", Phone2: "18812345678", } fmt.Println(vd.Validate(info) == nil) type A struct { A int `vd:"$<0||$>=100"` Info interface{} } info.Email = "xxx" a := &A{A: 107, Info: info} fmt.Println(vd.Validate(a)) type B struct { B string `vd:"len($)>1 && regexp('^\\w*$')"` } b := &B{"abc"} fmt.Println(vd.Validate(b) == nil) type C struct { C bool `vd:"@:(S.A)$>0 && !$; msg:'C must be false when S.A>0'"` S *A } c := &C{C: true, S: a} fmt.Println(vd.Validate(c)) type D struct { d []string `vd:"@:len($)>0 && $[0]=='D'; msg:sprintf('invalid d: %v',$)"` } d := &D{d: []string{"x", "y"}} fmt.Println(vd.Validate(d)) type E struct { e map[string]int `vd:"len($)==$['len']"` } e := &E{map[string]int{"len": 2}} fmt.Println(vd.Validate(e)) // Customizes the factory of validation error. vd.SetErrorFactory(func(failPath, msg string) error { return fmt.Errorf(`{"succ":false, "error":"validation failed: %s"}`, failPath) }) type F struct { f struct { g int `vd:"$%3==0"` } } f := &F{} f.f.g = 10 fmt.Println(vd.Validate(f)) fmt.Println(vd.Validate(map[string]*F{"a": f})) fmt.Println(vd.Validate(map[*F]int{f: 1})) fmt.Println(vd.Validate([][1]*F{{f}})) fmt.Println(vd.Validate((*F)(nil))) fmt.Println(vd.Validate(map[string]*F{})) fmt.Println(vd.Validate([]*F{})) }
Output: true invalid parameter: Info.Email true C must be false when S.A>0 invalid d: [x y] invalid parameter: e {"succ":false, "error":"validation failed: f.g"} {"succ":false, "error":"validation failed: {K:a}.f.g"} {"succ":false, "error":"validation failed: {}.f.g"} {"succ":false, "error":"validation failed: [0][0].f.g"} unsupport data: nil <nil> <nil>
Index ¶
- Constants
- func MustRegFunc(funcName string, fn func(args ...interface{}) bool, force ...bool)
- func RegFunc(funcName string, fn func(args ...interface{}) bool, force ...bool) error
- func SetErrorFactory(errFactory func(fieldSelector, msg string) error)
- func Validate(value interface{}, checkAll ...bool) error
- type Error
- type Validator
Examples ¶
Constants ¶
const ( // MatchExprName the name of the expression used for validation MatchExprName = tagexpr.DefaultExprName // ErrMsgExprName the name of the expression used to specify the message // returned when validation failed ErrMsgExprName = "msg" )
Variables ¶
This section is empty.
Functions ¶
func MustRegFunc ¶
MustRegFunc registers validator function expression. NOTE:
panic if exist error; example: phone($) or phone($,'CN'); If @force=true, allow to cover the existed same @funcName; The go number types always are float64; The go string types always are string.
func RegFunc ¶ added in v1.3.3
RegFunc registers validator function expression. NOTE:
example: phone($) or phone($,'CN'); If @force=true, allow to cover the existed same @funcName; The go number types always are float64; The go string types always are string.
func SetErrorFactory ¶ added in v1.3.1
SetErrorFactory customizes the factory of validation error for the default validator. NOTE:
The tag name is 'vd'
Types ¶
type Validator ¶
type Validator struct {
// contains filtered or unexported fields
}
Validator struct fields validator
func Default ¶ added in v1.3.1
func Default() *Validator
Default returns the default validator. NOTE:
The tag name is 'vd'
func (*Validator) SetErrorFactory ¶
SetErrorFactory customizes the factory of validation error. NOTE:
If errFactory==nil, the default is used