-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathconfig.go
184 lines (162 loc) · 5.98 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
// Copyright 2023 Arduino SA
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package config
import (
// we need this for the config ini in this package
_ "embed"
"fmt"
"os"
"github.com/arduino/go-paths-helper"
"github.com/go-ini/ini"
log "github.com/sirupsen/logrus"
)
// GetCertificatesDir return the directory where SSL certificates are saved
func GetCertificatesDir() *paths.Path {
return GetDataDir()
}
// CertsExist checks if the certs have already been generated
func CertsExist() bool {
certFile := GetCertificatesDir().Join("cert.pem")
return certFile.Exist() //if the certFile is not present we assume there are no certs
}
// GetDataDir returns the full path to the default Arduino Create Agent data directory.
func GetDataDir() *paths.Path {
userDir, err := os.UserHomeDir()
if err != nil {
log.Panicf("Could not get user dir: %s", err)
}
dataDir := paths.New(userDir, ".arduino-create")
if err := dataDir.MkdirAll(); err != nil {
log.Panicf("Could not create data dir: %s", err)
}
return dataDir
}
// GetLogsDir return the directory where logs are saved
func GetLogsDir() *paths.Path {
logsDir := GetDataDir().Join("logs")
if err := logsDir.MkdirAll(); err != nil {
log.Panicf("Can't create logs dir: %s", err)
}
return logsDir
}
// LogsIsEmpty checks if the folder containing crash-reports is empty
func LogsIsEmpty() bool {
return GetLogsDir().NotExist() // if the logs directory is empty we assume there are no crashreports
}
// GetDefaultConfigDir returns the full path to the default Arduino Create Agent configuration directory.
func GetDefaultConfigDir() *paths.Path {
// UserConfigDir returns the default root directory to use
// for user-specific configuration data. Users should create
// their own application-specific subdirectory within this
// one and use that.
//
// On Unix systems, it returns $XDG_CONFIG_HOME as specified by
// https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
// if non-empty, else $HOME/.config.
//
// On Darwin, it returns $HOME/Library/Application Support.
// On Windows, it returns %AppData%.
// On Plan 9, it returns $home/lib.
//
// If the location cannot be determined (for example, $HOME
// is not defined), then it will return an error.
configDir, err := os.UserConfigDir()
if err != nil {
log.Panicf("Can't get user home dir: %s", err)
}
agentConfigDir := paths.New(configDir, "ArduinoCreateAgent")
if err := agentConfigDir.MkdirAll(); err != nil {
log.Panicf("Can't create config dir: %s", err)
}
return agentConfigDir
}
// GetDefaultHomeDir returns the full path to the user's home directory.
func GetDefaultHomeDir() *paths.Path {
// UserHomeDir returns the current user's home directory.
// On Unix, including macOS, it returns the $HOME environment variable.
// On Windows, it returns %USERPROFILE%.
// On Plan 9, it returns the $home environment variable.
homeDir, err := os.UserHomeDir()
if err != nil {
log.Panicf("Can't get user home dir: %s", err)
}
return paths.New(homeDir)
}
//go:embed config.ini
var configContent []byte
// GenerateConfig function will take a directory path as an input
// and will write the default config,ini file to that directory,
// it will panic if something goes wrong
func GenerateConfig(destDir *paths.Path) *paths.Path {
configPath := destDir.Join("config.ini")
// generate the config.ini file directly in destDir
if err := configPath.WriteFile(configContent); err != nil {
// if we do not have a config there's nothing else we can do
panic("cannot generate config: " + err.Error())
}
log.Infof("generated config in %s", configPath)
return configPath
}
// SetInstallCertsIni sets installCerts value to true in the config
func SetInstallCertsIni(filename string, value string) error {
cfg, err := ini.LoadSources(ini.LoadOptions{IgnoreInlineComment: false, AllowPythonMultilineValues: true}, filename)
if err != nil {
return err
}
_, err = cfg.Section("").NewKey("installCerts", value)
if err != nil {
return err
}
err = cfg.SaveTo(filename)
if err != nil {
return err
}
return nil
}
// GetConfigPath returns the path to the config file
func GetConfigPath() *paths.Path {
// Let's handle the config
configDir := GetDefaultConfigDir()
var configPath *paths.Path
// see if the env var is defined, if it is take the config from there, this will override the default path
if envConfig := os.Getenv("ARDUINO_CREATE_AGENT_CONFIG"); envConfig != "" {
configPath = paths.New(envConfig)
if configPath.NotExist() {
panic(fmt.Sprintf("config from env var %s does not exists", envConfig))
}
log.Infof("using config from env variable: %s", configPath)
} else if defaultConfigPath := configDir.Join("config.ini"); defaultConfigPath.Exist() {
// by default take the config from the ~/.arduino-create/config.ini file
configPath = defaultConfigPath
log.Infof("using config from default: %s", configPath)
} else {
// Fall back to the old config.ini location
src, _ := os.Executable()
oldConfigPath := paths.New(src).Parent().Join("config.ini")
if oldConfigPath.Exist() {
err := oldConfigPath.CopyTo(defaultConfigPath)
if err != nil {
log.Errorf("cannot copy old %s, to %s, generating new config", oldConfigPath, configPath)
} else {
configPath = defaultConfigPath
log.Infof("copied old %s, to %s", oldConfigPath, configPath)
}
}
}
if configPath == nil {
configPath = GenerateConfig(configDir)
}
return configPath
}