-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
166 lines (141 loc) · 3.87 KB
/
main.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
// Copyright 2017 Matthew Hartstonge
//
// 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 main
import (
// Standard Library Imports
"encoding/base64"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
// External Imports
log "github.com/sirupsen/logrus"
"gopkg.in/yaml.v2"
// Internal Imports
"github.com/MatthewHartstonge/b64secrets/models"
)
const (
globLocal = "./*.yml"
globRecursive = "./**/*.yml"
)
func generateBase64SecretsFile(fp string, wpf string) error {
logger := log.WithFields(log.Fields{
"method": "generateBase64SecretsFile",
})
f, err := ioutil.ReadFile(fp)
if err != nil {
logger.WithFields(log.Fields{
"error": err,
}).Error("file read failure")
return err
}
// Split on documents
documents := strings.Split(string(f), "\n---")
var parsedDocs [][]byte
for _, doc := range documents {
secretDefinition := models.Secret{}
yaml.Unmarshal([]byte(doc), &secretDefinition)
if secretDefinition.Kind != "Secret" {
continue
} else if secretDefinition.Type != "Opaque" {
continue
}
for key, value := range secretDefinition.Data {
secretDefinition.Data[key] = base64.StdEncoding.EncodeToString([]byte(value))
}
base64doc, err := yaml.Marshal(secretDefinition)
if err != nil {
logger.WithFields(log.Fields{
"error": err,
}).Error("yaml marshaling failure")
return err
}
parsedDocs = append(parsedDocs, base64doc)
}
if len(parsedDocs) > 0 {
base64SecretsFile, err := os.Create(wpf)
if err != nil {
logger.WithFields(log.Fields{
"error": err,
}).Error("file write failure")
return err
}
defer base64SecretsFile.Close()
for i := range parsedDocs {
_, err := base64SecretsFile.WriteString("---\n")
if err != nil {
logger.WithFields(log.Fields{
"error": err,
}).Error("file write failure")
}
_, err = base64SecretsFile.Write(parsedDocs[i])
if err != nil {
logger.WithFields(log.Fields{
"error": err,
}).Error("file write failure")
}
}
// Flush file to disk
err = base64SecretsFile.Sync()
if err != nil {
logger.WithFields(log.Fields{
"error": err,
}).Error("file write failure")
}
logger.WithFields(log.Fields{
"originalPath": fp,
"conformedPath": wpf,
}).Info("Created conformed secrets file")
}
return nil
}
func globYamlFiles() []string {
logger := log.WithFields(log.Fields{
"method": "globYamlFiles",
})
glob, err := filepath.Glob(globLocal)
if err != nil {
logger.WithFields(log.Fields{
"error": err,
}).Fatal("Local File globbing failed")
}
recurseGlob, err := filepath.Glob(globRecursive)
if err != nil {
logger.WithFields(log.Fields{
"error": err,
}).Fatal("Recursive File globbing failed")
}
// Append local glob to recursive glob as there generally should be less to append
glob = append(recurseGlob, glob...)
return glob
}
func main() {
logger := log.WithFields(log.Fields{
"method": "main",
})
logger.Info("b64secrets has started...")
for _, readFilepath := range globYamlFiles() {
// Don't create secrets from already converted secrets files
if strings.Contains(readFilepath, ".base64.yml") {
continue
}
writeFilepath := fmt.Sprintf("%s.base64.yml", strings.TrimRight(readFilepath, ".yml"))
err := generateBase64SecretsFile(readFilepath, writeFilepath)
if err != nil {
logger.Error("error writing secrets file... Continuing...")
}
}
logger.Info("b64secrets has finished")
}