7
7
"flag"
8
8
"fmt"
9
9
"io"
10
+ "log/slog"
10
11
"os"
11
12
"os/exec"
12
13
"path/filepath"
@@ -17,6 +18,9 @@ import (
17
18
"github.com/hashicorp/go-envparse"
18
19
)
19
20
21
+ const VERSION = "2.10.0"
22
+ const BUILD_DATE = "2024-01-19T12:19:09-07:00"
23
+
20
24
type exampleFlag map [string ]string
21
25
22
26
func (e exampleFlag ) String () string {
@@ -29,27 +33,32 @@ func (e exampleFlag) String() string {
29
33
}
30
34
31
35
func (e exampleFlag ) Set (value string ) (err error ) {
32
- exampleParts := strings .Split (value , "=" )
33
- if len ( exampleParts ) != 2 {
36
+ key , value , found := strings .Cut (value , "=" )
37
+ if ! found {
34
38
err = errors .New ("examples must be provided in KEY=VALUE format" )
35
39
return
36
40
}
37
41
38
- e [exampleParts [ 0 ]] = exampleParts [ 1 ]
42
+ e [key ] = value
39
43
40
44
return nil
41
45
}
42
46
43
47
var (
48
+ examplesFlag = make (exampleFlag )
49
+ debugFlag bool
44
50
envFileFlag string
51
+ logLevel = slog .LevelInfo
45
52
sampleFileFlag string
46
- examplesFlag = make ( exampleFlag )
53
+ versionFlag bool
47
54
)
48
55
49
56
func init () {
50
- flag .StringVar (& envFileFlag , "env-file" , ".env" , "-env-file=.env_file" )
51
- flag .StringVar (& sampleFileFlag , "sample-file" , "env.sample" , "-sample-file=env_var.sample" )
52
- flag .Var (examplesFlag , "example" , "--example=FOO=\" my foo value\" --example=BAR=\" my bar value\" " )
57
+ flag .StringVar (& envFileFlag , "env-file" , ".env" , "set the path to your env file: ess -env-file=.env_file [sync|install]" )
58
+ flag .StringVar (& sampleFileFlag , "sample-file" , "env.sample" , "set the path to your sample file: ess -sample-file=env_var.sample [sync|install]" )
59
+ flag .BoolVar (& debugFlag , "debug" , false , "print debug logs: ess --debug [sync|install]" )
60
+ flag .Var (examplesFlag , "example" , "set example values for samples: ess --example=BAR=\" my bar value\" [sync|install]" )
61
+ flag .BoolVar (& versionFlag , "version" , false , "print the current ess version: ess --version" )
53
62
54
63
flag .Usage = func () {
55
64
cmd := os .Args [0 ]
@@ -59,6 +68,16 @@ func init() {
59
68
}
60
69
61
70
flag .Parse ()
71
+
72
+ if versionFlag {
73
+ fmt .Fprintf (os .Stdout , "ess version: %s built at: %s\n " , VERSION , BUILD_DATE )
74
+ os .Exit (0 )
75
+ }
76
+
77
+ if debugFlag {
78
+ slog .SetDefault (slog .New (slog .NewTextHandler (os .Stdout , & slog.HandlerOptions {Level : slog .LevelDebug })))
79
+ }
80
+
62
81
}
63
82
64
83
func main () {
@@ -74,12 +93,14 @@ func main() {
74
93
case "sync" :
75
94
sync (projectPath )
76
95
cmd := exec .Command ("git" , "add" , filepath .Join (projectPath , sampleFileFlag ))
96
+ slog .Debug ("running git command" , "args" , cmd .Args )
77
97
err := cmd .Run ()
78
98
if err != nil {
79
99
fmt .Printf ("unable to add sample file '%s' to git: %v" , sampleFileFlag , err )
80
100
os .Exit (1 )
81
101
}
82
102
case "install" :
103
+ slog .Debug ("installing hook to" , "path" , gitDirPath )
83
104
err := installHook (gitDirPath )
84
105
if err != nil {
85
106
fmt .Println ("unable to install pre-commit hook:" , err )
@@ -88,13 +109,16 @@ func main() {
88
109
default :
89
110
fmt .Printf ("ess: unknown command '%s'\n \n " , command )
90
111
flag .Usage ()
112
+ os .Exit (1 )
91
113
}
92
114
}
93
115
94
116
func sync (dir string ) {
95
117
envFilePath := filepath .Join (dir , envFileFlag )
96
118
sampleFilePath := filepath .Join (dir , sampleFileFlag )
97
119
120
+ slog .Debug ("syncing env file with sample" , "env_file" , envFilePath , "sample_file" , sampleFilePath )
121
+
98
122
envFileReader , err := os .Open (envFilePath )
99
123
if err != nil {
100
124
fmt .Printf ("env file '%s' was not found. skipping sync.\n " , envFilePath )
@@ -113,6 +137,8 @@ func sync(dir string) {
113
137
fmt .Println (err )
114
138
os .Exit (1 )
115
139
}
140
+
141
+ slog .Debug ("sample file written" , "sample_file" , sampleFilePath )
116
142
}
117
143
118
144
func writeSampleFile (sampleFileContent map [string ]string , envFilePath , sampleFilePath string ) (err error ) {
@@ -148,6 +174,7 @@ func writeSampleFile(sampleFileContent map[string]string, envFilePath, sampleFil
148
174
}
149
175
150
176
func scrubEnvFile (envFile map [string ]string , examples map [string ]string ) {
177
+ slog .Debug ("scrubbing env file of secrets" )
151
178
for envFileKey := range envFile {
152
179
exampleVal , ok := examples [envFileKey ]
153
180
if ok {
@@ -168,6 +195,7 @@ func replaceSecrets(envFileEntry string, sampleFileContent map[string]string) (n
168
195
for secretKey , secretPlaceholder := range sampleFileContent {
169
196
r = regexp .MustCompile (fmt .Sprintf ("(%s.*=.*)" , secretKey ))
170
197
if r .MatchString (envFileEntry ) {
198
+ slog .Debug ("replacing secrets with sample values" , "secret_key" , secretKey , "placeholder" , secretPlaceholder )
171
199
newLine = r .ReplaceAllString (envFileEntry , fmt .Sprintf ("%s=%s" , secretKey , secretPlaceholder ))
172
200
}
173
201
}
@@ -232,9 +260,11 @@ func installHook(gitDirPath string) (err error) {
232
260
var response string
233
261
fmt .Scanln (& response )
234
262
if response == "c" || (response != "o" && response != "a" ) {
263
+ slog .Debug ("user declined to overwrite the existing pre-commit hook" )
235
264
os .Exit (0 )
236
265
}
237
266
if response == "a" {
267
+ slog .Debug ("will append pre-commit hook script to existing script" , "script_path" , preCommitHookScriptPath )
238
268
// read the existing content of the pre-commit file
239
269
oldPreCommitScript , err = os .ReadFile (preCommitHookScriptPath )
240
270
if err != nil {
@@ -252,6 +282,7 @@ func installHook(gitDirPath string) (err error) {
252
282
}
253
283
}
254
284
285
+ slog .Debug ("hook will be installed in" , "dir_path" , hooksScriptDirPath )
255
286
preCommitHookPath := filepath .Join (hooksScriptDirPath , "0-ess" )
256
287
preCommitHook , err := os .OpenFile (preCommitHookPath , os .O_RDWR | os .O_CREATE | os .O_TRUNC , 0o755 )
257
288
if err != nil {
@@ -291,6 +322,7 @@ func installHook(gitDirPath string) (err error) {
291
322
OldPreCommitScript : string (oldPreCommitScript ),
292
323
}
293
324
325
+ slog .Debug ("hook metadata" , "data" , templateValues )
294
326
err = tmpl .Execute (buff , templateValues )
295
327
if err != nil {
296
328
return err
0 commit comments