-
Notifications
You must be signed in to change notification settings - Fork 876
/
patchesUtils.go
148 lines (126 loc) · 3.46 KB
/
patchesUtils.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
package patch
import (
"path/filepath"
"regexp"
"strings"
wildcard "github.com/kyverno/kyverno/pkg/utils/wildcard"
"github.com/mattbaird/jsonpatch"
)
func generatePatches(src, dst []byte) ([][]byte, error) {
var patchesBytes [][]byte
pp, err := jsonpatch.CreatePatch(src, dst)
if err != nil {
return nil, err
}
sortedPatches := filterAndSortPatches(pp)
for _, p := range sortedPatches {
pbytes, err := p.MarshalJSON()
if err != nil {
return patchesBytes, err
}
patchesBytes = append(patchesBytes, pbytes)
}
return patchesBytes, err
}
// filterAndSortPatches
// 1. filters out patches with the certain paths
// 2. sorts the removal patches(with same path) by the key of index
// in descending order. The sort is required as when removing multiple
// elements from an array, the elements must be removed in descending
// order to preserve each index value.
func filterAndSortPatches(originalPatches []jsonpatch.JsonPatchOperation) []jsonpatch.JsonPatchOperation {
patches := filterInvalidPatches(originalPatches)
result := make([]jsonpatch.JsonPatchOperation, len(patches))
index := getIndexToBeReversed(patches)
if len(index) == 0 {
return patches
}
start := 0
for _, idx := range index {
end := idx[0]
copy(result[start:end], patches[start:end])
reversedPatches := reverse(patches, idx)
copy(result[end:], reversedPatches)
start = idx[1] + 1
}
copy(result[start:], patches[start:])
return result
}
func getIndexToBeReversed(patches []jsonpatch.JsonPatchOperation) [][]int {
removePaths := make([]string, len(patches))
for i, patch := range patches {
if patch.Operation == "remove" {
removePaths[i] = patch.Path
}
}
return getRemoveInterval(removePaths)
}
func getRemoveInterval(removePaths []string) [][]int {
// get paths end with '/number'
regex := regexp.MustCompile(`\/\d+$`)
for i, path := range removePaths {
if !regex.Match([]byte(path)) {
removePaths[i] = ""
}
}
res := [][]int{}
for i := 0; i < len(removePaths); {
if removePaths[i] != "" {
baseDir := filepath.Dir(removePaths[i])
j := i + 1
for ; j < len(removePaths); j++ {
curDir := filepath.Dir(removePaths[j])
if baseDir != curDir {
break
}
}
if i != j-1 {
res = append(res, []int{i, j - 1})
}
i = j
} else {
i++
}
}
return res
}
func reverse(patches []jsonpatch.JsonPatchOperation, interval []int) []jsonpatch.JsonPatchOperation {
res := make([]jsonpatch.JsonPatchOperation, interval[1]-interval[0]+1)
j := 0
for i := interval[1]; i >= interval[0]; i-- {
res[j] = patches[i]
j++
}
return res
}
// filterInvalidPatches filters out patch with the following path:
// - not */metadata/name, */metadata/namespace, */metadata/labels, */metadata/annotations
// - /status
func filterInvalidPatches(patches []jsonpatch.JsonPatchOperation) []jsonpatch.JsonPatchOperation {
res := []jsonpatch.JsonPatchOperation{}
for _, patch := range patches {
if ignorePatch(patch.Path) {
continue
}
res = append(res, patch)
}
return res
}
func ignorePatch(path string) bool {
if strings.Contains(path, "/status") {
return true
}
if wildcard.Match("*/metadata", path) {
return false
}
if strings.Contains(path, "/metadata") {
if !strings.Contains(path, "/metadata/name") &&
!strings.Contains(path, "/metadata/namespace") &&
!strings.Contains(path, "/metadata/annotations") &&
!strings.Contains(path, "/metadata/labels") &&
!strings.Contains(path, "/metadata/ownerReferences") {
return true
}
}
return false
}