-
Notifications
You must be signed in to change notification settings - Fork 14
/
main.go
214 lines (173 loc) · 4.86 KB
/
main.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
package main
import (
"bufio"
"fmt"
"io"
"os"
"path/filepath"
"strings"
"github.com/fsnotify/fsnotify"
"github.com/pkg/errors"
"github.com/spf13/afero"
"github.com/spf13/cobra"
)
var (
fs = afero.NewOsFs()
basePath string
envFilePath string
exampleFilePath string
watch bool
verbose bool
version = "dev"
commit = "none"
date = "unknown"
)
func main() {
rootCmd := &cobra.Command{
RunE: run,
Use: "sync-dotenv",
Short: "sync-dotenv helps you to keep your .env.example in sync with your .env file",
Long: "sync-dotenv helps you to keep your .env.example in sync with your .env file",
Version: fmt.Sprintf("%s (commit: %s, date: %s)", version, commit, date),
}
rootCmd.Flags().StringVar(&envFilePath, "env", ".env", "path to your env file")
rootCmd.Flags().StringVar(&exampleFilePath, "example", ".env.example", "path to your example env file")
rootCmd.Flags().StringVar(&basePath, "base", ".", "base path for all paths")
rootCmd.Flags().BoolVarP(&watch, "watch", "w", false, "watch for file changes and update the example file automatically")
rootCmd.Flags().BoolVarP(&verbose, "verbose", "v", false, "enable verbose messages")
if err := rootCmd.Execute(); err != nil {
if verbose {
fmt.Printf("Error occurred: %+v\n", err)
} else {
fmt.Printf("Error occurred: %s\n", err)
}
os.Exit(1)
}
}
func run(_ *cobra.Command, _ []string) error {
envFilePath = filepath.Join(basePath, envFilePath)
exampleFilePath = filepath.Join(basePath, exampleFilePath)
if fileNotExist(envFilePath) {
return errors.Errorf("env file (%s) does not exist", envFilePath)
}
if watch {
return watchFile()
} else {
return startSync()
}
}
func watchFile() error {
watcher, err := fsnotify.NewWatcher()
if err != nil {
return errors.Wrap(err, "could not create new file watcher")
}
defer watcher.Close()
errChan := make(chan error)
go func() {
for {
select {
case event, ok := <-watcher.Events:
if !ok {
return
}
if event.Name == filepath.Base(envFilePath) &&
(event.Op&fsnotify.Write == fsnotify.Write || event.Op&fsnotify.Create == fsnotify.Create) {
if err := startSync(); err != nil {
errChan <- errors.Wrap(err, "failed to process file while watching for changes")
return
}
}
case err, ok := <-watcher.Errors:
if !ok {
return
}
errChan <- errors.Wrap(err, "failed to watch for changes")
return
}
}
}()
err = watcher.Add(basePath)
if err != nil {
return errors.Wrap(err, "could not watch path")
}
return <-errChan
}
func startSync() error {
envFile, err := fs.Open(envFilePath)
if err != nil {
return errors.Wrap(err, "could not open env file")
}
defer envFile.Close()
exampleEnvFile, err := fs.OpenFile(exampleFilePath, os.O_RDWR|os.O_CREATE, 0666)
if err != nil {
return errors.Wrap(err, "could not open example env file")
}
defer exampleEnvFile.Close()
return processFile(envFile, exampleEnvFile)
}
func processFile(envFile afero.File, exampleEnvFile afero.File) error {
entries, err := getEntriesFromFile(exampleEnvFile)
if err != nil {
return errors.Wrap(err, "could not get entries from example file")
}
err = exampleEnvFile.Truncate(0)
if err != nil {
return errors.Wrap(err, "failed to truncate example env file")
}
_, err = exampleEnvFile.Seek(0, 0)
if err != nil {
return errors.Wrap(err, "failed to seek example env file")
}
scanner := bufio.NewScanner(envFile)
writer := bufio.NewWriter(exampleEnvFile)
defer writer.Flush()
if err := mirror(scanner, writer, entries); err != nil {
return errors.Wrap(err, "failed while mirroring files")
}
return nil
}
func mirror(scanner *bufio.Scanner, writer *bufio.Writer, entries map[string]string) error {
for scanner.Scan() {
text := strings.TrimSpace(scanner.Text())
var writeText string
if len(text) > 0 && !strings.HasPrefix(text, "#") {
splits := strings.SplitN(text, "=", 2)
writeText = splits[0] + "="
if val, ok := entries[splits[0]]; ok {
writeText += val
}
} else {
writeText = text
}
if _, err := fmt.Fprintln(writer, writeText); err != nil {
return errors.Wrap(err, "failed while writing to example file")
}
}
if err := scanner.Err(); err != nil {
return errors.Wrap(err, "failed while reading env file")
}
return nil
}
func getEntriesFromFile(file io.Reader) (map[string]string, error) {
m := map[string]string{}
scanner := bufio.NewScanner(file)
for scanner.Scan() {
text := strings.TrimSpace(scanner.Text())
if len(text) <= 0 || strings.HasPrefix(text, "#") {
continue
}
splits := strings.SplitN(text, "=", 2)
key, value := splits[0], splits[1]
m[key] = value
}
if err := scanner.Err(); err != nil {
return nil, errors.Wrap(err, "failed while reading env file")
}
return m, nil
}
func fileNotExist(path string) bool {
if _, err := fs.Stat(path); os.IsNotExist(err) {
return true
}
return false
}