-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalidators.go
More file actions
154 lines (147 loc) · 3.62 KB
/
validators.go
File metadata and controls
154 lines (147 loc) · 3.62 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
151
152
153
154
package figtree
import (
"fmt"
"log"
"time"
)
// WithValidator adds a validator to an int flag
//
// Example:
//
// figs := figtree.With(Options{Pollinate: true, Tracking: true, IgnoreEnvironment: true})
// figs.NewString("domain", "", "domain name")
// figs.WithValidator("domain", figtree.AssureStringHasPrefix("https://"))
// err := figs.Parse() // if you're NOT using ./config.yaml
// OR err := figs.Load() // if you're using ./config.yaml to populate domain
func (tree *figTree) WithValidator(name string, validator func(interface{}) error) Plant {
tree.mu.Lock()
defer tree.mu.Unlock()
name = tree.resolveName(name)
if fig, ok := tree.figs[name]; ok {
if fig.HasRule(RuleNoValidations) {
return tree
}
if fig.Validators == nil {
fig.Validators = make([]FigValidatorFunc, 0)
}
fig.Validators = append(fig.Validators, validator)
tree.figs[name] = fig
}
return tree
}
// WithValidators uses WithValidator to pass multiple Assure into a type
// Example:
//
// figs := figtree.Grow()
// figs.NewString("name", "", "Your name")
// figs.WithValidators("name",
// figtree.AssureStringNotEmpty,
// figtree.AssureStringNotContains("god"),
// figtree.AssureStringLengthGreaterThan(2))
func (tree *figTree) WithValidators(name string, validators ...func(interface{}) error) Plant {
for _, v := range validators {
tree.WithValidator(name, v)
}
return tree
}
// validateAll looks at figFruit FigValidatorFunc and returns the error if it fails otherwise it calls figTree.runCallbacks()
func (tree *figTree) validateAll() error {
tree.mu.RLock()
defer tree.mu.RUnlock()
err := tree.runCallbacks(CallbackBeforeVerify)
if err != nil {
return err
}
for name, fruit := range tree.figs {
if fruit.Error != nil {
return fruit.Error
}
if fruit.HasRule(RuleNoValidations) {
continue
}
for _, validator := range fruit.Validators {
if fruit != nil && validator != nil {
var val interface{}
_value := tree.useValue(tree.from(name))
if _value == nil {
fmt.Printf("skipping invalid fig '%s'\n", name)
continue
}
switch v := _value.Value.(type) {
case int:
val = v
case *int:
val = *v
case int64:
val = v
case *int64:
val = *v
case float64:
val = v
case *float64:
val = *v
case string:
val = v
case *string:
val = *v
case bool:
val = v
case *bool:
val = *v
case time.Duration:
val = v
case *time.Duration:
val = *v
case []string:
val = v
case *[]string:
val = *v
case map[string]string:
val = v
case *map[string]string:
val = *v
case ListFlag:
val = v.values
case *ListFlag:
val = v.values
case MapFlag:
val = v.values
case *MapFlag:
val = v.values
case Value:
val = v.Value
case *Value:
val = v.Value
default:
log.Printf("unknown fig type: %T for %v\n", v, v)
}
if val == nil {
log.Printf("val is nil for %s", name)
}
if err := validator(val); err != nil {
return fmt.Errorf("validation failed for %s: %v", name, err)
}
}
}
}
for _, fruit := range tree.figs {
if fruit.Error != nil {
return fruit.Error
}
}
return tree.runCallbacks(CallbackAfterVerify)
}
// makeStringValidator creates a validator for string-based checks.
func makeStringValidator(check func(string) bool, errFormat string) FigValidatorFunc {
return func(value interface{}) error {
v := figFlesh{value, nil}
if !v.IsString() {
return fmt.Errorf("expected string, got %T", value)
}
s := v.ToString()
if !check(s) {
return fmt.Errorf(errFormat, s)
}
return nil
}
}