-
Notifications
You must be signed in to change notification settings - Fork 0
/
goenvirement.go
157 lines (116 loc) · 2.68 KB
/
goenvirement.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
package goenvirement
import (
"fmt"
"os"
"sort"
"strings"
)
// load the envirements variable from files
//
// if no file provided, we fall back to .env file in the current working directory
// The variables will be loaded and set to the current process env so you can get them via os.Getenv
//
// The existing variables won't be overriden
func Load(files ...string) error {
envs, err := parseOrDefault(files...)
if err != nil {
return err
}
expand(envs, &err)
if err != nil {
return err
}
for key, value := range envs {
if _, ok := os.LookupEnv(key); ok {
continue
}
err := os.Setenv(key, value)
if err != nil {
return err
}
}
return nil
}
// load the envirements variable from files
//
// if no file provided, we fall back to .env file in the current working directory
// The variables will be loaded and set to the current process env so you can get them via os.Getenv
//
// unlike Load , Overload will override the existing variables
func Overload(files ...string) error {
envs, err := parseOrDefault(files...)
if err != nil {
return err
}
expand(envs, &err)
if err != nil {
return err
}
for key, value := range envs {
err := os.Setenv(key, value)
if err != nil {
return err
}
}
return nil
}
// read envirement variables from files and return them as map
// if files is empty we fall back to .env file in the current directory
func Read(files ...string) (map[string]string, error) {
envs, err := parseOrDefault(files...)
if err != nil {
return nil, err
}
expand(envs, &err)
if err != nil {
return nil, err
}
return envs, nil
}
// read envirement variables from s and return them as map
func Unmarshal(s string) (map[string]string, error) {
envs, err := buildKeyValuePairs(s)
if err != nil {
return nil, err
}
expand(envs, &err)
if err != nil {
return nil, err
}
return envs, nil
}
// stringify the envirement variables from m and return them as string
func Marshal(m map[string]string) (string, error) {
var lines []string
for k, v := range m {
if err := validateKeyValuePair(k, v); err != nil {
return "", err
}
if isComment(v) {
return "", fmt.Errorf("invalid value [%s] for key %s", v, k)
}
lines = append(lines, fmt.Sprintf("%s=%s\n", k, v))
}
sort.Strings(lines)
return strings.Join(lines, ""), nil
}
// write variables from m to f file
func Write(m map[string]string, f string) error {
content, err := Marshal(m)
if err != nil {
return err
}
err = os.WriteFile(f, []byte(content), 0644)
if err != nil {
return err
}
return nil
}
func Append(key string, value string, file string) (err error) {
envs, err := parseOrDefault(file)
if err != nil {
return
}
envs[key] = value
return
}