-
Notifications
You must be signed in to change notification settings - Fork 657
Expand file tree
/
Copy pathenvparse.go
More file actions
335 lines (293 loc) · 7.81 KB
/
envparse.go
File metadata and controls
335 lines (293 loc) · 7.81 KB
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
// Package envparse is a fork of the github.com/joho/godotenv parser.
//
// This fork is based on master which has some minor fixes[1] since the v1.5.1
// we previously used.
//
// [1] https://github.com/joho/godotenv/compare/v1.5.1...main
//
// -------
//
// # Copyright (c) 2013 John Barton
//
// # MIT License
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package envparse
import (
"bytes"
"errors"
"io"
"strings"
"unicode"
)
// Parse reads an env file from io.Reader, returning a map of keys and values.
func Parse(r io.Reader) (map[string]string, error) {
data, err := io.ReadAll(r)
if err != nil {
return nil, err
}
return ParseData(data)
}
// ParseData is like Parse but works on a string or []byte slice.
func ParseData[T ~string | ~[]byte](data T) (map[string]string, error) {
buf := []byte(data)
if _, ok := any(data).([]byte); ok {
// since we use data as scratch space
buf = bytes.Clone(buf)
}
return parseData(buf)
}
// parseData will mutate data during parsing, use ParseData to avoid this.
func parseData(data []byte) (map[string]string, error) {
out := make(map[string]string)
if err := parseBytes([]byte(data), out); err != nil {
return nil, err
}
return out, nil
}
const (
charComment = '#'
prefixSingleQuote = '\''
prefixDoubleQuote = '"'
exportPrefix = "export"
)
func parseBytes(src []byte, out map[string]string) error {
src = bytes.Replace(src, []byte("\r\n"), []byte("\n"), -1)
cutset := src
for {
cutset = getStatementStart(cutset)
if cutset == nil {
// reached end of file
break
}
key, left, err := locateKeyName(cutset)
if err != nil {
return err
}
value, left, err := extractVarValue(left)
if err != nil {
return err
}
out[key] = value
cutset = left
}
return nil
}
// getStatementPosition returns position of statement begin.
//
// It skips any comment line or non-whitespace character.
func getStatementStart(src []byte) []byte {
pos := indexOfNonSpaceChar(src)
if pos == -1 {
return nil
}
src = src[pos:]
if src[0] != charComment {
return src
}
// skip comment section
pos = bytes.IndexFunc(src, isCharFunc('\n'))
if pos == -1 {
return nil
}
return getStatementStart(src[pos:])
}
// locateKeyName locates and parses key name and returns rest of slice
func locateKeyName(src []byte) (key string, cutset []byte, err error) {
// trim "export" and space at beginning
src = bytes.TrimLeftFunc(src, isSpace)
if bytes.HasPrefix(src, []byte(exportPrefix)) {
trimmed := bytes.TrimPrefix(src, []byte(exportPrefix))
if bytes.IndexFunc(trimmed, isSpace) == 0 {
src = bytes.TrimLeftFunc(trimmed, isSpace)
}
}
// locate key name end and validate it in single loop
offset := 0
loop:
for i, char := range src {
rchar := rune(char)
if isSpace(rchar) {
continue
}
switch char {
case '=', ':':
// library also supports yaml-style value declaration
key = string(src[0:i])
offset = i + 1
break loop
case '_':
default:
// variable name should match [A-Za-z0-9_.]
if unicode.IsLetter(rchar) || unicode.IsNumber(rchar) || rchar == '.' {
continue
}
return "", nil, errors.New("unexpected character in variable name")
}
}
if len(src) == 0 {
return "", nil, errors.New("zero length string")
}
// trim whitespace
key = strings.TrimRightFunc(key, unicode.IsSpace)
cutset = bytes.TrimLeftFunc(src[offset:], isSpace)
return key, cutset, nil
}
// expandDollarEscapes preserves godotenvs dollar escaping.
func expandDollarEscapes(src []byte) []byte {
var n int
for r := 0; r < len(src); r++ {
if src[r] != '$' {
src[n] = src[r]
n++
continue
}
if n > 0 && src[n-1] == '\\' {
n--
}
src[n] = '$'
n++
}
return src[:n]
}
// extractVarValue extracts variable value and returns rest of slice.
func extractVarValue(src []byte) (value string, rest []byte, err error) {
quote, hasPrefix := hasQuotePrefix(src)
if !hasPrefix {
// unquoted value - read until end of line
endOfLine := bytes.IndexFunc(src, isLineEnd)
// Hit EOF without a trailing newline
if endOfLine == -1 {
endOfLine = len(src)
if endOfLine == 0 {
return "", nil, nil
}
}
// Convert line to rune away to do accurate countback of runes
line := []rune(string(src[0:endOfLine]))
// Assume end of line is end of var
endOfVar := len(line)
if endOfVar == 0 {
return "", src[endOfLine:], nil
}
// Strip trailing comments only when '#' is preceded by whitespace:
// FOO=bar # comment => "bar"
// FOO=bar#baz => "bar#baz"
// FOO=#bar => "#bar"
for i := 1; i < endOfVar; i++ {
if line[i] == charComment && isSpace(line[i-1]) {
endOfVar = i
break
}
}
trimmed := []byte(strings.TrimFunc(string(line[0:endOfVar]), isSpace))
return string(expandDollarEscapes(trimmed)), src[endOfLine:], nil
}
// lookup quoted string terminator
for i := 1; i < len(src); i++ {
if src[i] != quote {
continue
}
if isEscaped(src, i) {
continue
}
valueBytes := src[1:i]
if quote == prefixDoubleQuote {
valueBytes = expandEscapes(valueBytes)
valueBytes = expandDollarEscapes(valueBytes)
}
value = string(valueBytes)
return value, src[i+1:], nil
}
return "", nil, errors.New("unterminated quoted value")
}
func isEscaped(src []byte, index int) bool {
var n int
for i := index - 1; i >= 0 && src[i] == '\\'; i-- {
n++
}
return n%2 == 1
}
func expandEscapes(src []byte) []byte {
var n int
for r := 0; r < len(src); r++ {
if src[r] != '\\' || r+1 >= len(src) {
src[n] = src[r]
n++
continue
}
r++
switch src[r] {
case 'n':
src[n] = '\n'
case 'r':
src[n] = '\r'
case '$':
// TODO(cstockton): We keep '$' here for stricter compat with todays
// config. If we want to be more strict (e.g. \$ -> \$) we can emit
// the additional \\ as well.
src[n] = '$'
default:
// Preserve upstream godotenv behavior for non-dollar escapes:
// \" => ", \\ => \, \x => x.
src[n] = src[r]
}
n++
}
return src[:n]
}
func indexOfNonSpaceChar(src []byte) int {
return bytes.IndexFunc(src, func(r rune) bool {
return !unicode.IsSpace(r)
})
}
// hasQuotePrefix reports whether charset starts with single or double quote and returns quote character
func hasQuotePrefix(src []byte) (prefix byte, isQuoted bool) {
if len(src) == 0 {
return 0, false
}
switch prefix := src[0]; prefix {
case prefixDoubleQuote, prefixSingleQuote:
return prefix, true
default:
return 0, false
}
}
func isCharFunc(char rune) func(rune) bool {
return func(v rune) bool {
return v == char
}
}
// isSpace reports whether the rune is a space character but not line break character
//
// this differs from unicode.IsSpace, which also applies line break as space
func isSpace(r rune) bool {
switch r {
case '\t', '\v', '\f', '\r', ' ', 0x85, 0xA0:
return true
}
return false
}
func isLineEnd(r rune) bool {
if r == '\n' || r == '\r' {
return true
}
return false
}