mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
59 lines
1.3 KiB
Go
59 lines
1.3 KiB
Go
|
package imagedata
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
|
||
|
"github.com/google/cel-go/cel"
|
||
|
"github.com/google/cel-go/common/types"
|
||
|
"github.com/google/cel-go/ext"
|
||
|
)
|
||
|
|
||
|
const libraryName = "kyverno.imagedata"
|
||
|
|
||
|
type lib struct{}
|
||
|
|
||
|
func Lib() cel.EnvOption {
|
||
|
// create the cel lib env option
|
||
|
return cel.Lib(&lib{})
|
||
|
}
|
||
|
|
||
|
func (*lib) LibraryName() string {
|
||
|
return libraryName
|
||
|
}
|
||
|
|
||
|
func (c *lib) CompileOptions() []cel.EnvOption {
|
||
|
return []cel.EnvOption{
|
||
|
ext.NativeTypes(reflect.TypeFor[Context]()),
|
||
|
c.extendEnv,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (*lib) ProgramOptions() []cel.ProgramOption {
|
||
|
return []cel.ProgramOption{}
|
||
|
}
|
||
|
|
||
|
func (c *lib) extendEnv(env *cel.Env) (*cel.Env, error) {
|
||
|
// create implementation, recording the envoy types aware adapter
|
||
|
impl := impl{
|
||
|
Adapter: env.CELTypeAdapter(),
|
||
|
}
|
||
|
// build our function overloads
|
||
|
libraryDecls := map[string][]cel.FunctionOpt{
|
||
|
"Get": {
|
||
|
cel.MemberOverload(
|
||
|
"imagedata_get_string",
|
||
|
[]*cel.Type{ContextType, types.StringType},
|
||
|
types.DynType,
|
||
|
cel.BinaryBinding(impl.get_imagedata_string),
|
||
|
),
|
||
|
},
|
||
|
}
|
||
|
// create env options corresponding to our function overloads
|
||
|
options := []cel.EnvOption{}
|
||
|
for name, overloads := range libraryDecls {
|
||
|
options = append(options, cel.Function(name, overloads...))
|
||
|
}
|
||
|
// extend environment with our function overloads
|
||
|
return env.Extend(options...)
|
||
|
}
|