This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
validators.go
1269 lines (1112 loc) · 29.4 KB
/
validators.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
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package tavern
import (
"context"
"encoding/json"
"errors"
"fmt"
"net"
"reflect"
"regexp"
"strconv"
"strings"
"time"
)
var (
// ErrRequired is missing the required value.
ErrRequired = errors.New("tavern: missing required value")
// ErrLength is out of the length.
ErrLength = errors.New("tavern: out of length")
// ErrRange is out of the range.
ErrRange = errors.New("tavern: out of range")
// ErrDatetime is invalid datetime format.
ErrDatetime = errors.New("tavern: invalid datetime format")
// ErrEmail is invalid email format.
ErrEmail = errors.New("tavern: invalid email format")
// ErrInvalidJSON is invalid JSON.
ErrInvalidJSON = errors.New("tavern: invalid JSON")
// ErrInvalidHTML is invalid HTML.
ErrInvalidHTML = errors.New("tavern: invalid HTML")
// ErrInvalidPattern is invalid pattern.
ErrInvalidPattern = errors.New("invalid pattern")
// ErrAddress is unresolvable address.
ErrAddress = errors.New("tavern: unresolvable address")
// ErrURL is invalid url format.
ErrURL = errors.New("tavern: invalid url format")
// ErrJSON is invalid json format.
ErrJSON = errors.New("tavern: invalid json format")
)
var (
// ErrWrongType is passed a wrong value type to validator.
ErrWrongType = errors.New("tavern: passed wrong value type to validator")
)
// Key represents the keys in the context.
type Key int
const (
// KeyRequired returns true if the value was set to required. The validators can rely on the value with it's own logic.
KeyRequired Key = iota
)
// isNotRequiredAndZeroValue 表示這個欄位是不是非必要而且還零值。
func isNotRequiredAndZeroValue(ctx context.Context, v interface{}) bool {
_, ok := ctx.Value(KeyRequired).(bool)
return !ok && reflect.ValueOf(v).IsZero()
}
// WithRequired requires the value to not be a zero value (e.g. 0, "") nor an empty value.
func WithRequired() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
ctx = context.WithValue(ctx, KeyRequired, true)
value := reflect.ValueOf(v)
if value.IsZero() {
return ctx, ErrRequired
}
return ctx, nil
}
}
// WithLength requires the length of the value (e.g. slive, string, number) to be in a certian length. It counts the length of the number if the value was a number.
func WithLength(min, max int) Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
var err error
ctx, err = WithMinLength(min)(ctx, v)
if err != nil {
return ctx, err
}
ctx, err = WithMaxLength(max)(ctx, v)
if err != nil {
return ctx, err
}
return ctx, nil
}
}
// WithMaxLength requires the length of the value (e.g. slive, string, number) cannot be too long. It counts the length of the number if the value was a number.
func WithMaxLength(max int) Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
value := reflect.ValueOf(v)
switch value.Kind() {
case reflect.Array, reflect.Chan, reflect.Map, reflect.Slice, reflect.String:
if value.Len() > max {
return ctx, ErrLength
}
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
str := strconv.Itoa(int(value.Int()))
if len(str) > max {
return ctx, ErrLength
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
str := strconv.Itoa(int(value.Uint()))
if len(str) > max {
return ctx, ErrLength
}
case reflect.Float32, reflect.Float64:
str := fmt.Sprintf("%g", value.Float())
if len(str) > max {
return ctx, ErrLength
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithMinLength requires the length of the value (e.g. slive, string, number) cannot be too short. It counts the length of the number if the value was a number.
func WithMinLength(min int) Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
value := reflect.ValueOf(v)
switch value.Kind() {
case reflect.Array, reflect.Chan, reflect.Map, reflect.Slice, reflect.String:
if value.Len() < min {
return ctx, ErrLength
}
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
str := strconv.Itoa(int(value.Int()))
if len(str) < min {
return ctx, ErrLength
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
str := strconv.Itoa(int(value.Uint()))
if len(str) < min {
return ctx, ErrLength
}
case reflect.Float32, reflect.Float64:
str := fmt.Sprintf("%g", value.Float())
if len(str) < min {
return ctx, ErrLength
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithFixedLength requires the length of the value (e.g. slive, string, number) to be the exact length. It counts the length of the number if the value was a number.
func WithFixedLength(length int) Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
var err error
ctx, err = WithMinLength(length)(ctx, v)
if err != nil {
return ctx, err
}
ctx, err = WithMaxLength(length)(ctx, v)
if err != nil {
return ctx, err
}
return ctx, nil
}
}
// WithRange requires the number of the value to be in a certian range.
func WithRange(min, max int) Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
value := reflect.ValueOf(v)
switch value.Kind() {
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
if value.Int() < int64(min) || value.Int() > int64(max) {
return ctx, ErrRange
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
if value.Uint() < uint64(min) || value.Uint() > uint64(max) {
return ctx, ErrRange
}
case reflect.Float32, reflect.Float64:
if value.Float() < float64(min) || value.Float() > float64(max) {
return ctx, ErrRange
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithMaxRange requires the number of the value to be equal or less than the specified number.
func WithMaxRange(max int) Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
value := reflect.ValueOf(v)
switch value.Kind() {
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
if value.Int() > int64(max) {
return ctx, ErrRange
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
if value.Uint() > uint64(max) {
return ctx, ErrRange
}
case reflect.Float32, reflect.Float64:
if value.Float() > float64(max) {
return ctx, ErrRange
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithMinRange requires the number of the value to be least equal or greater than the specified number.
func WithMinRange(min int) Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
value := reflect.ValueOf(v)
switch value.Kind() {
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
if value.Int() < int64(min) {
return ctx, ErrRange
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
if value.Uint() < uint64(min) {
return ctx, ErrRange
}
case reflect.Float32, reflect.Float64:
if value.Float() < float64(min) {
return ctx, ErrRange
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithMaximum requires the length of the slice, string and the range of the number to be least equal or less than the specified number.
func WithMaximum(max int) Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
value := reflect.ValueOf(v)
switch value.Kind() {
case reflect.Array, reflect.Chan, reflect.Map, reflect.Slice, reflect.String:
if value.Len() > max {
return ctx, ErrLength
}
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
if value.Int() > int64(max) {
return ctx, ErrRange
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
if value.Uint() > uint64(max) {
return ctx, ErrRange
}
case reflect.Float32, reflect.Float64:
if value.Float() > float64(max) {
return ctx, ErrRange
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithMinimum requires the length of the slice, string and the range of the number to be least equal or greater than the specified number.
func WithMinimum(min int) Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
value := reflect.ValueOf(v)
switch value.Kind() {
case reflect.Array, reflect.Chan, reflect.Map, reflect.Slice, reflect.String:
if value.Len() < min {
return ctx, ErrLength
}
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
if value.Int() < int64(min) {
return ctx, ErrRange
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
if value.Uint() < uint64(min) {
return ctx, ErrRange
}
case reflect.Float32, reflect.Float64:
if value.Float() < float64(min) {
return ctx, ErrRange
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithDatetime requires the date format to match the Golang date format. It validates via the `time.Parse` function.
func WithDatetime(f string) Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
t, err := time.Parse(f, k)
if err != nil {
return ctx, err
}
if t.Format(f) != k {
return ctx, ErrDatetime
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithEmail requires the value to be an email. It validates with a built-in email regexp pattern.
func WithEmail() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpEmailRegex.Match([]byte(k)) {
return ctx, ErrEmail
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
//
/*func WithOneOf() {
}*/
//
/*func WithNotOneOf() {
}*/
//
/*func WithIP() {
}*/
//
/*func WithIPv4() {
}*/
//
/*func WithIPv6() {
}*/
//
/*func WithURL() {
}*/
//
/*func WithEqual() {
}*/
//
/*func WithNotEqual() {
}*/
//
/*func WithTrue() {
}*/
//
/*func WithFalse() {
}*/
// WithRegExp validates the valiue with specified regular expression.
func WithRegExp(r string) Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
m, err := regexp.Match(r, []byte(k))
if !m || err != nil {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithPrefix requires the value started with a specified sentence.
func WithPrefix(p string) Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !strings.HasPrefix(k, p) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithSuffix requires the value ended with a specified sentence.
func WithSuffix(s string) Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !strings.HasSuffix(k, s) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithAlpha requires the value to be alphabets only.
func WithAlpha() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpAlphaRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithAlphanumeric requires the value to be alphanumerics only.
func WithAlphanumeric() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpAlphaNumericRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithAlphaUnicode requires the value to be standard unicode characters.
func WithAlphaUnicode() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpAlphaUnicodeRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithAlphanumericUnicode requires the value to be numerics or standard unicode characters.
func WithAlphanumericUnicode() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpAlphaUnicodeNumericRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithNumeric requires the value to be numerics (includes the floating point).
func WithNumeric() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpNumericRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithHexadecimal 會檢查字串是否為十六進制格式。
/*func WithHexadecimal() {
}*/
// WithHexColor 會檢查字串是否為 # 井字開頭與結尾 3 或 6 個長度的十六進制格式。
/*func WithHexColor() {
}*/
// WithLowercase 會檢查字串是否僅有小寫英文字母。
/*func WithLowercase() {
}*/
// WithUppercase 會檢查字串是否僅有大寫英文字母。
/*func WithUppercase() {
}*/
// WithRGB requires the value to be a string RGB with `rgb(0,0,0)` format.
func WithRGB() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpRgbRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithRGBA requires the value to be a string RGBA with `rgba(0,0,0,0)` format.
func WithRGBA() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpRgbaRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithHSL requires the value to be a string HSL with `hsl(0,0,0)` format.
func WithHSL() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpHslRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithHSLA requires the value to be a string HSLA with `hsla(0,0,0,0)` format.
func WithHSLA() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpHslaRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithJSON requires the value to be a valid JSON. It validates via the `json.Valid` function.
func WithJSON() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !json.Valid([]byte(k)) {
return ctx, ErrInvalidJSON
}
case []byte:
if !json.Valid(k) {
return ctx, ErrInvalidJSON
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
//
/*func WithFilePath() {
}*/
//
/*func WithURI() {
}*/
//
/*func WithURNRFC2141() {
}*/
// WithBase64 requires the value to be a base64 string.
func WithBase64() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpBase64Regex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithBase64URL requires the value to be a URL base64.
func WithBase64URL() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpBase64URLRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithBitcoinAddress requires the value to be a Bitcoin address.
func WithBitcoinAddress() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpBtcAddressRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
//
/*func WithBitcoinAddressBech32() {
}*/
//
/*func WithEthereumAddress() {
}*/
//
/*func WithContains() {
}*/
//
/*func WithNotContains() {
}*/
//
/*func WithISBN() {
}*/
// WithISBN10 requires the value to be a valid ISBN10 string.
func WithISBN10() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpISBN10Regex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithISBN13 requires the value to be a valid ISBN13 string.
func WithISBN13() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpISBN13Regex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithUUID requires the value to be a valid UUID string.
func WithUUID() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpUUIDRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithUUID3 requires the value to be a valid UUID3 string.
func WithUUID3() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpUUID3Regex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
value := reflect.ValueOf(v)
switch value.Kind() {
case reflect.String:
if !regExpUUID3Regex.Match([]byte(value.String())) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithUUID4 requires the value to be a valid UUID4 string.
func WithUUID4() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpUUID4Regex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithUUID5 requires the value to be a valid UUID5 string.
func WithUUID5() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpUUID5Regex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithASCII requires the value to be a valid ASCII characters.
func WithASCII() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpASCIIRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithASCIIPrintable requires the value to be a valid printable ASCII characters.
func WithASCIIPrintable() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpASCIIPrintableRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithMultiByte requires the value to be multi-byte (e.g. Japanese, Chinese, Symbols).
func WithMultiByte() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpMultibyteRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithDataURI requires the value to be a data URI string.
func WithDataURI() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpDataURIRegex.Match([]byte(k)) {
return ctx, ErrInvalidPattern
}
default:
panic(ErrWrongType)
}
return ctx, nil
}
}
// WithLatitude requires the value to be a valid latitude format.
func WithLatitude() Validator {
return func(ctx context.Context, v interface{}) (context.Context, error) {
if isNotRequiredAndZeroValue(ctx, v) {
return ctx, nil
}
switch k := v.(type) {
case string:
if !regExpLatitudeRegex.Match([]byte(k)) {