-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathsubstitution.go
148 lines (129 loc) · 4.96 KB
/
substitution.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/*
Copyright 2019 The Tekton Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package substitution
import (
"fmt"
"regexp"
"strings"
"knative.dev/pkg/apis"
)
const parameterSubstitution = `[_a-zA-Z][_a-zA-Z0-9.-]*(\[\*\])?`
const braceMatchingRegex = "(\\$(\\(%s.(?P<var>%s)\\)))"
func ValidateVariable(name, value, prefix, locationName, path string, vars map[string]struct{}) *apis.FieldError {
if vs, present := extractVariablesFromString(value, prefix); present {
for _, v := range vs {
v = strings.TrimSuffix(v, "[*]")
if _, ok := vars[v]; !ok {
return &apis.FieldError{
Message: fmt.Sprintf("non-existent variable in %q for %s %s", value, locationName, name),
Paths: []string{path + "." + name},
}
}
}
}
return nil
}
// Verifies that variables matching the relevant string expressions do not reference any of the names present in vars.
func ValidateVariableProhibited(name, value, prefix, locationName, path string, vars map[string]struct{}) *apis.FieldError {
if vs, present := extractVariablesFromString(value, prefix); present {
for _, v := range vs {
v = strings.TrimSuffix(v, "[*]")
if _, ok := vars[v]; ok {
return &apis.FieldError{
Message: fmt.Sprintf("variable type invalid in %q for %s %s", value, locationName, name),
Paths: []string{path + "." + name},
}
}
}
}
return nil
}
// Verifies that variables matching the relevant string expressions are completely isolated if present.
func ValidateVariableIsolated(name, value, prefix, locationName, path string, vars map[string]struct{}) *apis.FieldError {
if vs, present := extractVariablesFromString(value, prefix); present {
firstMatch, _ := extractExpressionFromString(value, prefix)
for _, v := range vs {
v = strings.TrimSuffix(v, "[*]")
if _, ok := vars[v]; ok {
if len(value) != len(firstMatch) {
return &apis.FieldError{
Message: fmt.Sprintf("variable is not properly isolated in %q for %s %s", value, locationName, name),
Paths: []string{path + "." + name},
}
}
}
}
}
return nil
}
// Extract a the first full string expressions found (e.g "$(input.params.foo)"). Return
// "" and false if nothing is found.
func extractExpressionFromString(s, prefix string) (string, bool) {
pattern := fmt.Sprintf(braceMatchingRegex, prefix, parameterSubstitution)
re := regexp.MustCompile(pattern)
match := re.FindStringSubmatch(s)
if match == nil {
return "", false
}
return match[0], true
}
func extractVariablesFromString(s, prefix string) ([]string, bool) {
pattern := fmt.Sprintf(braceMatchingRegex, prefix, parameterSubstitution)
re := regexp.MustCompile(pattern)
matches := re.FindAllStringSubmatch(s, -1)
if len(matches) == 0 {
return []string{}, false
}
vars := make([]string, len(matches))
for i, match := range matches {
groups := matchGroups(match, re)
// foo -> foo
// foo.bar -> foo
// foo.bar.baz -> foo
vars[i] = strings.SplitN(groups["var"], ".", 2)[0]
}
return vars, true
}
func matchGroups(matches []string, pattern *regexp.Regexp) map[string]string {
groups := make(map[string]string)
for i, name := range pattern.SubexpNames()[1:] {
groups[name] = matches[i+1]
}
return groups
}
func ApplyReplacements(in string, replacements map[string]string) string {
for k, v := range replacements {
in = strings.Replace(in, fmt.Sprintf("$(%s)", k), v, -1)
}
return in
}
// Take an input string, and output an array of strings related to possible arrayReplacements. If there aren't any
// areas where the input can be split up via arrayReplacements, then just return an array with a single element,
// which is ApplyReplacements(in, replacements).
func ApplyArrayReplacements(in string, stringReplacements map[string]string, arrayReplacements map[string][]string) []string {
for k, v := range arrayReplacements {
stringToReplace := fmt.Sprintf("$(%s)", k)
// If the input string matches a replacement's key (without padding characters), return the corresponding array.
// Note that the webhook should prevent all instances where this could evaluate to false.
if (strings.Count(in, stringToReplace) == 1) && len(in) == len(stringToReplace) {
return v
}
// same replace logic for star array expressions
starStringtoReplace := fmt.Sprintf("$(%s[*])", k)
if (strings.Count(in, starStringtoReplace) == 1) && len(in) == len(starStringtoReplace) {
return v
}
}
// Otherwise return a size-1 array containing the input string with standard stringReplacements applied.
return []string{ApplyReplacements(in, stringReplacements)}
}