-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathin.go
33 lines (29 loc) · 791 Bytes
/
in.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
package validation
// In returns a validation rule that checks if a value can be found in the given list of values.
// Note that the value being checked and the possible range of values must be of the same type.
// An empty value is considered valid. Use the Required rule to make sure a value is not empty.
func In(values ...interface{}) *InRule {
return &InRule{
elements: values,
code: 1101,
}
}
type InRule struct {
elements []interface{}
message string
code int
}
// Validate checks if the given value is valid or not.
func (r *InRule) Validate(value interface{}) (code int, args []interface{}) {
value, isNil := Indirect(value)
if isNil || IsEmpty(value) {
return
}
for _, e := range r.elements {
if e == value {
return
}
}
code = r.code
return
}