mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
48d9ebba2c
* uses regular expressions Signed-off-by: Vishal Choudhary <sendtovishalchoudhary@gmail.com> * adds regex capture Signed-off-by: Vishal Choudhary <sendtovishalchoudhary@gmail.com> * creates anchor instance Signed-off-by: Vishal Choudhary <sendtovishalchoudhary@gmail.com> * remove IsAnchor Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * more Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * added interface Signed-off-by: Vishal Choudhary <sendtovishalchoudhary@gmail.com> * remove static funcs Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * adapt Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * value receiver Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * simplify Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * error Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * renames Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * private Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * nit Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * ficx Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * refactor Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * test Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * tests Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * test Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * error Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * unit tests Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * refactor Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * unit tests Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> --------- Signed-off-by: Vishal Choudhary <sendtovishalchoudhary@gmail.com> Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Co-authored-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Co-authored-by: Charles-Edouard Brétéché <charled.breteche@gmail.com> Co-authored-by: shuting <shuting@nirmata.com>
74 lines
2.2 KiB
Go
74 lines
2.2 KiB
Go
package common
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
|
|
"github.com/kyverno/kyverno/pkg/engine/anchor"
|
|
)
|
|
|
|
// ValidatePattern validates the pattern
|
|
func ValidatePattern(patternElement interface{}, path string, isSupported func(anchor.Anchor) bool) (string, error) {
|
|
switch typedPatternElement := patternElement.(type) {
|
|
case map[string]interface{}:
|
|
return validateMap(typedPatternElement, path, isSupported)
|
|
case []interface{}:
|
|
return validateArray(typedPatternElement, path, isSupported)
|
|
case string, float64, int, int64, bool, nil:
|
|
// TODO: check operator
|
|
return "", nil
|
|
default:
|
|
return path, fmt.Errorf("error at '%s', pattern contains unknown type", path)
|
|
}
|
|
}
|
|
|
|
func validateMap(patternMap map[string]interface{}, path string, isSupported func(anchor.Anchor) bool) (string, error) {
|
|
// check if anchors are defined
|
|
for key, value := range patternMap {
|
|
// if key is anchor
|
|
a := anchor.Parse(key)
|
|
// check the type of anchor
|
|
if a != nil {
|
|
// some type of anchor
|
|
// check if valid anchor
|
|
if !checkAnchors(a, isSupported) {
|
|
return path + "/" + key, fmt.Errorf("unsupported anchor %s", key)
|
|
}
|
|
// addition check for existence anchor
|
|
// value must be of type list
|
|
if anchor.IsExistence(a) {
|
|
typedValue, ok := value.([]interface{})
|
|
if !ok {
|
|
return path + "/" + key, fmt.Errorf("existence anchor should have value of type list")
|
|
}
|
|
// validate that there is atleast one entry in the list
|
|
if len(typedValue) == 0 {
|
|
return path + "/" + key, fmt.Errorf("existence anchor: should have atleast one value")
|
|
}
|
|
}
|
|
}
|
|
// lets validate the values now :)
|
|
if errPath, err := ValidatePattern(value, path+"/"+key, isSupported); err != nil {
|
|
return errPath, err
|
|
}
|
|
}
|
|
return "", nil
|
|
}
|
|
|
|
func validateArray(patternArray []interface{}, path string, isSupported func(anchor.Anchor) bool) (string, error) {
|
|
for i, patternElement := range patternArray {
|
|
currentPath := path + strconv.Itoa(i) + "/"
|
|
// lets validate the values now :)
|
|
if errPath, err := ValidatePattern(patternElement, currentPath, isSupported); err != nil {
|
|
return errPath, err
|
|
}
|
|
}
|
|
return "", nil
|
|
}
|
|
|
|
func checkAnchors(a anchor.Anchor, isSupported func(anchor.Anchor) bool) bool {
|
|
if isSupported == nil {
|
|
return false
|
|
}
|
|
return isSupported(a)
|
|
}
|