Documentation ¶
Index ¶
- Variables
- func Evaluate(env *cel.Env, expression string, params map[string]interface{}) (ref.Val, error)
- func NewEnv(c *CustomLib) (*cel.Env, error)
- func NewFunctionDefineOptions(reg ref.TypeRegistry) []cel.EnvOption
- func NewFunctionImplOptions(reg ref.TypeRegistry) []cel.ProgramOption
- func PutCustomLib(c CustomLib)
- func PutReverse(reverse interface{})
- func UrlTypeToString(u *structs.UrlType) string
- type CustomLib
- type Env
- type RequestFuncType
Constants ¶
This section is empty.
Variables ¶
View Source
var ( StrStrMapType = decls.NewMapType(decls.String, decls.String) RequestType = decls.NewObjectType("structs.Request") ResponseType = decls.NewObjectType("structs.Response") ReverseType = decls.NewObjectType("structs.Reverse") UrlTypeType = decls.NewObjectType("structs.UrlType") StandradEnvOptions = []cel.EnvOption{ cel.Container("structs"), cel.Types( &structs.UrlType{}, &structs.Request{}, &structs.Response{}, &structs.Reverse{}, StrStrMapType, ), cel.Declarations( decls.NewVar("request", RequestType), decls.NewVar("response", ResponseType), ), cel.Declarations( decls.NewFunction("bcontains", decls.NewInstanceOverload("bytes_bcontains_bytes", []*exprpb.Type{decls.Bytes, decls.Bytes}, decls.Bool)), decls.NewFunction("ibcontains", decls.NewInstanceOverload("bytes_ibcontains_bytes", []*exprpb.Type{decls.Bytes, decls.Bytes}, decls.Bool)), decls.NewFunction("icontains", decls.NewInstanceOverload("icontains_string", []*exprpb.Type{decls.String, decls.String}, decls.Bool)), decls.NewFunction("bstartsWith", decls.NewInstanceOverload("bytes_bstartsWith_bytes", []*exprpb.Type{decls.Bytes, decls.Bytes}, decls.Bool)), decls.NewFunction("submatch", decls.NewInstanceOverload("string_submatch_string", []*exprpb.Type{decls.String, decls.String}, StrStrMapType, )), decls.NewFunction("bmatches", decls.NewInstanceOverload("string_bmatches_bytes", []*exprpb.Type{decls.String, decls.Bytes}, decls.Bool)), decls.NewFunction("bsubmatch", decls.NewInstanceOverload("string_bsubmatch_bytes", []*exprpb.Type{decls.String, decls.Bytes}, StrStrMapType, )), decls.NewFunction("wait", decls.NewInstanceOverload("reverse_wait_int", []*exprpb.Type{decls.Any, decls.Int}, decls.Bool)), decls.NewFunction("newReverse", decls.NewOverload("newReverse", []*exprpb.Type{}, ReverseType)), decls.NewFunction("md5", decls.NewOverload("md5_string", []*exprpb.Type{decls.String}, decls.String)), decls.NewFunction("randomInt", decls.NewOverload("randomInt_int_int", []*exprpb.Type{decls.Int, decls.Int}, decls.Int)), decls.NewFunction("randomLowercase", decls.NewOverload("randomLowercase_int", []*exprpb.Type{decls.Int}, decls.String)), decls.NewFunction("base64", decls.NewOverload("base64_string", []*exprpb.Type{decls.String}, decls.String)), decls.NewFunction("base64", decls.NewOverload("base64_bytes", []*exprpb.Type{decls.Bytes}, decls.String)), decls.NewFunction("base64Decode", decls.NewOverload("base64Decode_string", []*exprpb.Type{decls.String}, decls.String)), decls.NewFunction("base64Decode", decls.NewOverload("base64Decode_bytes", []*exprpb.Type{decls.Bytes}, decls.String)), decls.NewFunction("urlencode", decls.NewOverload("urlencode_string", []*exprpb.Type{decls.String}, decls.String)), decls.NewFunction("urlencode", decls.NewOverload("urlencode_bytes", []*exprpb.Type{decls.Bytes}, decls.String)), decls.NewFunction("urldecode", decls.NewOverload("urldecode_string", []*exprpb.Type{decls.String}, decls.String)), decls.NewFunction("urldecode", decls.NewOverload("urldecode_bytes", []*exprpb.Type{decls.Bytes}, decls.String)), decls.NewFunction("substr", decls.NewOverload("substr_string_int_int", []*exprpb.Type{decls.String, decls.Int, decls.Int}, decls.String)), decls.NewFunction("replaceAll", decls.NewOverload("replaceAll_string_string_string", []*exprpb.Type{decls.String, decls.String, decls.String}, decls.String)), decls.NewFunction("printable", decls.NewOverload("printable_string", []*exprpb.Type{decls.String}, decls.String)), decls.NewFunction("sleep", decls.NewOverload("sleep_int", []*exprpb.Type{decls.Int}, decls.Bool)), decls.NewFunction("faviconHash", decls.NewOverload("faviconHash_stringOrBytes", []*exprpb.Type{decls.Any}, decls.Int)), decls.NewFunction("toUintString", decls.NewOverload("toUintString_string_string", []*exprpb.Type{decls.String, decls.String}, decls.String)), ), } )
View Source
var ( ReversePool = sync.Pool{ New: func() interface{} { return new(structs.Reverse) }, } StandradProgramOption = []cel.ProgramOption{ cel.Functions( &functions.Overload{ Operator: "bytes_bcontains_bytes", Binary: func(lhs ref.Val, rhs ref.Val) ref.Val { v1, ok := lhs.(types.Bytes) if !ok { return types.ValOrErr(lhs, "unexpected type '%v' passed to bcontains", lhs.Type()) } v2, ok := rhs.(types.Bytes) if !ok { return types.ValOrErr(rhs, "unexpected type '%v' passed to bcontains", rhs.Type()) } return types.Bool(bytes.Contains(v1, v2)) }, }, &functions.Overload{ Operator: "bytes_ibcontains_bytes", Binary: func(lhs ref.Val, rhs ref.Val) ref.Val { v1, ok := lhs.(types.Bytes) if !ok { return types.ValOrErr(lhs, "unexpected type '%v' passed to bcontains", lhs.Type()) } v2, ok := rhs.(types.Bytes) if !ok { return types.ValOrErr(rhs, "unexpected type '%v' passed to bcontains", rhs.Type()) } return types.Bool(bytes.Contains(bytes.ToLower(v1), bytes.ToLower(v2))) }, }, &functions.Overload{ Operator: "icontains_string", Binary: func(lhs ref.Val, rhs ref.Val) ref.Val { v1, ok := lhs.(types.String) if !ok { return types.ValOrErr(lhs, "unexpected type '%v' passed to bcontains", lhs.Type()) } v2, ok := rhs.(types.String) if !ok { return types.ValOrErr(rhs, "unexpected type '%v' passed to bcontains", rhs.Type()) } return types.Bool(strings.Contains(strings.ToLower(string(v1)), strings.ToLower(string(v2)))) }, }, &functions.Overload{ Operator: "bytes_bstartsWith_bytes", Binary: func(lhs ref.Val, rhs ref.Val) ref.Val { v1, ok := lhs.(types.Bytes) if !ok { return types.ValOrErr(lhs, "unexpected type '%v' passed to bstartsWith", lhs.Type()) } v2, ok := rhs.(types.Bytes) if !ok { return types.ValOrErr(rhs, "unexpected type '%v' passed to bstartsWith", rhs.Type()) } return types.Bool(bytes.HasPrefix(v1, v2)) }, }, &functions.Overload{ Operator: "string_bmatches_bytes", Binary: func(lhs ref.Val, rhs ref.Val) ref.Val { var isMatch = false var err error v1, ok := lhs.(types.String) if !ok { return types.ValOrErr(lhs, "unexpected type '%v' passed to bmatches", lhs.Type()) } v2, ok := rhs.(types.Bytes) if !ok { return types.ValOrErr(rhs, "unexpected type '%v' passed to bmatches", rhs.Type()) } re := regexp2.MustCompile(string(v1), 0) if isMatch, err = re.MatchString(string([]byte(v2))); err != nil { return types.NewErr("%v", err) } return types.Bool(isMatch) }, }, &functions.Overload{ Operator: "matches_string", Binary: func(lhs ref.Val, rhs ref.Val) ref.Val { var ( isMatch = false err error ) v1, ok := lhs.(types.String) if !ok { return types.ValOrErr(lhs, "unexpected type '%v' passed to matches", lhs.Type()) } v2, ok := rhs.(types.String) if !ok { return types.ValOrErr(rhs, "unexpected type '%v' passed to matches", rhs.Type()) } re := regexp2.MustCompile(string(v1), 0) if isMatch, err = re.MatchString(string(v2)); err != nil { return types.NewErr("%v", err) } return types.Bool(isMatch) }, }, &functions.Overload{ Operator: "md5_string", Unary: func(value ref.Val) ref.Val { v, ok := value.(types.String) if !ok { return types.ValOrErr(value, "unexpected type '%v' passed to md5_string", value.Type()) } return types.String(fmt.Sprintf("%x", md5.Sum([]byte(v)))) }, }, &functions.Overload{ Operator: "randomInt_int_int", Binary: func(lhs ref.Val, rhs ref.Val) ref.Val { from, ok := lhs.(types.Int) if !ok { return types.ValOrErr(lhs, "unexpected type '%v' passed to randomInt", lhs.Type()) } to, ok := rhs.(types.Int) if !ok { return types.ValOrErr(rhs, "unexpected type '%v' passed to randomInt", rhs.Type()) } min, max := int(from), int(to) return types.Int(rand.Intn(max-min) + min) }, }, &functions.Overload{ Operator: "randomLowercase_int", Unary: func(value ref.Val) ref.Val { n, ok := value.(types.Int) if !ok { return types.ValOrErr(value, "unexpected type '%v' passed to randomLowercase", value.Type()) } return types.String(utils.RandomStr(utils.AsciiLowercase, int(n))) }, }, &functions.Overload{ Operator: "base64_string", Unary: func(value ref.Val) ref.Val { v, ok := value.(types.String) if !ok { return types.ValOrErr(value, "unexpected type '%v' passed to base64_string", value.Type()) } return types.String(base64.StdEncoding.EncodeToString([]byte(v))) }, }, &functions.Overload{ Operator: "base64_bytes", Unary: func(value ref.Val) ref.Val { v, ok := value.(types.Bytes) if !ok { return types.ValOrErr(value, "unexpected type '%v' passed to base64_bytes", value.Type()) } return types.String(base64.StdEncoding.EncodeToString(v)) }, }, &functions.Overload{ Operator: "base64Decode_string", Unary: func(value ref.Val) ref.Val { v, ok := value.(types.String) if !ok { return types.ValOrErr(value, "unexpected type '%v' passed to base64Decode_string", value.Type()) } decodeBytes, err := base64.StdEncoding.DecodeString(string(v)) if err != nil { return types.NewErr("%v", err) } return types.String(decodeBytes) }, }, &functions.Overload{ Operator: "base64Decode_bytes", Unary: func(value ref.Val) ref.Val { v, ok := value.(types.Bytes) if !ok { return types.ValOrErr(value, "unexpected type '%v' passed to base64Decode_bytes", value.Type()) } decodeBytes, err := base64.StdEncoding.DecodeString(string(v)) if err != nil { return types.NewErr("%v", err) } return types.String(decodeBytes) }, }, &functions.Overload{ Operator: "urlencode_string", Unary: func(value ref.Val) ref.Val { v, ok := value.(types.String) if !ok { return types.ValOrErr(value, "unexpected type '%v' passed to urlencode_string", value.Type()) } return types.String(url.QueryEscape(string(v))) }, }, &functions.Overload{ Operator: "urlencode_bytes", Unary: func(value ref.Val) ref.Val { v, ok := value.(types.Bytes) if !ok { return types.ValOrErr(value, "unexpected type '%v' passed to urlencode_bytes", value.Type()) } return types.String(url.QueryEscape(string(v))) }, }, &functions.Overload{ Operator: "urldecode_string", Unary: func(value ref.Val) ref.Val { v, ok := value.(types.String) if !ok { return types.ValOrErr(value, "unexpected type '%v' passed to urldecode_string", value.Type()) } decodeString, err := url.QueryUnescape(string(v)) if err != nil { return types.NewErr("%v", err) } return types.String(decodeString) }, }, &functions.Overload{ Operator: "urldecode_bytes", Unary: func(value ref.Val) ref.Val { v, ok := value.(types.Bytes) if !ok { return types.ValOrErr(value, "unexpected type '%v' passed to urldecode_bytes", value.Type()) } decodeString, err := url.QueryUnescape(string(v)) if err != nil { return types.NewErr("%v", err) } return types.String(decodeString) }, }, &functions.Overload{ Operator: "substr_string_int_int", Function: func(values ...ref.Val) ref.Val { if len(values) == 3 { str, ok := values[0].(types.String) if !ok { return types.NewErr("invalid string to 'substr'") } start, ok := values[1].(types.Int) if !ok { return types.NewErr("invalid start to 'substr'") } length, ok := values[2].(types.Int) if !ok { return types.NewErr("invalid length to 'substr'") } runes := []rune(str) if start < 0 || length < 0 || int(start+length) > len(runes) { return types.NewErr("invalid start or length to 'substr'") } return types.String(runes[start : start+length]) } else { return types.NewErr("too many arguments to 'substr'") } }, }, &functions.Overload{ Operator: "reverse_wait_int", Binary: func(lhs ref.Val, rhs ref.Val) ref.Val { reverse, ok := lhs.Value().(*structs.Reverse) if !ok { return types.ValOrErr(lhs, "unexpected type '%v' passed to 'wait'", lhs.Type()) } timeout, ok := rhs.Value().(int64) if !ok { return types.ValOrErr(rhs, "unexpected type '%v' passed to 'wait'", rhs.Type()) } return types.Bool(reverseCheck(reverse, timeout)) }, }, &functions.Overload{ Operator: "replaceAll_string_string_string", Function: func(values ...ref.Val) ref.Val { s, ok := values[0].(types.String) if !ok { return types.ValOrErr(s, "unexpected type '%v' passed to replaceAll", s.Type()) } old, ok := values[1].(types.String) if !ok { return types.ValOrErr(old, "unexpected type '%v' passed to replaceAll", old.Type()) } new, ok := values[2].(types.String) if !ok { return types.ValOrErr(new, "unexpected type '%v' passed to replaceAll", new.Type()) } return types.String(strings.ReplaceAll(string(s), string(old), string(new))) }, }, &functions.Overload{ Operator: "printable_string", Unary: func(value ref.Val) ref.Val { s, ok := value.(types.String) if !ok { return types.ValOrErr(s, "unexpected type '%v' passed to printable", s.Type()) } clean := strings.Map(func(r rune) rune { if unicode.IsPrint(r) { return r } return -1 }, string(s)) return types.String(clean) }, }, &functions.Overload{ Operator: "sleep_int", Unary: func(value ref.Val) ref.Val { i, ok := value.(types.Int) if !ok { return types.ValOrErr(i, "unexpected type '%v' passed to sleep", i.Type()) } time.Sleep(time.Duration(int64(i)) * time.Second) return types.Bool(true) }, }, &functions.Overload{ Operator: "faviconHash_stringOrBytes", Unary: func(value ref.Val) ref.Val { b, ok := value.(types.Bytes) if !ok { bStr, ok := value.(types.String) b = []byte(bStr) if !ok { return types.ValOrErr(bStr, "unexpected type '%v' passed to faviconHash", bStr.Type()) } } return types.Int(utils.Mmh3Hash32(utils.Base64Encode(b))) }, }, &functions.Overload{ Operator: "toUintString_string_string", Function: func(values ...ref.Val) ref.Val { s1, ok := values[0].(types.String) s := string(s1) if !ok { return types.ValOrErr(s1, "unexpected type '%v' passed to toUintString", s1.Type()) } direction, ok := values[1].(types.String) if !ok { return types.ValOrErr(direction, "unexpected type '%v' passed to toUintString", direction.Type()) } if direction == "<" { s = utils.ReverseString(s) } if _, err := strconv.Atoi(s); err == nil { return types.String(s) } else { return types.NewErr("%v", err) } }, }, ), } )
View Source
var ( CustomLibPool = sync.Pool{ New: func() interface{} { return CustomLib{} }, } )
Functions ¶
func NewFunctionDefineOptions ¶
func NewFunctionDefineOptions(reg ref.TypeRegistry) []cel.EnvOption
func NewFunctionImplOptions ¶
func NewFunctionImplOptions(reg ref.TypeRegistry) []cel.ProgramOption
func PutCustomLib ¶
func PutCustomLib(c CustomLib)
func PutReverse ¶
func PutReverse(reverse interface{})
func UrlTypeToString ¶
Types ¶
type CustomLib ¶
type CustomLib struct {
// contains filtered or unexported fields
}
func NewEnvOption ¶
func NewEnvOption() CustomLib
func (*CustomLib) CompileOptions ¶
声明环境中的变量类型和函数
func (*CustomLib) DefineRuleFunction ¶
func (*CustomLib) ProgramOptions ¶
func (c *CustomLib) ProgramOptions() []cel.ProgramOption
type RequestFuncType ¶
Click to show internal directories.
Click to hide internal directories.