-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotenv.go
247 lines (207 loc) · 6.32 KB
/
dotenv.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
// Package dotenv manages the configuration of the application through a .env file and environment
// variables.
//
// The developer creates a .env file locally (and doesn't commit it to source control) with
// information about database connections, logging verbosity, and other settings he or she would
// like to override during development, and these settings will be loaded into environment variables
// when the application starts.
//
// In production, the container or virtual machine OS environment variables may be configured per
// deployment to override any settings relevant to that specific environment. This leaves any
// containers free of configuration files and easily configured externally, as most container
// solutions provide configuration through environment variables.
package dotenv
import (
"bufio"
"errors"
"fmt"
"os"
"path"
"strconv"
"strings"
"time"
)
var (
// ErrBadUserFile returned when the .env file in the user's home directory is invalid.
ErrBadUserFile = errors.New("unable to parse $HOME/.env file")
// ErrBadLocalFile returned when the local .env file (in the same directory as the app) is
// invalid.
ErrBadLocalFile = errors.New("unable to parse .env file")
)
// Load the environment settings from:
//
// * the .env file in the startup directory
// * the .env file in the user's home directory
//
// like they are environment variables. Any existing environment variables are overwritten.
func Load() error {
if home, err := os.UserHomeDir(); err == nil {
userEnv := path.Join(path.Clean(home), ".env")
if exists(userEnv) {
if err := process(userEnv); err != nil {
return ErrBadUserFile
}
}
}
localEnv := ".env"
if exists(localEnv) {
if err := process(localEnv); err != nil {
return ErrBadLocalFile
}
}
return nil
}
// GetString returns the environment variable as a string value. If the environment variable
// doesn't exist, returns the default value if present, otherwise a blank string.
func GetString(key string) string {
if val, set := os.LookupEnv(key); set {
return val
}
if descriptor, ok := Default(key); ok {
if defaultValue, ok := descriptor.DefaultValue.(string); ok {
return defaultValue
}
}
return ""
}
// GetStringSlice returns the environment variable as a string slice value. If the environment
// variable doesn't exist, returns the default value if present, otherwise a nil value. Expects a
// environment variable value to be a comma-separated list of values.
func GetStringSlice(key string) []string {
if val, set := os.LookupEnv(key); set {
sliced := strings.Split(val, ",")
return sliced
}
if descriptor, ok := Default(key); ok {
if defaultValue, ok := descriptor.DefaultValue.([]string); ok {
return defaultValue
}
}
return nil
}
// GetInt returns the environment variable as an integer value. If the environment variable doesn't
// exist or is not an integer, returns the default value if present, otherwise returns 0.
func GetInt(key string) int {
if val, set := os.LookupEnv(key); set {
if ival, err := strconv.Atoi(val); err == nil {
return ival
}
}
if descriptor, ok := Default(key); ok {
if defaultValue, ok := descriptor.DefaultValue.(int); ok {
return defaultValue
}
}
return 0
}
// GetInt64 returns the environment variable as an int64 value. If the environment variable doesn't
// exist or is not an int64, returns the default value if present, otherwise returns 0.
func GetInt64(key string) int64 {
if val, set := os.LookupEnv(key); set {
if ival, err := strconv.ParseInt(val, 10, 64); err == nil {
return ival
}
}
if descriptor, ok := Default(key); ok {
switch defaultValue := descriptor.DefaultValue.(type) {
case int:
return int64(defaultValue)
case int64:
return defaultValue
default:
return 0
}
}
return 0
}
// GetFloat64 returns the environment variable as an float64 value. If the environment variable
// doesn't exist, returns the default value if present, otherwise returns 0.
func GetFloat64(key string) float64 {
if val, set := os.LookupEnv(key); set {
if fval, err := strconv.ParseFloat(val, 64); err == nil {
return fval
}
}
if descriptor, ok := Default(key); ok {
if defaultValue, ok := descriptor.DefaultValue.(float64); ok {
return defaultValue
}
}
return 0
}
// GetBool returns the environment variable as a boolean value. If the environment variable doesn't
// exist, returns the default value if present, otherwise returns false.
func GetBool(key string) bool {
if val, set := os.LookupEnv(key); set {
if strings.EqualFold(val, "true") {
return true
}
}
if descriptor, ok := Default(key); ok {
if defaultValue, ok := descriptor.DefaultValue.(bool); ok {
return defaultValue
}
}
return false
}
// GetDuration returns the environment variable as an time.Duration value. If the environment
// variable doesn't exist, returns the default value if present, otherwise returns 0.
func GetDuration(key string) time.Duration {
if val, set := os.LookupEnv(key); set {
if dval, err := time.ParseDuration(val); err == nil {
return dval
}
}
if descriptor, ok := Default(key); ok {
if defaultValue, ok := descriptor.DefaultValue.(time.Duration); ok {
return defaultValue
}
}
return 0
}
func exists(filename string) bool {
if info, err := os.Stat(filename); err == nil {
if info.IsDir() {
return false
}
return true
}
return false
}
// Process a file into environment variables.
func process(filename string) error {
file, err := os.Open(filename)
if err != nil {
return err
}
defer file.Close()
s := bufio.NewScanner(file)
lineNo := -1
for s.Scan() {
line := s.Text()
lineNo++
if commentIdx := strings.Index(line, "#"); commentIdx == 0 {
continue
} else if commentIdx != -1 {
line = line[0:commentIdx]
}
if strings.TrimSpace(line) == "" {
continue
}
parts := strings.SplitN(line, "=", 2)
if len(parts) != 2 {
// rather than error out, simply skip this line...
// return fmt.Errorf("unable to parse line %s:%d", filename, lineNo)
continue
}
key := strings.TrimSpace(parts[0])
value := strings.TrimSpace(parts[1])
if key == "" || value == "" {
return fmt.Errorf("invalid environment variable assignment %s:%d", filename, lineNo)
}
if err := os.Setenv(key, value); err != nil {
return fmt.Errorf("failed to assign %s value %s (%s:%d)", key, value, filename, lineNo)
}
}
return nil
}