|
@@ -3,6 +3,7 @@ package utils
|
|
|
import (
|
|
|
"errors"
|
|
|
"reflect"
|
|
|
+ "regexp"
|
|
|
"strconv"
|
|
|
"strings"
|
|
|
)
|
|
@@ -37,6 +38,15 @@ func NotEmpty() string {
|
|
|
return "notEmpty"
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func RegexpMatch(rule string) string {
|
|
|
+ return "regexp=" + rule
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -133,6 +143,10 @@ func Verify(st interface{}, roleMap Rules) (err error) {
|
|
|
if isBlank(val) {
|
|
|
return errors.New(tagVal.Name + "值不能为空")
|
|
|
}
|
|
|
+ case strings.Split(v, "=")[0] == "regexp":
|
|
|
+ if !regexpMatch(strings.Split(v, "=")[1], val.String()) {
|
|
|
+ return errors.New(tagVal.Name + "格式校验不通过")
|
|
|
+ }
|
|
|
case compareMap[strings.Split(v, "=")[0]]:
|
|
|
if !compareVerify(val, v) {
|
|
|
return errors.New(tagVal.Name + "长度或值不在合法范围," + v)
|
|
@@ -266,3 +280,7 @@ func compare(value interface{}, VerifyStr string) bool {
|
|
|
return false
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+func regexpMatch(rule, matchStr string) bool {
|
|
|
+ return regexp.MustCompile(rule).MatchString(matchStr)
|
|
|
+}
|