-
Notifications
You must be signed in to change notification settings - Fork 43
/
config.go
278 lines (232 loc) · 7.48 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
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
package main
import (
"errors"
"fmt"
"os"
"path/filepath"
"runtime"
"github.com/BurntSushi/toml"
"github.com/jessevdk/go-flags"
"github.com/zyedidia/eget/home"
)
type ConfigGlobal struct {
All bool `toml:"all"`
DownloadOnly bool `toml:"download_only"`
File string `toml:"file"`
GithubToken string `toml:"github_token"`
Quiet bool `toml:"quiet"`
ShowHash bool `toml:"show_hash"`
Source bool `toml:"download_source"`
System string `toml:"system"`
Target string `toml:"target"`
UpgradeOnly bool `toml:"upgrade_only"`
}
type ConfigRepository struct {
All bool `toml:"all"`
AssetFilters []string `toml:"asset_filters"`
DownloadOnly bool `toml:"download_only"`
File string `toml:"file"`
Name string `toml:"name"`
Quiet bool `toml:"quiet"`
ShowHash bool `toml:"show_hash"`
Source bool `toml:"download_source"`
System string `toml:"system"`
Tag string `toml:"tag"`
Target string `toml:"target"`
UpgradeOnly bool `toml:"upgrade_only"`
Verify string `toml:"verify_sha256"`
DisableSSL bool `toml:"disable_ssl"`
}
type Config struct {
Meta struct {
Keys []string
MetaData *toml.MetaData
}
Global ConfigGlobal `toml:"global"`
Repositories map[string]ConfigRepository
}
func LoadConfigurationFile(path string) (Config, error) {
var conf Config
meta, err := toml.DecodeFile(path, &conf)
if err != nil {
return conf, err
}
meta, err = toml.DecodeFile(path, &conf.Repositories)
conf.Meta.Keys = make([]string, len(meta.Keys()))
for i, key := range meta.Keys() {
conf.Meta.Keys[i] = key.String()
}
conf.Meta.MetaData = &meta
return conf, err
}
func GetOSConfigPath(homePath string) string {
var configDir string
defaultConfig := map[string]string{
"windows": "LocalAppData",
"default": ".config",
}
var goos string
switch runtime.GOOS {
case "windows":
configDir = os.Getenv("LOCALAPPDATA")
goos = "windows"
default:
configDir = os.Getenv("XDG_CONFIG_HOME")
goos = "default"
}
if configDir == "" {
configDir = filepath.Join(homePath, defaultConfig[goos])
}
return filepath.Join(configDir, "eget", "eget.toml")
}
func InitializeConfig() (*Config, error) {
var err error
var config Config
homePath, _ := os.UserHomeDir()
appName := "eget"
if configFilePath, ok := os.LookupEnv("EGET_CONFIG"); ok {
if config, err = LoadConfigurationFile(configFilePath); err != nil && !errors.Is(err, os.ErrNotExist) {
return nil, fmt.Errorf("%s: %w", configFilePath, err)
}
} else {
configFilePath := homePath + "/." + appName + ".toml"
if config, err = LoadConfigurationFile(configFilePath); err != nil && !errors.Is(err, os.ErrNotExist) {
return nil, fmt.Errorf("%s: %w", configFilePath, err)
}
}
if err != nil {
configFilePath := appName + ".toml"
if config, err = LoadConfigurationFile(configFilePath); err != nil && !errors.Is(err, os.ErrNotExist) {
return nil, fmt.Errorf("%s: %w", configFilePath, err)
}
}
configFallBackPath := GetOSConfigPath(homePath)
if err != nil && configFallBackPath != "" {
if config, err = LoadConfigurationFile(configFallBackPath); err != nil && !errors.Is(err, os.ErrNotExist) {
return nil, fmt.Errorf("%s: %w", configFallBackPath, err)
}
}
if err != nil {
config = Config{
Global: ConfigGlobal{
All: false,
DownloadOnly: false,
GithubToken: "",
Quiet: false,
ShowHash: false,
Source: false,
UpgradeOnly: false,
},
Repositories: make(map[string]ConfigRepository, 0),
}
return &config, nil
}
delete(config.Repositories, "global")
// set default global values
if !config.Meta.MetaData.IsDefined("global", "all") {
config.Global.All = false
}
if !config.Meta.MetaData.IsDefined("global", "github_token") {
config.Global.GithubToken = ""
}
if !config.Meta.MetaData.IsDefined("global", "quiet") {
config.Global.Quiet = false
}
if !config.Meta.MetaData.IsDefined("global", "download_only") {
config.Global.DownloadOnly = false
}
if !config.Meta.MetaData.IsDefined("global", "show_hash") {
config.Global.ShowHash = false
}
if !config.Meta.MetaData.IsDefined("global", "upgrade_only") {
config.Global.UpgradeOnly = false
}
// set default repository values
for name, repo := range config.Repositories {
if !config.Meta.MetaData.IsDefined(name, "all") {
repo.All = config.Global.All
}
if !config.Meta.MetaData.IsDefined(name, "asset_filters") {
repo.AssetFilters = []string{}
}
if !config.Meta.MetaData.IsDefined(name, "download_only") {
repo.DownloadOnly = config.Global.DownloadOnly
}
if !config.Meta.MetaData.IsDefined(name, "quiet") {
repo.Quiet = config.Global.Quiet
}
if !config.Meta.MetaData.IsDefined(name, "show_hash") {
repo.ShowHash = config.Global.ShowHash
}
if !config.Meta.MetaData.IsDefined(name, "target") && config.Global.Target != "" {
repo.Target = config.Global.Target
}
if !config.Meta.MetaData.IsDefined(name, "upgrade_only") {
repo.UpgradeOnly = config.Global.UpgradeOnly
}
if !config.Meta.MetaData.IsDefined(name, "download_source") {
repo.Source = config.Global.Source
}
config.Repositories[name] = repo
}
return &config, nil
}
func update[T any](config T, cli *T) T {
if cli == nil {
return config
}
return *cli
}
// Move the loaded configuration file global options into the opts variable
func SetGlobalOptionsFromConfig(config *Config, parser *flags.Parser, opts *Flags, cli CliFlags) error {
if config.Global.GithubToken != "" && os.Getenv("EGET_GITHUB_TOKEN") == "" {
os.Setenv("EGET_GITHUB_TOKEN", config.Global.GithubToken)
}
opts.Tag = update("", cli.Tag)
opts.Prerelease = update(false, cli.Prerelease)
opts.Source = update(config.Global.Source, cli.Source)
targ := update(config.Global.Target, cli.Output)
expanded, err := home.Expand(targ)
if err != nil {
return err
}
opts.Output = expanded
opts.System = update(config.Global.System, cli.System)
opts.ExtractFile = update("", cli.ExtractFile)
opts.All = update(config.Global.All, cli.All)
opts.Quiet = update(config.Global.Quiet, cli.Quiet)
opts.DLOnly = update(config.Global.DownloadOnly, cli.DLOnly)
opts.UpgradeOnly = update(config.Global.UpgradeOnly, cli.UpgradeOnly)
opts.Asset = update([]string{}, cli.Asset)
opts.Hash = update(config.Global.ShowHash, cli.Hash)
opts.Verify = update("", cli.Verify)
opts.Remove = update(false, cli.Remove)
opts.DisableSSL = update(false, cli.DisableSSL)
return nil
}
// Move the loaded configuration file project options into the opts variable
func SetProjectOptionsFromConfig(config *Config, parser *flags.Parser, opts *Flags, cli CliFlags, projectName string) error {
for name, repo := range config.Repositories {
if name == projectName {
opts.All = update(repo.All, cli.All)
opts.Asset = update(repo.AssetFilters, cli.Asset)
opts.DLOnly = update(repo.DownloadOnly, cli.DLOnly)
opts.ExtractFile = update(repo.File, cli.ExtractFile)
opts.Hash = update(repo.ShowHash, cli.Hash)
targ, err := home.Expand(repo.Target)
if err != nil {
return err
}
opts.Output = update(targ, cli.Output)
opts.Quiet = update(repo.Quiet, cli.Quiet)
opts.Source = update(repo.Source, cli.Source)
opts.System = update(repo.System, cli.System)
opts.Tag = update(repo.Tag, cli.Tag)
opts.UpgradeOnly = update(repo.UpgradeOnly, cli.UpgradeOnly)
opts.Verify = update(repo.Verify, cli.Verify)
opts.DisableSSL = update(repo.DisableSSL, cli.DisableSSL)
break
}
}
return nil
}