-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
227 lines (188 loc) · 5.33 KB
/
config.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
package main
import (
"fmt"
"os"
"path/filepath"
"sort"
"time"
"gopkg.in/yaml.v2"
)
const defaultConfigPath = "~/.kube/config"
func readConfig(path string) (map[string]interface{}, error) {
expandedPath := expandPath(path)
// Check if the file exists
if _, err := os.Stat(expandedPath); os.IsNotExist(err) {
// If it doesn't exist, create an empty config file
fmt.Printf("Config file not found at %s. Creating an empty config...\n", expandedPath)
if err := createConfigFromFile(expandedPath, ""); err != nil {
return nil, fmt.Errorf("failed to create config file: %v", err)
}
}
data, err := os.ReadFile(expandedPath)
if err != nil {
return nil, fmt.Errorf("failed to read config file: %v", err)
}
var config map[string]interface{}
err = yaml.Unmarshal(data, &config)
if err != nil {
return nil, fmt.Errorf("failed to parse config file: %v", err)
}
return config, nil
}
func createConfigFromFile(configPath, inputPath string) error {
// If inputPath is empty, create an empty config file
if inputPath == "" {
emptyConfig := map[string]interface{}{
"apiVersion": "v1",
"kind": "Config",
"clusters": []interface{}{},
"contexts": []interface{}{},
"users": []interface{}{},
}
return writeConfig(configPath, emptyConfig)
}
// Read the input file
inputData, err := os.ReadFile(inputPath)
if err != nil {
return fmt.Errorf("failed to read input file: %v", err)
}
// Create the directory if it doesn't exist
dir := filepath.Dir(configPath)
if err := os.MkdirAll(dir, 0755); err != nil {
return fmt.Errorf("failed to create directory: %v", err)
}
// Write the input file contents to the new config file
if err := os.WriteFile(configPath, inputData, 0600); err != nil {
return fmt.Errorf("failed to write config file: %v", err)
}
fmt.Printf("Created new config file at %s\n", configPath)
return nil
}
func writeConfig(path string, config map[string]interface{}) error {
data, err := yaml.Marshal(config)
if err != nil {
return fmt.Errorf("failed to marshal config: %v", err)
}
err = os.WriteFile(path, data, 0600)
if err != nil {
return fmt.Errorf("failed to write config file: %v", err)
}
return nil
}
func backupConfig(path string) (string, error) {
backupPath := path + "." + time.Now().Format("20060102150405") + ".bak"
err := copyFile(path, backupPath)
if err != nil {
return "", fmt.Errorf("failed to create backup: %v", err)
}
return backupPath, nil
}
func copyFile(src, dst string) error {
input, err := os.ReadFile(src)
if err != nil {
return err
}
return os.WriteFile(dst, input, 0600)
}
func getClusterNames(configPath string) ([]string, error) {
config, err := readConfig(configPath)
if err != nil {
return nil, err
}
var clusterNames []string
if clusters, ok := config["clusters"].([]interface{}); ok {
for _, cluster := range clusters {
if c, ok := cluster.(map[interface{}]interface{}); ok {
if name, ok := c["name"].(string); ok {
clusterNames = append(clusterNames, name)
}
}
}
}
sort.Strings(clusterNames)
return clusterNames, nil
}
func addClusterConfig(mainConfigPath, newConfigPath string) error {
mainConfig, err := readConfig(mainConfigPath)
if err != nil {
return err
}
newConfig, err := readConfig(newConfigPath)
if err != nil {
return err
}
backupPath, err := backupConfig(mainConfigPath)
if err != nil {
return err
}
// Merge new config into main config
for _, key := range []string{"clusters", "contexts", "users"} {
if newItems, ok := newConfig[key].([]interface{}); ok {
if mainItems, ok := mainConfig[key].([]interface{}); ok {
mainConfig[key] = append(mainItems, newItems...)
} else {
mainConfig[key] = newItems
}
}
}
err = writeConfig(mainConfigPath, mainConfig)
if err != nil {
return err
}
fmt.Printf("New cluster config added. Backup created at %s\n", backupPath)
return nil
}
func removeClusterConfig(mainConfigPath, clusterName string) error {
config, err := readConfig(mainConfigPath)
if err != nil {
return err
}
backupPath, err := backupConfig(mainConfigPath)
if err != nil {
return err
}
removed := false
for _, key := range []string{"clusters", "contexts", "users"} {
if items, ok := config[key].([]interface{}); ok {
newItems := make([]interface{}, 0, len(items))
for _, item := range items {
if m, ok := item.(map[interface{}]interface{}); ok {
if m["name"] != clusterName {
newItems = append(newItems, item)
} else {
removed = true
}
}
}
config[key] = newItems
}
}
if !removed {
return fmt.Errorf("cluster %s not found", clusterName)
}
err = writeConfig(mainConfigPath, config)
if err != nil {
return err
}
fmt.Printf("Cluster %s removed. Backup created at %s\n", clusterName, backupPath)
return nil
}
func rollbackConfig(mainConfigPath string) error {
dir := filepath.Dir(mainConfigPath)
base := filepath.Base(mainConfigPath)
files, err := filepath.Glob(filepath.Join(dir, base+".*.bak"))
if err != nil {
return fmt.Errorf("failed to find backup files: %v", err)
}
if len(files) == 0 {
return fmt.Errorf("no backup files found")
}
sort.Sort(sort.Reverse(sort.StringSlice(files)))
latestBackup := files[0]
err = copyFile(latestBackup, mainConfigPath)
if err != nil {
return fmt.Errorf("failed to restore from backup: %v", err)
}
fmt.Printf("Config rolled back to %s\n", latestBackup)
return nil
}