mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-05 08:47:35 +08:00
refactored logic
This commit is contained in:
18
validation/validation.go
Normal file
18
validation/validation.go
Normal file
@@ -0,0 +1,18 @@
|
||||
package validation
|
||||
|
||||
import (
|
||||
"regexp"
|
||||
|
||||
"github.com/go-playground/validator/v10"
|
||||
)
|
||||
|
||||
// CheckYesOrNo - checks if a field on a struct is yes or no
|
||||
func CheckYesOrNo(fl validator.FieldLevel) bool {
|
||||
return fl.Field().String() == "yes" || fl.Field().String() == "no"
|
||||
}
|
||||
|
||||
// CheckRegex - check if a struct's field passes regex test
|
||||
func CheckRegex(fl validator.FieldLevel) bool {
|
||||
re := regexp.MustCompile(fl.Param())
|
||||
return re.MatchString(fl.Field().String())
|
||||
}
|
Reference in New Issue
Block a user