mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
55 lines
964 B
Go
55 lines
964 B
Go
package validate_bridge
|
|
|
|
import (
|
|
"reflect"
|
|
"sync"
|
|
|
|
"github.com/gin-gonic/gin/binding"
|
|
"gopkg.in/go-playground/validator.v9"
|
|
)
|
|
|
|
type DefaultValidator struct {
|
|
once sync.Once
|
|
validate *validator.Validate
|
|
}
|
|
|
|
var _ binding.StructValidator = &DefaultValidator{validate: validator.New()}
|
|
|
|
func (v *DefaultValidator) ValidateStruct(obj interface{}) error {
|
|
if kindOfData(obj) == reflect.Struct {
|
|
|
|
v.lazyinit()
|
|
|
|
if err := v.validate.Struct(obj); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (v *DefaultValidator) Engine() interface{} {
|
|
v.lazyinit()
|
|
return v.validate
|
|
}
|
|
|
|
func (v *DefaultValidator) lazyinit() {
|
|
v.once.Do(func() {
|
|
v.validate = validator.New()
|
|
v.validate.SetTagName("binding")
|
|
|
|
// add any custom validations etc. here
|
|
})
|
|
}
|
|
|
|
func kindOfData(data interface{}) reflect.Kind {
|
|
|
|
value := reflect.ValueOf(data)
|
|
valueType := value.Kind()
|
|
|
|
if valueType == reflect.Ptr {
|
|
valueType = value.Elem().Kind()
|
|
}
|
|
return valueType
|
|
}
|