完成check rule
This commit is contained in:
parent
9d43182cd7
commit
7e6e68d1ac
@ -11,6 +11,11 @@ import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"regexp"
|
||||
"strings"
|
||||
"sync"
|
||||
|
||||
"git.zhangdeman.cn/zhangdeman/gopkg/convert"
|
||||
|
||||
"git.zhangdeman.cn/zhangdeman/gopkg/util"
|
||||
)
|
||||
@ -30,8 +35,24 @@ const (
|
||||
OperateLt = "lt"
|
||||
// OperateLte 小于等于
|
||||
OperateLte = "lte"
|
||||
// OperateTypeContains 包含
|
||||
OperateTypeContains = "contains"
|
||||
// OperateTypeRegular 正则匹配
|
||||
OperateTypeRegular = "regular"
|
||||
)
|
||||
|
||||
var (
|
||||
// hasCompilerRegula 已编译正则,不进行重复编辑
|
||||
hasCompilerRegula map[string]*regexp.Regexp
|
||||
// regulaLock 编译正则用的锁
|
||||
regulaLock *sync.RWMutex
|
||||
)
|
||||
|
||||
func init() {
|
||||
regulaLock = &sync.RWMutex{}
|
||||
hasCompilerRegula = make(map[string]*regexp.Regexp)
|
||||
}
|
||||
|
||||
// Rule 数据过滤规则
|
||||
//
|
||||
// Author : go_developer@163.com<白茶清欢>
|
||||
@ -107,6 +128,34 @@ func checkRule(rule Rule, inputData map[string]interface{}) bool {
|
||||
if !is(val, cond.TargetValue) {
|
||||
return false
|
||||
}
|
||||
case OperateTypeIn:
|
||||
if !in(val, cond.TargetValue) {
|
||||
return false
|
||||
}
|
||||
case OperateTypeNotIn:
|
||||
if !notIn(val, cond.TargetValue) {
|
||||
return false
|
||||
}
|
||||
case OperateTypeContains:
|
||||
if !contains(val, cond.TargetValue) {
|
||||
return false
|
||||
}
|
||||
case OperateGt:
|
||||
if !compareNumber(val, cond.TargetValue, OperateGt) {
|
||||
return false
|
||||
}
|
||||
case OperateGte:
|
||||
if !compareNumber(val, cond.TargetValue, OperateGte) {
|
||||
return false
|
||||
}
|
||||
case OperateLt:
|
||||
if !compareNumber(val, cond.TargetValue, OperateLt) {
|
||||
return false
|
||||
}
|
||||
case OperateLte:
|
||||
if !compareNumber(val, cond.TargetValue, OperateLte) {
|
||||
return false
|
||||
}
|
||||
default:
|
||||
return false
|
||||
}
|
||||
@ -122,3 +171,111 @@ func checkRule(rule Rule, inputData map[string]interface{}) bool {
|
||||
func is(inputVal interface{}, targetValue string) bool {
|
||||
return fmt.Sprintf("%v", inputVal) == targetValue
|
||||
}
|
||||
|
||||
// in ...
|
||||
//
|
||||
// Author : go_developer@163.com<白茶清欢>
|
||||
//
|
||||
// Date : 11:47 上午 2021/11/25
|
||||
func in(inputValue interface{}, targetValue string) bool {
|
||||
if nil == inputValue {
|
||||
return false
|
||||
}
|
||||
inputStr := fmt.Sprintf("%v", inputValue)
|
||||
targetList := strings.Split(targetValue, ",")
|
||||
for _, item := range targetList {
|
||||
if inputStr == item {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
// notIn ...
|
||||
//
|
||||
// Author : go_developer@163.com<白茶清欢>
|
||||
//
|
||||
// Date : 11:47 上午 2021/11/25
|
||||
func notIn(inputValue interface{}, targetValue string) bool {
|
||||
if nil == inputValue {
|
||||
return false
|
||||
}
|
||||
inputStr := fmt.Sprintf("%v", inputValue)
|
||||
targetList := strings.Split(targetValue, ",")
|
||||
for _, item := range targetList {
|
||||
if inputStr == item {
|
||||
return false
|
||||
}
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
// compareNumber ...
|
||||
//
|
||||
// Author : go_developer@163.com<白茶清欢>
|
||||
//
|
||||
// Date : 11:56 上午 2021/11/25
|
||||
func compareNumber(inputValue interface{}, targetValue string, operateType string) bool {
|
||||
if inputValue == nil || len(targetValue) == 0 {
|
||||
return false
|
||||
}
|
||||
var (
|
||||
err error
|
||||
inputFloat float64
|
||||
targetFloat float64
|
||||
)
|
||||
if err = convert.ConvertAssign(&inputFloat, inputValue); nil != err {
|
||||
return false
|
||||
}
|
||||
|
||||
if err = convert.ConvertAssign(&targetFloat, targetValue); nil != err {
|
||||
return false
|
||||
}
|
||||
switch operateType {
|
||||
case OperateGt:
|
||||
return inputFloat > targetFloat
|
||||
case OperateGte:
|
||||
return inputFloat >= targetFloat
|
||||
case OperateLt:
|
||||
return inputFloat < targetFloat
|
||||
case OperateLte:
|
||||
return inputFloat <= targetFloat
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
// contains ...
|
||||
//
|
||||
// Author : go_developer@163.com<白茶清欢>
|
||||
//
|
||||
// Date : 12:03 下午 2021/11/25
|
||||
func contains(inputValue interface{}, targetValue string) bool {
|
||||
return strings.Contains(fmt.Sprintf("%v", inputValue), targetValue)
|
||||
}
|
||||
|
||||
// regula 正则匹配
|
||||
//
|
||||
// Author : go_developer@163.com<白茶清欢>
|
||||
//
|
||||
// Date : 12:15 下午 2021/11/25
|
||||
func regula(inputValue interface{}, targetValue string) bool {
|
||||
var (
|
||||
reg *regexp.Regexp
|
||||
err error
|
||||
)
|
||||
regulaLock.Lock()
|
||||
if _, exist := hasCompilerRegula[targetValue]; !exist {
|
||||
if reg, err = regexp.Compile(targetValue); nil != err {
|
||||
regulaLock.Unlock()
|
||||
return false
|
||||
}
|
||||
hasCompilerRegula[targetValue] = reg
|
||||
} else {
|
||||
reg = hasCompilerRegula[targetValue]
|
||||
}
|
||||
regulaLock.Unlock()
|
||||
|
||||
// 判断是否匹配到数据
|
||||
result := reg.FindAllStringSubmatch(fmt.Sprintf("%v", inputValue), -1)
|
||||
return len(result) > 0
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user