-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring.go
42 lines (36 loc) · 1.14 KB
/
string.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
package validation
type stringValidator func(string) bool
// StringRule is a rule that checks a string variable using a specified stringValidator.
type StringRule struct {
validate stringValidator
code int
}
// NewStringRule creates a new validation rule using a function that takes a string value and returns a bool.
// The rule returned will use the function to check if a given string or byte slice is valid or not.
// An empty value is considered to be valid. Please use the Required rule to make sure a value is not empty.
func NewStringRule(validator stringValidator, code int) *StringRule {
return &StringRule{
validate: validator,
code: code,
}
}
// Error sets the error message for the rule.
func (v *StringRule) Error(message string, code int) *StringRule {
return NewStringRule(v.validate, code)
}
// Validate checks if the given value is valid or not.
func (v *StringRule) Validate(value interface{}) (code int, args []interface{}) {
value, isNil := Indirect(value)
if isNil || IsEmpty(value) {
return
}
str, code := EnsureString(value)
if code != 0 {
return
}
if v.validate(str) {
return
}
code = v.code
return
}