mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
37 lines
812 B
Go
37 lines
812 B
Go
|
package validate
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"strconv"
|
||
|
)
|
||
|
|
||
|
// convertToString converts value to string
|
||
|
func convertToString(value interface{}) (string, error) {
|
||
|
switch typed := value.(type) {
|
||
|
case string:
|
||
|
return string(typed), nil
|
||
|
case float64:
|
||
|
return fmt.Sprintf("%f", typed), nil
|
||
|
case int64:
|
||
|
return strconv.FormatInt(typed, 10), nil
|
||
|
case int:
|
||
|
return strconv.Itoa(typed), nil
|
||
|
default:
|
||
|
return "", fmt.Errorf("Could not convert %T to string", value)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func getRawKeyIfWrappedWithAttributes(str string) string {
|
||
|
if len(str) < 2 {
|
||
|
return str
|
||
|
}
|
||
|
|
||
|
if str[0] == '(' && str[len(str)-1] == ')' {
|
||
|
return str[1 : len(str)-1]
|
||
|
} else if (str[0] == '$' || str[0] == '^' || str[0] == '+' || str[0] == '=') && (str[1] == '(' && str[len(str)-1] == ')') {
|
||
|
return str[2 : len(str)-1]
|
||
|
} else {
|
||
|
return str
|
||
|
}
|
||
|
}
|