-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathargs.go
101 lines (75 loc) · 3.01 KB
/
args.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
package main
import (
"flag"
"os"
"strings"
"github.com/sirupsen/logrus"
"gitlab.com/yakshaving.art/hurrdurr/version"
)
// Args is used to load all the flags and arguments provided by the user
type Args struct {
ConfigFile string
GitlabToken string
GitlabBaseURL string
GhostUser string
DryRun bool
ShowVersion bool
Debug bool
Trace bool
ChecksumCheck bool
ManageACLs bool
ManageUsers bool
ManageBots bool
BotUsernameRegex string
AutoDevOpsMode bool
YoloMode bool
SnoopDepth int
Concurrency int
}
func parseArgs() Args {
args := Args{}
flag.BoolVar(&args.ShowVersion, "version", false, "show version and exit")
flag.BoolVar(&args.DryRun, "dryrun", false, "executes in dryrun mode. Avoids making any change")
flag.BoolVar(&args.Debug, "debug", false, "executes with logging in debug mode")
flag.BoolVar(&args.Trace, "trace", false, "executes with logging in trace mode (more verbose than debug)")
flag.BoolVar(&args.ChecksumCheck, "checksum-check", false, "validates the configuration checksum "+
"reading it from a file called as the configuratio file ended in .md5")
flag.StringVar(&args.ConfigFile, "config", "config.yaml", "configuration file to load")
flag.StringVar(&args.GhostUser, "ghost-user", "ghost", "system wide gitlab ghost user.")
flag.BoolVar(&args.ManageACLs, "manage-acls", false, "performs diffs of groups and projects")
flag.BoolVar(&args.ManageUsers, "manage-users", false, "performs diffs of user attributes")
flag.BoolVar(&args.ManageBots, "manage-bots", false, "manage bot users")
flag.BoolVar(&args.AutoDevOpsMode, "autodevopsmode", false,
"where you have no admin rights but still do what you gotta do")
flag.BoolVar(&args.YoloMode, "yolo-force-secrets-overwrite", false,
"life is too short to not overwrite group and project environment variables")
flag.IntVar(&args.SnoopDepth, "snoopdepth", 0, "max depth to report unhandled groups. 0 means all")
flag.IntVar(&args.Concurrency, "concurrency", 50, "how many concurrent jobs we allow when pre-loading from Gitlab")
flag.Parse()
args.GitlabToken = os.Getenv("GITLAB_TOKEN")
args.GitlabBaseURL = os.Getenv("GITLAB_BASEURL")
args.BotUsernameRegex = os.Getenv("BOT_USERNAME_REGEX")
if args.ShowVersion {
logrus.Printf(version.GetVersion())
os.Exit(0)
}
if args.GitlabToken == "" {
logrus.Fatal("GITLAB_TOKEN is a required environment variable")
}
if args.GitlabBaseURL == "" {
logrus.Fatal("GITLAB_BASEURL is a required environment variable")
}
if !strings.HasPrefix(args.GitlabBaseURL, "https://") {
logrus.Fatal("Validate error: base_url should use https:// scheme")
}
if !strings.HasSuffix(args.GitlabBaseURL, "/api/v4/") {
logrus.Fatal("Validate error: base_url should end with '/api/v4/'")
}
if !(args.ManageACLs || args.ManageUsers) {
logrus.Fatal("Nothing to manage, set one of -manage-acls or -manage-users")
}
if args.ManageBots && args.BotUsernameRegex == "" {
logrus.Fatalf("bot user validation regex can't be empty when managing bots")
}
return args
}