-
Notifications
You must be signed in to change notification settings - Fork 48
/
validator.go
461 lines (405 loc) · 9.97 KB
/
validator.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package ucfg
import (
"fmt"
"reflect"
"regexp"
"strconv"
"strings"
"time"
)
// Validator interface provides additional validation support to Unpack. The
// Validate method will be executed for any type passed directly or indirectly to
// Unpack.
//
// If Validate fails with an error message, Unpack will add some
// context - like setting being accessed and file setting was read from - to the
// error message before returning the actual error.
type Validator interface {
Validate() error
}
// ValidatorCallback is the type of optional validator tags to be registered via
// RegisterValidator.
type ValidatorCallback func(interface{}, string) error
type validatorTag struct {
name string
cb ValidatorCallback
param string
}
var (
validators = map[string]ValidatorCallback{}
)
func init() {
initRegisterValidator("nonzero", validateNonZero)
initRegisterValidator("positive", validatePositive)
initRegisterValidator("min", validateMin)
initRegisterValidator("max", validateMax)
initRegisterValidator("required", validateRequired)
}
func initRegisterValidator(name string, cb ValidatorCallback) {
if err := RegisterValidator(name, cb); err != nil {
panic("Duplicate validator: " + name)
}
}
// RegisterValidator adds a new validator option to the "validate" struct tag.
// The callback will be executed when unpacking into a struct field.
func RegisterValidator(name string, cb ValidatorCallback) error {
if _, exists := validators[name]; exists {
return ErrDuplicateValidator
}
validators[name] = cb
return nil
}
func parseValidatorTags(tag string) ([]validatorTag, error) {
if tag == "" {
return nil, nil
}
lst := strings.Split(tag, ",")
if len(lst) == 0 {
return nil, nil
}
tags := make([]validatorTag, 0, len(lst))
for _, cfg := range lst {
v := strings.SplitN(cfg, "=", 2)
name := strings.Trim(v[0], " \t\r\n")
cb := validators[name]
if cb == nil {
return nil, fmt.Errorf("unknown validator '%v'", name)
}
param := ""
if len(v) == 2 {
param = strings.Trim(v[1], " \t\r\n")
}
tags = append(tags, validatorTag{name: name, cb: cb, param: param})
}
return tags, nil
}
func tryValidate(val reflect.Value) error {
t := val.Type()
var validator Validator
if (t.Kind() == reflect.Ptr || t.Kind() == reflect.Interface) && val.IsNil() {
return nil
}
if t.Implements(tValidator) {
validator = val.Interface().(Validator)
} else if reflect.PtrTo(t).Implements(tValidator) {
val = pointerize(reflect.PtrTo(t), t, val)
validator = val.Interface().(Validator)
}
if validator == nil {
return nil
}
return validator.Validate()
}
func runValidators(val interface{}, validators []validatorTag) error {
if validators == nil {
return nil
}
for _, tag := range validators {
if err := tag.cb(val, tag.param); err != nil {
return err
}
}
return nil
}
func tryRecursiveValidate(val reflect.Value, opts *options, validators []validatorTag) error {
var curr interface{}
if val.IsValid() {
curr = val.Interface()
}
if err := runValidators(curr, validators); err != nil {
return err
}
if !val.IsValid() {
return nil
}
t := val.Type()
if (t.Kind() == reflect.Ptr || t.Kind() == reflect.Interface) && val.IsNil() {
return nil
}
var err error
switch chaseValue(val).Kind() {
case reflect.Struct:
err = validateStruct(val, opts)
case reflect.Map:
err = validateMap(val, opts)
case reflect.Array, reflect.Slice:
err = validateArray(val, opts)
}
if err != nil {
return err
}
return tryValidate(val)
}
func validateStruct(val reflect.Value, opts *options) error {
val = chaseValue(val)
numField := val.NumField()
for i := 0; i < numField; i++ {
fInfo, skip, err := accessField(val, i, opts)
if err != nil {
return err
}
if skip {
continue
}
if err := tryRecursiveValidate(fInfo.value, fInfo.options, fInfo.validatorTags); err != nil {
return err
}
}
return nil
}
func validateMap(val reflect.Value, opts *options) error {
for _, key := range val.MapKeys() {
if err := tryRecursiveValidate(val.MapIndex(key), opts, nil); err != nil {
return err
}
}
return nil
}
func validateArray(val reflect.Value, opts *options) error {
for i := 0; i < val.Len(); i++ {
if err := tryRecursiveValidate(val.Index(i), opts, nil); err != nil {
return err
}
}
return nil
}
// validateNonZero implements the `nonzero` validation tag.
// If nonzero is set, the validator is only run if field is present in config.
// It checks for numbers and durations to be != 0, and for strings/arrays/slices
// not being empty.
func validateNonZero(v interface{}, name string) error {
if v == nil {
return nil
}
if d, ok := v.(time.Duration); ok {
if d == 0 {
return ErrZeroValue
}
return nil
}
val := chaseValue(reflect.ValueOf(v))
switch val.Kind() {
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
if val.Int() != 0 {
return nil
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
if val.Uint() != 0 {
return nil
}
case reflect.Float32, reflect.Float64:
if val.Float() != 0 {
return nil
}
default:
return validateNonEmpty(v, name)
}
return ErrZeroValue
}
func validatePositive(v interface{}, _ string) error {
if v == nil {
return nil
}
if d, ok := v.(time.Duration); ok {
if d < 0 {
return ErrNegative
}
return nil
}
val := reflect.ValueOf(v)
switch val.Kind() {
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
if val.Int() >= 0 {
return nil
}
case reflect.Float32, reflect.Float64:
if val.Float() >= 0 {
return nil
}
default:
return nil
}
return ErrNegative
}
func validateMin(v interface{}, param string) error {
if v == nil {
return nil
}
if d, ok := v.(time.Duration); ok {
min, err := param2Duration(param)
if err != nil {
return err
}
if min > d {
return fmt.Errorf("requires duration >= %v", param)
}
return nil
}
val := reflect.ValueOf(v)
switch val.Kind() {
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
min, err := strconv.ParseInt(param, 0, 64)
if err != nil {
return err
}
if val.Int() >= min {
return nil
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
min, err := strconv.ParseUint(param, 0, 64)
if err != nil {
return err
}
if val.Uint() >= min {
return nil
}
case reflect.Float32, reflect.Float64:
min, err := strconv.ParseFloat(param, 64)
if err != nil {
return err
}
if val.Float() >= min {
return nil
}
default:
return nil
}
return fmt.Errorf("requires value >= %v", param)
}
func validateMax(v interface{}, param string) error {
if v == nil {
return nil
}
if d, ok := v.(time.Duration); ok {
max, err := param2Duration(param)
if err != nil {
return err
}
if max < d {
return fmt.Errorf("requires duration <= %v", param)
}
return nil
}
val := reflect.ValueOf(v)
switch val.Kind() {
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
max, err := strconv.ParseInt(param, 0, 64)
if err != nil {
return err
}
if val.Int() <= max {
return nil
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
max, err := strconv.ParseUint(param, 0, 64)
if err != nil {
return err
}
if val.Uint() <= max {
return nil
}
case reflect.Float32, reflect.Float64:
max, err := strconv.ParseFloat(param, 64)
if err != nil {
return err
}
if val.Float() <= max {
return nil
}
default:
return nil
}
return fmt.Errorf("requires value <= %v", param)
}
// validateRequired implements the `required` validation tag.
// If a field is required, it must be present in the config.
// If field is a string, regex or slice its length must be > 0.
func validateRequired(v interface{}, name string) error {
if v == nil {
return ErrRequired
}
val := reflect.ValueOf(v)
if val.Kind() == reflect.Ptr && val.IsNil() {
return ErrRequired
}
if isInt(val.Kind()) || isUint(val.Kind()) || isFloat(val.Kind()) {
if err := validateNonZero(v, name); err != nil {
return ErrRequired
}
return nil
}
if err := validateNonEmptyWithAllowNil(v, name, false); err != nil {
return err
}
return nil
}
func validateNonEmpty(v interface{}, name string) error {
return validateNonEmptyWithAllowNil(v, name, true)
}
func validateNonEmptyWithAllowNil(v interface{}, _ string, allowNil bool) error {
if s, ok := v.(string); ok {
if s == "" {
return ErrStringEmpty
}
return nil
}
if r, ok := v.(regexp.Regexp); ok {
if r.String() == "" {
return ErrRegexEmpty
}
return nil
}
val := reflect.ValueOf(v)
if val.Kind() == reflect.Array || val.Kind() == reflect.Slice {
if val.IsNil() {
if allowNil {
return nil
}
return ErrRequired
}
if val.Len() == 0 {
return ErrArrayEmpty
}
return nil
}
if val.Kind() == reflect.Map {
if val.IsNil() {
if allowNil {
return nil
}
return ErrRequired
}
if val.Len() == 0 {
return ErrMapEmpty
}
return nil
}
return nil
}
func param2Duration(param string) (time.Duration, error) {
d, err := time.ParseDuration(param)
if err == nil {
return d, err
}
tmp, floatErr := strconv.ParseFloat(param, 64)
if floatErr != nil {
return 0, err
}
return time.Duration(tmp * float64(time.Second)), nil
}