mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-05 16:28:17 +00:00
* fix: enable CEL iterators Signed-off-by: Jason Cameron <jason.cameron@stanwith.me> * test: add unit tests for CELChecker map iteration Signed-off-by: Jason Cameron <jason.cameron@stanwith.me> * fix: implement map iterators for HTTPHeaders and URLValues to resolve CEL internal errors Signed-off-by: Jason Cameron <jason.cameron@stanwith.me> * fix: replace checker.NewMapIterator with newMapIterator for HTTPHeaders and URLValues Signed-off-by: Jason Cameron <jason.cameron@stanwith.me> --------- Signed-off-by: Jason Cameron <jason.cameron@stanwith.me>
78 lines
1.6 KiB
Go
78 lines
1.6 KiB
Go
package expressions
|
|
|
|
import (
|
|
"net/url"
|
|
"reflect"
|
|
"strings"
|
|
|
|
"github.com/google/cel-go/common/types"
|
|
"github.com/google/cel-go/common/types/ref"
|
|
"github.com/google/cel-go/common/types/traits"
|
|
)
|
|
|
|
// URLValues is a type wrapper to expose url.Values into CEL programs.
|
|
type URLValues struct {
|
|
url.Values
|
|
}
|
|
|
|
func (u URLValues) ConvertToNative(typeDesc reflect.Type) (any, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|
|
|
|
func (u URLValues) ConvertToType(typeVal ref.Type) ref.Val {
|
|
switch typeVal {
|
|
case types.MapType:
|
|
return u
|
|
case types.TypeType:
|
|
return types.MapType
|
|
}
|
|
|
|
return types.NewErr("can't convert from %q to %q", types.MapType, typeVal)
|
|
}
|
|
|
|
func (u URLValues) Equal(other ref.Val) ref.Val {
|
|
return types.Bool(false) // We don't want to compare header maps
|
|
}
|
|
|
|
func (u URLValues) Type() ref.Type {
|
|
return types.MapType
|
|
}
|
|
|
|
func (u URLValues) Value() any { return u }
|
|
|
|
func (u URLValues) Find(key ref.Val) (ref.Val, bool) {
|
|
k, ok := key.(types.String)
|
|
if !ok {
|
|
return nil, false
|
|
}
|
|
|
|
if _, ok := u.Values[string(k)]; !ok {
|
|
return nil, false
|
|
}
|
|
|
|
return types.String(strings.Join(u.Values[string(k)], ",")), true
|
|
}
|
|
|
|
func (u URLValues) Contains(key ref.Val) ref.Val {
|
|
_, ok := u.Find(key)
|
|
return types.Bool(ok)
|
|
}
|
|
|
|
func (u URLValues) Get(key ref.Val) ref.Val {
|
|
result, ok := u.Find(key)
|
|
if !ok {
|
|
return types.ValOrErr(result, "no such key: %v", key)
|
|
}
|
|
return result
|
|
}
|
|
|
|
func (u URLValues) Iterator() traits.Iterator {
|
|
return newMapIterator(u.Values)
|
|
}
|
|
|
|
func (u URLValues) IsZeroValue() bool {
|
|
return len(u.Values) == 0
|
|
}
|
|
|
|
func (u URLValues) Size() ref.Val { return types.Int(len(u.Values)) }
|