mirror of
https://github.com/yusing/godoxy.git
synced 2026-02-18 08:27:43 +01:00
This is a large-scale refactoring across the codebase that replaces the custom `gperr.Error` type with Go's standard `error` interface. The changes include: - Replacing `gperr.Error` return types with `error` in function signatures - Using `errors.New()` and `fmt.Errorf()` instead of `gperr.New()` and `gperr.Errorf()` - Using `%w` format verb for error wrapping instead of `.With()` method - Replacing `gperr.Subject()` calls with `gperr.PrependSubject()` - Converting error logging from `gperr.Log*()` functions to zerolog's `.Err().Msg()` pattern - Update NewLogger to handle multiline error message - Updating `goutils` submodule to latest commit This refactoring aligns with Go idioms and removes the dependency on custom error handling abstractions in favor of standard library patterns.
61 lines
1.3 KiB
Go
61 lines
1.3 KiB
Go
package serialization
|
|
|
|
import (
|
|
"errors"
|
|
"reflect"
|
|
|
|
"github.com/go-playground/validator/v10"
|
|
)
|
|
|
|
var validate = validator.New()
|
|
|
|
var ErrValidationError = errors.New("validation error")
|
|
|
|
func Validator() *validator.Validate {
|
|
return validate
|
|
}
|
|
|
|
func MustRegisterValidation(tag string, fn validator.Func) {
|
|
err := validate.RegisterValidation(tag, fn)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
type CustomValidator interface {
|
|
Validate() error
|
|
}
|
|
|
|
var validatorType = reflect.TypeFor[CustomValidator]()
|
|
|
|
func ValidateWithCustomValidator(v reflect.Value) error {
|
|
vt := v.Type()
|
|
if v.Kind() == reflect.Pointer {
|
|
elemType := vt.Elem()
|
|
if vt.Implements(validatorType) {
|
|
if v.IsNil() {
|
|
return reflect.New(elemType).Interface().(CustomValidator).Validate()
|
|
}
|
|
return v.Interface().(CustomValidator).Validate()
|
|
}
|
|
if elemType.Implements(validatorType) {
|
|
return v.Elem().Interface().(CustomValidator).Validate()
|
|
}
|
|
} else {
|
|
if vt.PkgPath() != "" { // not a builtin type
|
|
// prioritize pointer method
|
|
if v.CanAddr() {
|
|
vAddr := v.Addr()
|
|
if vAddr.Type().Implements(validatorType) {
|
|
return vAddr.Interface().(CustomValidator).Validate()
|
|
}
|
|
}
|
|
// fallback to value method
|
|
if vt.Implements(validatorType) {
|
|
return v.Interface().(CustomValidator).Validate()
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|