-
Notifications
You must be signed in to change notification settings - Fork 3
/
string_length.go
133 lines (108 loc) · 2.53 KB
/
string_length.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
package validator
import (
"context"
"strings"
"unicode/utf8"
)
type StringLength struct {
// string user-defined error message used when the value is not a string.
message string
// string user-defined error message used when the length of the value is smaller than {see min}.
tooShortMessage string
// string user-defined error message used when the length of the value is greater than {see max}.
tooLongMessage string
min, max int
whenFunc WhenFunc
skipEmpty bool
skipError bool
}
func NewStringLength(min, max int) *StringLength {
return &StringLength{
message: "This value must be a string.",
tooShortMessage: "This value should contain at least {min}.",
tooLongMessage: "This value should contain at most {max}.",
min: min,
max: max,
}
}
func (r *StringLength) WithMessage(message string) *StringLength {
rc := *r
rc.message = message
return &rc
}
func (r *StringLength) WithTooShortMessage(message string) *StringLength {
rc := *r
rc.tooShortMessage = message
return &rc
}
func (r *StringLength) WithTooLongMessage(message string) *StringLength {
rc := *r
rc.tooLongMessage = message
return &rc
}
func (r *StringLength) When(v WhenFunc) *StringLength {
rc := *r
rc.whenFunc = v
return &rc
}
func (r *StringLength) when() WhenFunc {
return r.whenFunc
}
func (r *StringLength) setWhen(v WhenFunc) {
r.whenFunc = v
}
func (r *StringLength) SkipOnEmpty() *StringLength {
rc := *r
rc.skipEmpty = true
return &rc
}
func (r *StringLength) skipOnEmpty() bool {
return r.skipEmpty
}
func (r *StringLength) setSkipOnEmpty(v bool) {
r.skipEmpty = v
}
func (r *StringLength) SkipOnError() *StringLength {
rs := *r
rs.skipError = true
return &rs
}
func (r *StringLength) shouldSkipOnError() bool {
return r.skipError
}
func (r *StringLength) setSkipOnError(v bool) {
r.skipError = v
}
func (r *StringLength) ValidateValue(_ context.Context, value any) error {
v, ok := toString(value)
if !ok {
return NewResult().WithError(NewValidationError(r.message))
}
result := NewResult()
v = strings.TrimSpace(v)
l := utf8.RuneCountInString(v)
if l < r.min {
result = NewResult().
WithError(
NewValidationError(r.tooShortMessage).
WithParams(map[string]any{
"min": r.min,
"max": r.max,
}),
)
}
if l > r.max {
result = NewResult().
WithError(
NewValidationError(r.tooLongMessage).
WithParams(map[string]any{
"min": r.min,
"max": r.max,
}),
)
}
if !result.IsValid() {
return result
}
return nil
}