-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChecksumer.go
113 lines (104 loc) · 2.57 KB
/
Checksumer.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
package main
import (
"crypto/sha1"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"sigs.k8s.io/kustomize/v3/pkg/ifc"
"sigs.k8s.io/kustomize/v3/pkg/resmap"
"sigs.k8s.io/kustomize/v3/pkg/transformers"
"sigs.k8s.io/kustomize/v3/pkg/transformers/config"
"sigs.k8s.io/yaml"
"strings"
)
type FileSpec struct {
Key string `json:"key,omitempty" yaml:"key,omitempty"`
Path string `json:"path,omitempty" yaml:"path,omitempty"`
Recurse bool `json:"recurse,omitempty" yaml:"recurse,omitempty"`
}
type plugin struct {
Files []FileSpec `json:"files,omitempty" yaml:"files,omitempty"`
FieldSpecs []config.FieldSpec `json:"fieldSpecs,omitempty" yaml:"fieldSpecs,omitempty"`
loader *ifc.Loader
}
var KustomizePlugin plugin
func (p *plugin) Config(ldr ifc.Loader, rf *resmap.Factory, c []byte) (err error) {
p.Files = nil
p.FieldSpecs = nil
p.loader = &ldr
return yaml.Unmarshal(c, p)
}
func GetFileSpecSignature(fileSpec FileSpec) (sig string, err error) {
var b []byte
i, err := os.Stat(fileSpec.Path)
if err != nil {
return "", err
}
switch t := i.IsDir(); t {
case true:
sigs := make([]string, 0)
files, err := ioutil.ReadDir(fileSpec.Path)
if err != nil {
return "", err
}
for _, f := range files {
filePath := fileSpec.Path + "/" + f.Name()
// TODO: make that a FileSpec field parameter
// ignore hidden files such as git ignore files, etc
if strings.HasPrefix(f.Name(), ".") {
continue
}
if f.IsDir() && fileSpec.Recurse {
s, err := GetFileSpecSignature(FileSpec{
Path: filePath,
Recurse: fileSpec.Recurse,
})
if err != nil {
return "", err
}
b = []byte(s)
}
if !f.IsDir() {
b, err = ioutil.ReadFile(filePath)
}
if err != nil {
return "", err
}
sigs = append(sigs, SHA1Sum(b))
}
b = []byte(strings.Join(sigs[:], ""))
case false:
b, err = ioutil.ReadFile(fileSpec.Path)
if err != nil {
return "", err
}
}
return SHA1Sum(b), err
}
func SHA1Sum(b []byte) string {
h := sha1.New()
h.Write(b)
return fmt.Sprintf("%x", h.Sum(nil))
}
func (p *plugin) Transform(m resmap.ResMap) (err error) {
computedKVs := make(map[string]string, 0)
for _, fileSpec := range p.Files {
// Appending Kustomization root path if path is relative
if !filepath.IsAbs(fileSpec.Path) {
fileSpec.Path = (*p.loader).Root() + "/" + fileSpec.Path
}
computedKVs[fileSpec.Key], err = GetFileSpecSignature(fileSpec)
if err != nil {
return err
}
}
t, err := transformers.NewMapTransformer(
p.FieldSpecs,
computedKVs,
)
if err != nil {
return err
}
return t.Transform(m)
}