-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatch.go
47 lines (38 loc) · 1.04 KB
/
match.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
package validation
import (
"regexp"
)
// Match returns a validation rule that checks if a value matches the specified regular expression.
// This rule should only be used for validating strings and byte slices, or a validation error will be reported.
// An empty value is considered valid. Use the Required rule to make sure a value is not empty.
func Match(re *regexp.Regexp) *MatchRule {
return &MatchRule{
re: re,
code: 1105,
}
}
type MatchRule struct {
re *regexp.Regexp
message string
code int
}
// Validate checks if the given value is valid or not.
func (v *MatchRule) Validate(value interface{}) (code int, args []interface{}) {
value, isNil := Indirect(value)
if isNil {
return
}
isString, str, isBytes, bs := StringOrBytes(value)
if isString && (str == "" || v.re.MatchString(str)) {
return
} else if isBytes && (len(bs) == 0 || v.re.Match(bs)) {
return
}
code = v.code
return
}
// Error sets the error message for the rule.
func (v *MatchRule) Error(message string) *MatchRule {
v.message = message
return v
}