-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbuiltin.go
837 lines (782 loc) · 20.6 KB
/
builtin.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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
package validating
/*import (
"regexp"
"strconv"
"time"
"unicode/utf8"
)
*/
// Func is an adapter to allow the use of ordinary functions as
// validators. If f is a function with the appropriate signature,
// Func(f) is a Validator that calls f.
type Func[T any] func(field *Field[T]) Errors
// Validate calls f(field).
func (f Func[T]) Validate(field *Field[T]) Errors {
return f(field)
}
// validateSchema do the validation per the given schema, which is associated
// with the given field.
func validateSchema[T any](schema Schema[T], field *Field[T], prefixFunc func(string) string) (errs Errors) {
prefix := prefixFunc(field.Name)
for f, v := range schema {
if prefix != "" {
name := prefix
if f.Name != "" {
name = name + "." + f.Name
}
f = F[T](name, f.Value)
}
if err := v.Validate(f); err != nil {
errs.Extend(err)
}
}
return
}
// Schema is a field mapping, which defines
// the corresponding validator for each field.
type Schema[T any] map[*Field[T]]Validator[T]
// Validate validates fields per the given according to the schema.
func (s Schema[T]) Validate(field *Field[T]) (errs Errors) {
return validateSchema[T](s, field, func(name string) string {
return name
})
}
// Value is a shortcut function used to create a schema for a simple value.
func Value[T any](value T, validator Validator[T]) Schema[T] {
return Schema[T]{
F[T]("", value): validator,
}
}
/*
// Map is a composite validator factory used to create a validator, which will
// do the validation per the schemas associated with a map.
func Map(f func() map[string]Schema) Validator {
schemas := f()
return Func(func(field Field) (errs Errors) {
for k, s := range schemas {
err := validateSchema(s, field, func(name string) string {
return name + "[" + k + "]"
})
if err != nil {
errs.Extend(err)
}
}
return
})
}
// Slice is a composite validator factory used to create a validator, which will
// do the validation per the schemas associated with a slice.
func Slice(f func() []Schema) Validator {
schemas := f()
return Func(func(field Field) (errs Errors) {
for i, s := range schemas {
err := validateSchema(s, field, func(name string) string {
return name + "[" + strconv.Itoa(i) + "]"
})
if err != nil {
errs.Extend(err)
}
}
return
})
}
// Array is an alias of Slice.
var Array = Slice
*/
// MessageValidator is a validator that allows users to customize the INVALID
// error message by calling Msg().
type MessageValidator[T any] struct {
Message string
Validator Validator[T]
}
// Msg sets the INVALID error message.
func (mv *MessageValidator[T]) Msg(msg string) *MessageValidator[T] {
if msg != "" {
mv.Message = msg
}
return mv
}
// Validate delegates the actual validation to its inner validator.
func (mv *MessageValidator[T]) Validate(field *Field[T]) Errors {
return mv.Validator.Validate(field)
}
/*
// All is a composite validator factory used to create a validator, which will
// succeed only when all sub-validators succeed.
func All(validators ...Validator) Validator {
return Func(func(field Field) Errors {
for _, v := range validators {
if errs := v.Validate(field); errs != nil {
return errs
}
}
return nil
})
}
// And is an alias of All.
var And = All
// AnyValidator is a validator that allows users to change the returned errors
// by calling LastError().
type AnyValidator struct {
returnLastError bool // Whether to return the last error if all validators fail.
validators []Validator
}
// Any is a composite validator factory used to create a validator, which will
// succeed as long as any sub-validator succeeds.
func Any(validators ...Validator) *AnyValidator {
return &AnyValidator{validators: validators}
}
// LastError makes AnyValidator return the error from the last validator
// if all inner validators fail.
func (av *AnyValidator) LastError() *AnyValidator {
av.returnLastError = true
return av
}
// Validate delegates the actual validation to its inner validators.
func (av *AnyValidator) Validate(field Field) Errors {
var errs Errors
var lastErr Errors
for _, v := range av.validators {
lastErr = v.Validate(field)
if lastErr == nil {
return nil
}
errs.Extend(lastErr)
}
if av.returnLastError {
return lastErr
}
return errs
}
// Or is an alias of Any.
var Or = Any
// not is a helper function to negate the given validator.
func not(validatorName string, validator Validator, field Field, msg string) Errors {
errs := validator.Validate(field)
if len(errs) == 0 {
return NewErrors(field.Name, ErrInvalid, msg)
}
switch errs[0].Kind() {
case ErrUnsupported:
return NewErrors(field.Name, ErrUnsupported, "cannot use validator `"+validatorName+"`")
case ErrUnrecognized:
return NewErrors(field.Name, ErrUnrecognized, "of an unrecognized type")
default:
return nil
}
}
// merge merges multiple errors, which occur from the composite validator, into one error.
func merge(validatorName string, validator Validator, field Field, msg string) Errors {
errs := validator.Validate(field)
if len(errs) == 0 {
return nil
}
switch errs[0].Kind() {
case ErrUnsupported:
return NewErrors(field.Name, ErrUnsupported, "cannot use validator `"+validatorName+"`")
case ErrUnrecognized:
return NewErrors(field.Name, ErrUnrecognized, "of an unrecognized type")
default:
return NewErrors(field.Name, ErrInvalid, msg)
}
}
// Not is a composite validator factory used to create a validator, which will
// succeed when the given validator fails.
func Not(validator Validator) (mv *MessageValidator) {
mv = &MessageValidator{
Message: "is invalid",
Validator: Func(func(field Field) Errors {
errs := validator.Validate(field)
if len(errs) == 0 {
return NewErrors(field.Name, ErrInvalid, mv.Message)
}
for _, err := range errs {
switch err.Kind() {
case ErrUnsupported, ErrUnrecognized:
return []Error{err}
}
}
return nil
}),
}
return
}
// Lazy is a composite validator factory used to create a validator, which will
// call f only as needed, to delegate the actual validation to
// the validator returned by f.
func Lazy(f func() Validator) Validator {
return Func(func(field Field) Errors {
return f().Validate(field)
})
}
// Assert is a leaf validator factory used to create a validator, which will
// succeed only when the boolean expression evaluates to true.
func Assert(b bool) (mv *MessageValidator) {
mv = &MessageValidator{
Message: "is invalid",
Validator: Func(func(field Field) Errors {
if !b {
return NewErrors(field.Name, ErrInvalid, mv.Message)
}
return nil
}),
}
return
}
*/
// Is is a leaf validator factory used to create a validator, which will
// succeed when the predicate function f returns true for the field's value.
func Is[T any](f func(T) bool) (mv *MessageValidator[T]) {
mv = &MessageValidator[T]{
Message: "is invalid",
Validator: Func[T](func(field *Field[T]) Errors {
if !f(field.Value) {
return NewErrors(field.Name, ErrInvalid, mv.Message)
}
return nil
}),
}
return
}
/*
// Nonzero is a leaf validator factory used to create a validator, which will
// succeed when the field's value is nonzero.
func Nonzero() (mv *MessageValidator) {
mv = &MessageValidator{
Message: "is zero valued",
Validator: Func(func(field Field) Errors {
valid := false
switch t := field.ValuePtr.(type) {
case *uint8:
valid = *t != 0
case **uint8:
valid = *t != nil
case *[]uint8:
valid = len(*t) != 0
case *uint16:
valid = *t != 0
case **uint16:
valid = *t != nil
case *[]uint16:
valid = len(*t) != 0
case *uint32:
valid = *t != 0
case **uint32:
valid = *t != nil
case *[]uint32:
valid = len(*t) != 0
case *uint64:
valid = *t != 0
case **uint64:
valid = *t != nil
case *[]uint64:
valid = len(*t) != 0
case *int8:
valid = *t != 0
case **int8:
valid = *t != nil
case *[]int8:
valid = len(*t) != 0
case *int16:
valid = *t != 0
case **int16:
valid = *t != nil
case *[]int16:
valid = len(*t) != 0
case *int32:
valid = *t != 0
case **int32:
valid = *t != nil
case *[]int32:
valid = len(*t) != 0
case *int64:
valid = *t != 0
case **int64:
valid = *t != nil
case *[]int64:
valid = len(*t) != 0
case *float32:
valid = *t != 0
case **float32:
valid = *t != nil
case *[]float32:
valid = len(*t) != 0
case *float64:
valid = *t != 0
case **float64:
valid = *t != nil
case *[]float64:
valid = len(*t) != 0
case *uint:
valid = *t != 0
case **uint:
valid = *t != nil
case *[]uint:
valid = len(*t) != 0
case *int:
valid = *t != 0
case **int:
valid = *t != nil
case *[]int:
valid = len(*t) != 0
case *bool:
valid = *t
case **bool:
valid = *t != nil
case *[]bool:
valid = len(*t) != 0
case *string:
valid = *t != ""
case **string:
valid = *t != nil
case *[]string:
valid = len(*t) != 0
case *time.Time:
valid = !t.IsZero()
case **time.Time:
valid = *t != nil
case *[]time.Time:
valid = len(*t) != 0
case *time.Duration:
valid = *t != 0
case **time.Duration:
valid = *t != nil
case *[]time.Duration:
valid = len(*t) != 0
default:
return NewErrors(field.Name, ErrUnrecognized, "of an unrecognized type")
}
if !valid {
return NewErrors(field.Name, ErrInvalid, mv.Message)
}
return nil
}),
}
return
}
// Zero is a leaf validator factory used to create a validator, which will
// succeed when the field's value is zero.
func Zero() (mv *MessageValidator) {
mv = &MessageValidator{
Message: "is nonzero",
Validator: Func(func(field Field) Errors {
return not("Zero", Nonzero(), field, mv.Message)
}),
}
return
}
// Len is a leaf validator factory used to create a validator, which will
// succeed when the field's length is between min and max.
func Len(min, max int) (mv *MessageValidator) {
mv = &MessageValidator{
Message: "with an invalid length",
Validator: Func(func(field Field) Errors {
valid := false
switch t := field.ValuePtr.(type) {
case *uint8, **uint8, *uint16, **uint16,
*uint32, **uint32, *uint64, **uint64,
*int8, **int8, *int16, **int16,
*int32, **int32, *int64, **int64,
*float32, **float32, *float64, **float64,
*uint, **uint, *int, **int,
*bool, **bool,
**string,
*time.Time, **time.Time,
**time.Duration:
return NewErrors(field.Name, ErrUnsupported, "cannot use validator `Len`")
case *[]uint8:
l := len(*t)
valid = l >= min && l <= max
case *[]uint16:
l := len(*t)
valid = l >= min && l <= max
case *[]uint32:
l := len(*t)
valid = l >= min && l <= max
case *[]uint64:
l := len(*t)
valid = l >= min && l <= max
case *[]int8:
l := len(*t)
valid = l >= min && l <= max
case *[]int16:
l := len(*t)
valid = l >= min && l <= max
case *[]int32:
l := len(*t)
valid = l >= min && l <= max
case *[]int64:
l := len(*t)
valid = l >= min && l <= max
case *[]float32:
l := len(*t)
valid = l >= min && l <= max
case *[]float64:
l := len(*t)
valid = l >= min && l <= max
case *[]uint:
l := len(*t)
valid = l >= min && l <= max
case *[]int:
l := len(*t)
valid = l >= min && l <= max
case *[]bool:
l := len(*t)
valid = l >= min && l <= max
case *string:
l := len(*t)
valid = l >= min && l <= max
case *[]string:
l := len(*t)
valid = l >= min && l <= max
case *[]time.Time:
l := len(*t)
valid = l >= min && l <= max
case *time.Duration:
valid = *t >= time.Duration(min) && *t <= time.Duration(max)
case *[]time.Duration:
l := len(*t)
valid = l >= min && l <= max
default:
return NewErrors(field.Name, ErrUnrecognized, "of an unrecognized type")
}
if !valid {
return NewErrors(field.Name, ErrInvalid, mv.Message)
}
return nil
}),
}
return
}
// RuneCount is a leaf validator factory used to create a validator, which will
// succeed when the number of runes in the field's value is between min and max.
func RuneCount(min, max int) (mv *MessageValidator) {
mv = &MessageValidator{
Message: "the number of runes is not between the given range",
Validator: Func(func(field Field) Errors {
valid := false
switch t := field.ValuePtr.(type) {
case *string:
l := utf8.RuneCountInString(*t)
valid = l >= min && l <= max
case *[]byte:
l := utf8.RuneCount(*t)
valid = l >= min && l <= max
default:
return NewErrors(field.Name, ErrUnsupported, "cannot use validator `RuneCount`")
}
if !valid {
return NewErrors(field.Name, ErrInvalid, mv.Message)
}
return nil
}),
}
return
}
*/
// Eq is a leaf validator factory used to create a validator, which will
// succeed when the field's value equals the given value.
func Eq[T comparable](value T) (mv *MessageValidator[T]) {
mv = &MessageValidator[T]{
Message: "does not equal the given value",
Validator: Func[T](func(field *Field[T]) Errors {
if field.Value != value {
return NewErrors(field.Name, ErrInvalid, mv.Message)
}
return nil
}),
}
return
}
/*
// Ne is a leaf validator factory used to create a validator, which will
// succeed when the field's value does not equal the given value.
func Ne(value interface{}) (mv *MessageValidator) {
mv = &MessageValidator{
Message: "equals the given value",
Validator: Func(func(field Field) Errors {
return not("Ne", Eq(value), field, mv.Message)
}),
}
return
}
// Gt is a leaf validator factory used to create a validator, which will
// succeed when the field's value is greater than the given value.
func Gt(value interface{}) (mv *MessageValidator) {
mv = &MessageValidator{
Message: "is lower than or equal to given value",
Validator: Func(func(field Field) Errors {
valid := false
switch t := field.ValuePtr.(type) {
case **uint8, *[]uint8, **uint16, *[]uint16,
**uint32, *[]uint32, **uint64, *[]uint64,
**int8, *[]int8, **int16, *[]int16,
**int32, *[]int32, **int64, *[]int64,
**float32, *[]float32, **float64, *[]float64,
**uint, *[]uint, **int, *[]int,
*bool, **bool, *[]bool,
**string, *[]string,
**time.Time, *[]time.Time,
**time.Duration, *[]time.Duration:
return NewErrors(field.Name, ErrUnsupported, "cannot use validator `Gt`")
case *uint8:
valid = *t > value.(uint8)
case *uint16:
valid = *t > value.(uint16)
case *uint32:
valid = *t > value.(uint32)
case *uint64:
valid = *t > value.(uint64)
case *int8:
valid = *t > value.(int8)
case *int16:
valid = *t > value.(int16)
case *int32:
valid = *t > value.(int32)
case *int64:
valid = *t > value.(int64)
case *float32:
valid = *t > value.(float32)
case *float64:
valid = *t > value.(float64)
case *uint:
valid = *t > value.(uint)
case *int:
valid = *t > value.(int)
case *string:
valid = *t > value.(string)
case *time.Time:
valid = (*t).After(value.(time.Time))
case *time.Duration:
valid = *t > value.(time.Duration)
default:
return NewErrors(field.Name, ErrUnrecognized, "of an unrecognized type")
}
if !valid {
return NewErrors(field.Name, ErrInvalid, mv.Message)
}
return nil
}),
}
return
}
// Gte is a leaf validator factory used to create a validator, which will
// succeed when the field's value is greater than or equal to the given value.
func Gte(value interface{}) (mv *MessageValidator) {
mv = &MessageValidator{
Message: "is lower than given value",
Validator: Func(func(field Field) Errors {
return merge("Gte", Any(Gt(value), Eq(value)), field, mv.Message)
}),
}
return
}
// Lt is a leaf validator factory used to create a validator, which will
// succeed when the field's value is lower than the given value.
func Lt(value interface{}) (mv *MessageValidator) {
mv = &MessageValidator{
Message: "is greater than or equal to given value",
Validator: Func(func(field Field) Errors {
return not("Lt", Gte(value), field, mv.Message)
}),
}
return
}
// Lte is a leaf validator factory used to create a validator, which will
// succeed when the field's value is lower than or equal to the given value.
func Lte(value interface{}) (mv *MessageValidator) {
mv = &MessageValidator{
Message: "is greater than given value",
Validator: Func(func(field Field) Errors {
return not("Lte", Gt(value), field, mv.Message)
}),
}
return
}
// Range is a shortcut of `All(Gte(min), Lte(max))`.
func Range(min, max interface{}) (mv *MessageValidator) {
mv = &MessageValidator{
Message: "is not between given range",
Validator: Func(func(field Field) Errors {
return merge("Range", All(Gte(min), Lte(max)), field, mv.Message)
}),
}
return
}
// In is a leaf validator factory used to create a validator, which will
// succeed when the field's value is equal to one of the given values.
func In(values ...interface{}) (mv *MessageValidator) {
mv = &MessageValidator{
Message: "is not one of given values",
Validator: Func(func(field Field) Errors {
valid := false
switch t := field.ValuePtr.(type) {
case **uint8, *[]uint8, **uint16, *[]uint16,
**uint32, *[]uint32, **uint64, *[]uint64,
**int8, *[]int8, **int16, *[]int16,
**int32, *[]int32, **int64, *[]int64,
**float32, *[]float32, **float64, *[]float64,
**uint, *[]uint, **int, *[]int,
**bool, *[]bool,
**string, *[]string,
**time.Time, *[]time.Time,
**time.Duration, *[]time.Duration:
return NewErrors(field.Name, ErrUnsupported, "cannot use validator `In`")
case *uint8:
for _, value := range values {
if *t == value.(uint8) {
valid = true
break
}
}
case *uint16:
for _, value := range values {
if *t == value.(uint16) {
valid = true
break
}
}
case *uint32:
for _, value := range values {
if *t == value.(uint32) {
valid = true
break
}
}
case *uint64:
for _, value := range values {
if *t == value.(uint64) {
valid = true
break
}
}
case *int8:
for _, value := range values {
if *t == value.(int8) {
valid = true
break
}
}
case *int16:
for _, value := range values {
if *t == value.(int16) {
valid = true
break
}
}
case *int32:
for _, value := range values {
if *t == value.(int32) {
valid = true
break
}
}
case *int64:
for _, value := range values {
if *t == value.(int64) {
valid = true
break
}
}
case *float32:
for _, value := range values {
if *t == value.(float32) {
valid = true
break
}
}
case *float64:
for _, value := range values {
if *t == value.(float64) {
valid = true
break
}
}
case *uint:
for _, value := range values {
if *t == value.(uint) {
valid = true
break
}
}
case *int:
for _, value := range values {
if *t == value.(int) {
valid = true
break
}
}
case *bool:
for _, value := range values {
if *t == value.(bool) {
valid = true
break
}
}
case *string:
for _, value := range values {
if *t == value.(string) {
valid = true
break
}
}
case *time.Time:
for _, value := range values {
if (*t).Equal(value.(time.Time)) {
valid = true
break
}
}
case *time.Duration:
for _, value := range values {
if *t == value.(time.Duration) {
valid = true
break
}
}
default:
return NewErrors(field.Name, ErrUnrecognized, "of an unrecognized type")
}
if !valid {
return NewErrors(field.Name, ErrInvalid, mv.Message)
}
return nil
}),
}
return
}
// Nin is a leaf validator factory used to create a validator, which will
// succeed when the field's value is not equal to any of the given values.
func Nin(values ...interface{}) (mv *MessageValidator) {
mv = &MessageValidator{
Message: "is one of given values",
Validator: Func(func(field Field) Errors {
return not("Nin", In(values...), field, mv.Message)
}),
}
return
}
// Match is a leaf validator factory used to create a validator, which will
// succeed when the field's value matches the given regular expression.
func Match(re *regexp.Regexp) (mv *MessageValidator) {
mv = &MessageValidator{
Message: "does not match the given regular expression",
Validator: Func(func(field Field) Errors {
valid := false
switch t := field.ValuePtr.(type) {
case *string:
valid = re.MatchString(*t)
case *[]byte:
valid = re.Match(*t)
default:
return NewErrors(field.Name, ErrUnsupported, "cannot use validator `Match`")
}
if !valid {
return NewErrors(field.Name, ErrInvalid, mv.Message)
}
return nil
}),
}
return
}
*/