-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.go
More file actions
150 lines (130 loc) · 3.67 KB
/
Copy pathmap.go
File metadata and controls
150 lines (130 loc) · 3.67 KB
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
package validate
import (
"fmt"
)
func Map[K comparable, V any](name string, value map[K]V) MapValidator[K, V] {
return MapValidator[K, V]{
name: name,
value: value,
}
}
type MapValidator[K comparable, V any] struct {
name string
value map[K]V
}
// Key runs the validators on the value of the key.
// If the key does not exist, it will return an unknown.field violation.
func (v MapValidator[K, V]) Key(field string, key K, validators ...Validator[V]) error {
value, ok := v.value[key]
if !ok {
return Error{
Path: v.name + "." + field,
ExactPath: v.name + "." + fmt.Sprintf("%v", key) + "." + field,
Violations: []Violation{{Code: CodeUnknownField}},
Args: Args{"key": key},
}
}
var verrs Errors
violations, err := validate(value, validators...)
if err != nil {
// It could be that the validators returned an Error or Errors. If so we map it with the correct paths.
if isValidationError(err) {
switch err := err.(type) {
case Error:
verrs = verrs.merge(prefixMapError(err, v.name, field, key))
case Errors:
verrs = verrs.mergeAll(err.mapErrors(func(err Error) Error {
return prefixMapError(err, v.name, field, key)
}))
}
} else {
return err
}
}
if len(violations) > 0 {
verrs = append(verrs, Error{
Path: v.name + "." + field,
ExactPath: v.name + "." + fmt.Sprintf("%v", key) + "." + field,
Violations: violations,
Args: Args{"key": key},
})
}
if len(verrs) == 0 {
return nil
}
return verrs
}
// Keys runs the validators on all keys.
func (v MapValidator[K, V]) Keys(field string, validators ...Validator[K]) error {
var verrs Errors
for key := range v.value {
violations, err := validate(key, validators...)
if err != nil {
// It could be that the validators returned an Error or Errors. If so we map it with the correct paths.
if isValidationError(err) {
switch err := err.(type) {
case Error:
verrs = verrs.merge(prefixMapError(err, v.name, field, key))
case Errors:
verrs = verrs.mergeAll(err.mapErrors(func(err Error) Error {
return prefixMapError(err, v.name, field, key)
}))
}
} else {
return err
}
}
if len(violations) > 0 {
verrs = append(verrs, Error{
Path: v.name + "." + field,
ExactPath: v.name + "." + fmt.Sprintf("%v", key) + "." + field,
Violations: violations,
Args: Args{"key": key},
})
}
}
if len(verrs) == 0 {
return nil
}
return verrs
}
// Values runs the validators on all values.
func (v MapValidator[K, V]) Values(field string, validators ...Validator[V]) error {
var verrs Errors
for key, value := range v.value {
violations, err := validate(value, validators...)
if err != nil {
// It could be that the validators returned an Error or Errors. If so we map it with the correct paths.
if isValidationError(err) {
switch err := err.(type) {
case Error:
verrs = verrs.merge(prefixMapError(err, v.name, field, key))
case Errors:
verrs = verrs.mergeAll(err.mapErrors(func(err Error) Error {
return prefixMapError(err, v.name, field, key)
}))
}
} else {
return err
}
}
if len(violations) > 0 {
verrs = append(verrs, Error{
Path: v.name + "." + field,
ExactPath: v.name + "." + fmt.Sprintf("%v", key) + "." + field,
Violations: violations,
Args: Args{"key": key},
})
}
}
if len(verrs) == 0 {
return nil
}
return verrs
}
func prefixMapError(err Error, name string, field string, key any) Error {
err.Path = prefixPath(err.Path, name+"."+field)
err.ExactPath = prefixPath(err.ExactPath, name+"."+fmt.Sprintf("%v", key)+"."+field)
err.Args = err.Args.Add("key", key)
return err
}