forked from kataras/iris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
validation_error.go
165 lines (139 loc) · 4.57 KB
/
validation_error.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package errors
import (
"reflect"
"strconv"
"strings"
)
// ValidationError is an interface which IF
// it custom error types completes, then
// it can by mapped to a validation error.
//
// A validation error(s) can be given by ErrorCodeName's Validation or Err methods.
//
// Example can be found at:
//
// https://github.com/kataras/iris/tree/master/_examples/routing/http-wire-errors/custom-validation-errors
type ValidationError interface {
error
GetField() string
GetValue() interface{}
GetReason() string
}
type ValidationErrors []ValidationError
func (errs ValidationErrors) Error() string {
var buf strings.Builder
for i, err := range errs {
buf.WriteByte('[')
buf.WriteString(strconv.Itoa(i))
buf.WriteByte(']')
buf.WriteByte(' ')
buf.WriteString(err.Error())
if i < len(errs)-1 {
buf.WriteByte(',')
buf.WriteByte(' ')
}
}
return buf.String()
}
// ValidationErrorMapper is the interface which
// custom validation error mappers should complete.
type ValidationErrorMapper interface {
// The implementation must check the given "err"
// and make decision if it's an error of validation
// and if so it should return the value (err or another one)
// and true as the last output argument.
//
// Outputs:
// 1. the validation error(s) value
// 2. true if the interface{} is an array, otherise false
// 3. true if it's a validation error or false if not.
MapValidationErrors(err error) (interface{}, bool, bool)
}
// ValidationErrorMapperFunc is an "ValidationErrorMapper" but in type of a function.
type ValidationErrorMapperFunc func(err error) (interface{}, bool, bool)
// MapValidationErrors completes the "ValidationErrorMapper" interface.
func (v ValidationErrorMapperFunc) MapValidationErrors(err error) (interface{}, bool, bool) {
return v(err)
}
// read-only at serve time, holds the validation error mappers.
var validationErrorMappers []ValidationErrorMapper = []ValidationErrorMapper{
ValidationErrorMapperFunc(func(err error) (interface{}, bool, bool) {
switch e := err.(type) {
case ValidationError:
return e, false, true
case ValidationErrors:
return e, true, true
default:
return nil, false, false
}
}),
}
// RegisterValidationErrorMapper registers a custom
// implementation of validation error mapping.
// Call it on program initilization, main() or init() functions.
func RegisterValidationErrorMapper(m ValidationErrorMapper) {
validationErrorMappers = append(validationErrorMappers, m)
}
// RegisterValidationErrorMapperFunc registers a custom
// function implementation of validation error mapping.
// Call it on program initilization, main() or init() functions.
func RegisterValidationErrorMapperFunc(fn func(err error) (interface{}, bool, bool)) {
validationErrorMappers = append(validationErrorMappers, ValidationErrorMapperFunc(fn))
}
type validationErrorTypeMapper struct {
types []reflect.Type
}
var _ ValidationErrorMapper = (*validationErrorTypeMapper)(nil)
func (v *validationErrorTypeMapper) MapValidationErrors(err error) (interface{}, bool, bool) {
errType := reflect.TypeOf(err)
for _, typ := range v.types {
if equalTypes(errType, typ) {
return err, false, true
}
// a slice is given but the underline type is registered.
if errType.Kind() == reflect.Slice {
if equalTypes(errType.Elem(), typ) {
return err, true, true
}
}
}
return nil, false, false
}
func equalTypes(err reflect.Type, binding reflect.Type) bool {
return err == binding
// return binding.AssignableTo(err)
}
// NewValidationErrorTypeMapper returns a validation error mapper
// which compares the error with one or more of the given "types",
// through reflection. Each of the given types MUST complete the
// standard error type, so it can be passed through the error code.
func NewValidationErrorTypeMapper(types ...error) ValidationErrorMapper {
typs := make([]reflect.Type, 0, len(types))
for _, typ := range types {
v, ok := typ.(reflect.Type)
if !ok {
v = reflect.TypeOf(typ)
}
typs = append(typs, v)
}
return &validationErrorTypeMapper{
types: typs,
}
}
// AsValidationErrors reports wheether the given "err" is a type of validation error(s).
// Its behavior can be modified before serve-time
// through the "RegisterValidationErrorMapper" function.
func AsValidationErrors(err error) (interface{}, bool) {
if err == nil {
return nil, false
}
for _, m := range validationErrorMappers {
if errs, isArray, ok := m.MapValidationErrors(err); ok {
if !isArray { // ensure always-array on Validation field of the http error.
return []interface{}{errs}, true
}
return errs, true
}
}
return nil, false
}