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:
parent
54f816c246
commit
75bd8e28f5
1 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue