-
-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathlocalconfig.go
More file actions
415 lines (361 loc) · 9.44 KB
/
Copy pathlocalconfig.go
File metadata and controls
415 lines (361 loc) · 9.44 KB
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
package config
import (
"fmt"
"os"
"path"
"slices"
configUtil "github.com/microcks/microcks-cli/pkg/util"
)
type LocalConfig struct {
CurrentContext string `yaml:"current-context"`
Contexts []ContextRef `yaml:"contexts"`
Servers []Server `yaml:"servers"`
Users []User `yaml:"users"`
Instances []Instance `yaml:"instances"`
Auths []Auth `yaml:"auths"`
}
type ContextRef struct {
Name string `yaml:"name"`
Server string `yaml:"server"`
User string `yaml:"user"`
Instance string `yaml:"instance"`
}
type Context struct {
Name string
User User
Server Server
Instance Instance
}
type User struct {
Name string `yaml:"name"`
AuthToken string `yaml:"auth-token"`
RefreshToken string `yaml:"refresh-token"`
}
type Server struct {
Name string `yaml:"name"`
Server string `yaml:"server"`
InsecureTLS bool `yaml:"insecureTLS"`
KeycloakEnable bool `yaml:"keycloakEnable"`
}
type Instance struct {
Name string `yaml:"name"`
Image string `yaml:"image"`
Status string `yaml:"status"`
Port string `yaml:"port"`
ContainerID string `yaml:"containerID"`
AutoRemove bool `yaml:"autoRemove"`
Driver string `yaml:"driver"`
}
type Auth struct {
Server string
ClientId string
ClientSecret string
}
type WatchConfig struct {
Entries []WatchEntry `yaml:"entries"`
}
type WatchEntry struct {
FilePath string `yaml:"filePath"`
Context []string `yaml:"context"`
MainArtifact bool `yaml:"mainartifact"`
}
// ReadLocalConfig loads up the local configuration file. Returns nil if config does not exist
func ReadLocalConfig(path string) (*LocalConfig, error) {
var err error
var config LocalConfig
// check file permission only when microcks config exists
if fi, err := os.Stat(path); err == nil {
err = getFilePermission(fi)
if err != nil {
return nil, err
}
}
err = configUtil.UnmarshalLocalFile(path, &config)
if os.IsNotExist(err) {
return nil, nil
}
err = ValidateLocalConfig(config)
if err != nil {
return nil, err
}
return &config, nil
}
// DefaultConfigDir returns the local configuration path for settings such as cached authentication tokens.
func DefaultConfigDir() (string, error) {
configDir := os.Getenv("MICROCKS_CONFIG_DIR")
if configDir != "" {
return configDir, nil
}
homeDir, err := getHomeDir()
if err != nil {
return "", nil
}
configDir = path.Join(homeDir, ".config", "microcks")
return configDir, nil
}
func getHomeDir() (string, error) {
homedir, err := os.UserHomeDir()
if err != nil {
return "", err
}
return homedir, nil
}
// DefaultLocalConfigPath returns the local configuration path for settings such as cached authentication tokens.
func DefaultLocalConfigPath() (string, error) {
dir, err := DefaultConfigDir()
if err != nil {
return "", err
}
return path.Join(dir, "config"), nil
}
// DefaultLocalWatchPath returns the local watch configuration path.
func DefaultLocalWatchPath() (string, error) {
dir, err := DefaultConfigDir()
if err != nil {
return "", err
}
return path.Join(dir, "watch"), nil
}
// ValidateLocalConfig validates the local configuration.
func ValidateLocalConfig(config LocalConfig) error {
if config.CurrentContext == "" {
return nil
}
if _, err := config.ResolveContext(config.CurrentContext); err != nil {
return fmt.Errorf("local config invalid: %w", err)
}
return nil
}
// WriteLocalConfig writes a new local configuration file.
func WriteLocalConfig(config LocalConfig, configPath string) error {
err := os.MkdirAll(path.Dir(configPath), os.ModePerm)
if err != nil {
return err
}
return configUtil.MarshalLocalYAMLFile(configPath, &config)
}
// DeleteLocalConfig deletes the local configuration file.
func (l *LocalConfig) DeleteLocalConfig(configPath string) error {
_, err := os.Stat(configPath)
if os.IsNotExist(err) {
return err
}
return os.Remove(configPath)
}
// ResolveContext resolves the specified context. If unspecified, resolves the current context
func (l *LocalConfig) ResolveContext(name string) (*Context, error) {
if name == "" {
if l.CurrentContext == "" {
return nil, fmt.Errorf("local config: current-context unset")
}
name = l.CurrentContext
}
for _, ctx := range l.Contexts {
if ctx.Name == name {
server, err := l.GetServer(ctx.Server)
if err != nil {
return nil, err
}
user, err := l.GetUser(ctx.User)
if err != nil {
return nil, err
}
instance, err := l.GetInstance(ctx.Instance)
if err != nil {
instance = &Instance{}
}
return &Context{
Name: ctx.Name,
Server: *server,
User: *user,
Instance: *instance,
}, nil
}
}
return nil, fmt.Errorf("Context '%s' undefined", name)
}
// UpsertContext upserts a context reference.
func (l *LocalConfig) UpsertContext(context ContextRef) {
for i, c := range l.Contexts {
if c.Name == context.Name {
l.Contexts[i] = context
return
}
}
l.Contexts = append(l.Contexts, context)
}
// RemoveContext and returns server name and true if context was removed successfully
func (l *LocalConfig) RemoveContext(serverName string) (string, bool) {
for i, c := range l.Contexts {
if c.Name == serverName {
l.Contexts = append(l.Contexts[:i], l.Contexts[i+1:]...)
return c.Server, true
}
}
return "", false
}
// RemoveToken and returns true if user was removed successfully
func (l *LocalConfig) RemoveToken(serverName string) bool {
for i, u := range l.Users {
if u.Name == serverName {
l.Users[i].RefreshToken = ""
l.Users[i].AuthToken = ""
return true
}
}
return false
}
// GetUser retrieves a user by name.
func (l *LocalConfig) GetUser(name string) (*User, error) {
for _, u := range l.Users {
if u.Name == name {
return &u, nil
}
}
return nil, fmt.Errorf("User '%s' undefined", name)
}
// UpsertUser upserts a user.
func (l *LocalConfig) UpsertUser(user User) {
for i, u := range l.Users {
if u.Name == user.Name {
l.Users[i] = user
return
}
}
l.Users = append(l.Users, user)
}
// Returns true if user was removed successfully
func (l *LocalConfig) RemoveUser(serverName string) bool {
for i, u := range l.Users {
if u.Name == serverName {
l.Users = append(l.Users[:i], l.Users[i+1:]...)
return true
}
}
return false
}
func (l *LocalConfig) GetServer(name string) (*Server, error) {
for _, s := range l.Servers {
if s.Server == name {
return &s, nil
}
}
return nil, fmt.Errorf("Server '%s' undefined", name)
}
func (l *LocalConfig) UpsertServer(server Server) {
for i, s := range l.Servers {
if s.Server == server.Server {
l.Servers[i] = server
return
}
}
l.Servers = append(l.Servers, server)
}
// Returns true if server was removed successfully
func (l *LocalConfig) RemoveServer(serverName string) bool {
for i, s := range l.Servers {
if s.Server == serverName {
l.Servers = append(l.Servers[:i], l.Servers[i+1:]...)
return true
}
}
return false
}
func (l *LocalConfig) GetInstance(name string) (*Instance, error) {
for _, i := range l.Instances {
if i.Name == name {
return &i, nil
}
}
return nil, fmt.Errorf("Instance '%s' undefined", name)
}
func (l *LocalConfig) UpsertInstance(instance Instance) {
for a, i := range l.Instances {
if i.ContainerID == instance.ContainerID {
l.Instances[a] = instance
return
}
}
l.Instances = append(l.Instances, instance)
}
// Returns true if server was removed successfully
func (l *LocalConfig) RemoveInstance(instanceName string) bool {
if instanceName == "" {
return true
}
for a, i := range l.Instances {
if i.Name == instanceName {
l.Instances = append(l.Instances[:a], l.Instances[a+1:]...)
return true
}
}
return false
}
func (l *LocalConfig) IsEmpty() bool {
return len(l.Servers) == 0
}
func (l *LocalConfig) GetAuth(server string) (*Auth, error) {
for _, a := range l.Auths {
if a.Server == server {
return &a, nil
}
}
return nil, fmt.Errorf("Auth for '%s' is undefined", server)
}
func (l *LocalConfig) UpsertAuth(auth Auth) {
for i, a := range l.Auths {
if a.Server == auth.Server {
l.Auths[i] = auth
return
}
}
l.Auths = append(l.Auths, auth)
}
func (l *LocalConfig) RemoveAuth(server string) bool {
for i, a := range l.Auths {
if a.Server == server {
l.Auths = append(l.Auths[:i], l.Auths[i+1:]...)
return true
}
}
return false
}
// UpsertEntry upserts a watch entry.
func (w *WatchConfig) UpsertEntry(entry WatchEntry) {
for i, e := range w.Entries {
if e.FilePath == entry.FilePath {
contexts := w.Entries[i].Context
if !slices.Contains(contexts, entry.Context[0]) {
entry.Context = append(entry.Context, contexts...)
}
w.Entries[i] = entry
return
}
}
w.Entries = append(w.Entries, entry)
}
// ReadLocalWatchConfig loads up the local watch configuration file. Returns nil if config does not exist
func ReadLocalWatchConfig(path string) (*WatchConfig, error) {
var err error
var config WatchConfig
// check file permission only when microcks config exists
if fi, err := os.Stat(path); err == nil {
err = getFilePermission(fi)
if err != nil {
return nil, err
}
}
err = configUtil.UnmarshalLocalFile(path, &config)
if os.IsNotExist(err) {
return nil, nil
}
return &config, nil
}
// WriteLocalWatchConfig writes a new local watch configuration file.
func WriteLocalWatchConfig(config WatchConfig, cfgPath string) error {
err := os.MkdirAll(path.Dir(cfgPath), os.ModePerm)
if err != nil {
return err
}
return configUtil.MarshalLocalYAMLFile(cfgPath, &config)
}