-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
57 lines (48 loc) · 1.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
package main
import (
"flag"
"fmt"
)
// CleanerConfig is public collection of necessary settings
type CleanerConfig struct {
profile string
processAll bool
stackToClean string
keep int
verbose bool
yesyesyes bool
}
func NewCleanerConfig() *CleanerConfig {
return &CleanerConfig{
profile: "",
processAll: false,
stackToClean: "",
keep: 0,
verbose: false,
yesyesyes: false,
}
}
// parsecliarguments parses the command line arguments and adds them to the config
func (config *CleanerConfig) parseCLIArguments() {
flag.StringVar(&config.profile, "profile", "", "AWS profile to use.")
flag.StringVar(&config.stackToClean, "stack", "all", "Stack to clean {all stacks|<stackname>}.")
flag.IntVar(&config.keep, "keep", 10, "Number of changesets to keep.")
flag.BoolVar(&config.verbose, "verbose", false, "Verbose logging.")
flag.BoolVar(&config.yesyesyes, "yes", false, "Don't bother me. Do it.")
flag.Parse()
}
func (config *CleanerConfig) validate() error {
if err := checkStringFlagNotEmpty("stack", config.stackToClean); err != nil {
return err
}
if config.stackToClean == "all" {
config.processAll = true
}
return nil
}
func checkStringFlagNotEmpty(name string, f string) error {
if f == "" {
return fmt.Errorf("Missing mandatory parameter: %s", name)
}
return nil
}