2017-06-12 09:04:52 +03:00
|
|
|
// Copyright 2017 Manu Martinez-Almeida. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-05-31 17:18:50 +03:00
|
|
|
package binding
|
|
|
|
|
|
|
|
import (
|
2021-01-03 16:43:34 +03:00
|
|
|
"fmt"
|
2015-05-31 17:18:50 +03:00
|
|
|
"reflect"
|
2021-01-03 16:43:34 +03:00
|
|
|
"strings"
|
2015-05-31 17:18:50 +03:00
|
|
|
"sync"
|
|
|
|
|
2019-11-25 09:49:45 +03:00
|
|
|
"github.com/go-playground/validator/v10"
|
2015-05-31 17:18:50 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type defaultValidator struct {
|
|
|
|
once sync.Once
|
|
|
|
validate *validator.Validate
|
|
|
|
}
|
|
|
|
|
2021-01-03 16:43:34 +03:00
|
|
|
type sliceValidateError []error
|
|
|
|
|
2021-06-28 17:05:29 +03:00
|
|
|
// Error concatenates all error elements in sliceValidateError into a single string separated by \n.
|
2021-01-03 16:43:34 +03:00
|
|
|
func (err sliceValidateError) Error() string {
|
2021-06-28 17:05:29 +03:00
|
|
|
n := len(err)
|
|
|
|
switch n {
|
|
|
|
case 0:
|
|
|
|
return ""
|
|
|
|
default:
|
|
|
|
var b strings.Builder
|
|
|
|
if err[0] != nil {
|
|
|
|
fmt.Fprintf(&b, "[%d]: %s", 0, err[0].Error())
|
2021-01-03 16:43:34 +03:00
|
|
|
}
|
2021-06-28 17:05:29 +03:00
|
|
|
if n > 1 {
|
|
|
|
for i := 1; i < n; i++ {
|
|
|
|
if err[i] != nil {
|
|
|
|
b.WriteString("\n")
|
|
|
|
fmt.Fprintf(&b, "[%d]: %s", i, err[i].Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return b.String()
|
2021-01-03 16:43:34 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-31 17:18:50 +03:00
|
|
|
var _ StructValidator = &defaultValidator{}
|
|
|
|
|
2018-07-01 16:10:48 +03:00
|
|
|
// ValidateStruct receives any kind of type, but only performed struct or pointer to struct type.
|
2015-05-31 17:18:50 +03:00
|
|
|
func (v *defaultValidator) ValidateStruct(obj interface{}) error {
|
2021-01-03 16:43:34 +03:00
|
|
|
if obj == nil {
|
|
|
|
return nil
|
2018-07-01 16:10:48 +03:00
|
|
|
}
|
2021-01-03 16:43:34 +03:00
|
|
|
|
|
|
|
value := reflect.ValueOf(obj)
|
|
|
|
switch value.Kind() {
|
|
|
|
case reflect.Ptr:
|
|
|
|
return v.ValidateStruct(value.Elem().Interface())
|
|
|
|
case reflect.Struct:
|
|
|
|
return v.validateStruct(obj)
|
|
|
|
case reflect.Slice, reflect.Array:
|
|
|
|
count := value.Len()
|
|
|
|
validateRet := make(sliceValidateError, 0)
|
|
|
|
for i := 0; i < count; i++ {
|
|
|
|
if err := v.ValidateStruct(value.Index(i).Interface()); err != nil {
|
|
|
|
validateRet = append(validateRet, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(validateRet) == 0 {
|
|
|
|
return nil
|
2015-05-31 17:30:00 +03:00
|
|
|
}
|
2021-01-03 16:43:34 +03:00
|
|
|
return validateRet
|
|
|
|
default:
|
|
|
|
return nil
|
2015-05-31 17:18:50 +03:00
|
|
|
}
|
2021-01-03 16:43:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// validateStruct receives struct type
|
|
|
|
func (v *defaultValidator) validateStruct(obj interface{}) error {
|
|
|
|
v.lazyinit()
|
|
|
|
return v.validate.Struct(obj)
|
2015-05-31 17:18:50 +03:00
|
|
|
}
|
|
|
|
|
2018-03-29 09:33:07 +03:00
|
|
|
// Engine returns the underlying validator engine which powers the default
|
|
|
|
// Validator instance. This is useful if you want to register custom validations
|
|
|
|
// or struct level validations. See validator GoDoc for more info -
|
2021-05-26 13:46:13 +03:00
|
|
|
// https://pkg.go.dev/github.com/go-playground/validator/v10
|
2018-03-29 09:33:07 +03:00
|
|
|
func (v *defaultValidator) Engine() interface{} {
|
2017-08-27 10:37:39 +03:00
|
|
|
v.lazyinit()
|
2018-03-29 09:33:07 +03:00
|
|
|
return v.validate
|
2017-08-27 10:37:39 +03:00
|
|
|
}
|
|
|
|
|
2015-05-31 17:18:50 +03:00
|
|
|
func (v *defaultValidator) lazyinit() {
|
|
|
|
v.once.Do(func() {
|
2019-09-05 16:39:56 +03:00
|
|
|
v.validate = validator.New()
|
|
|
|
v.validate.SetTagName("binding")
|
2015-05-31 17:18:50 +03:00
|
|
|
})
|
|
|
|
}
|