1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

also trim in context query

This commit is contained in:
Jim Bugwadia 2020-11-24 17:53:19 -08:00
parent 54f816c246
commit 75bd8e28f5

View file

@ -10,9 +10,14 @@ import (
//Query the JSON context with JMESPATH search path
func (ctx *Context) Query(query string) (interface{}, error) {
query = strings.TrimSpace(query)
if query == "" {
return nil, fmt.Errorf("invalid query (nil)")
}
var emptyResult interface{}
// check for white-listed variables
if !ctx.isWhiteListed(query) {
if !ctx.isBuiltInVariable(query) {
return emptyResult, fmt.Errorf("variable %s cannot be used", query)
}
@ -40,7 +45,7 @@ func (ctx *Context) Query(query string) (interface{}, error) {
return result, nil
}
func (ctx *Context) isWhiteListed(variable string) bool {
func (ctx *Context) isBuiltInVariable(variable string) bool {
if len(ctx.builtInVars) == 0 {
return true
}