Skip to content

Commit f5cb077

Browse files
committed
fix: Example values containing "=" were ignored
- Add new '--version' flag - Add new BUILD_DATE for use in --version output
1 parent a521398 commit f5cb077

File tree

2 files changed

+46
-11
lines changed

2 files changed

+46
-11
lines changed

.github/workflows/goreleaser.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,14 @@ jobs:
2828
git config --global user.email "[email protected]"
2929
git config --global user.name "Github Actions"
3030
go install git.sr.ht/~jcmuller/semver-bumper@latest
31-
OLD_TAG=$(git tag --list 'v*' | semver-bumper -s)
32-
NEW_TAG=$(git tag --list 'v*' | semver-bumper --increment minor)
33-
sed -i "s/$OLD_TAG/$NEW_TAG/g" default.nix
31+
newTag=$(git tag --list 'v*' | semver-bumper --increment minor)
32+
buildDate=$(date --iso-8601=seconds)
33+
sed -i -e "s@BUILD_DATE = \".\+\"@BUILD_DATE = \"${buildDate/v}\"@" main.go
34+
sed -i -e "s@VERSION = \".\+\"@VERSION = \"${newTag/v}\"@" main.go
35+
sed -i -e "s@version = \".\+\"@version = \"${newTag/v}\"@" default.nix
3436
git add default.nix
35-
git commit -m "Bump version in default.nix" --allow-empty
37+
git add main.go
38+
git commit -m "Bump release version"
3639
git tag $NEW_TAG
3740
git push
3841
git push --tags

main.go

+39-7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"flag"
88
"fmt"
99
"io"
10+
"log/slog"
1011
"os"
1112
"os/exec"
1213
"path/filepath"
@@ -17,6 +18,9 @@ import (
1718
"github.com/hashicorp/go-envparse"
1819
)
1920

21+
const VERSION = "2.10.0"
22+
const BUILD_DATE = "2024-01-19T12:19:09-07:00"
23+
2024
type exampleFlag map[string]string
2125

2226
func (e exampleFlag) String() string {
@@ -29,27 +33,32 @@ func (e exampleFlag) String() string {
2933
}
3034

3135
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 {
3438
err = errors.New("examples must be provided in KEY=VALUE format")
3539
return
3640
}
3741

38-
e[exampleParts[0]] = exampleParts[1]
42+
e[key] = value
3943

4044
return nil
4145
}
4246

4347
var (
48+
examplesFlag = make(exampleFlag)
49+
debugFlag bool
4450
envFileFlag string
51+
logLevel = slog.LevelInfo
4552
sampleFileFlag string
46-
examplesFlag = make(exampleFlag)
53+
versionFlag bool
4754
)
4855

4956
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")
5362

5463
flag.Usage = func() {
5564
cmd := os.Args[0]
@@ -59,6 +68,16 @@ func init() {
5968
}
6069

6170
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+
6281
}
6382

6483
func main() {
@@ -74,12 +93,14 @@ func main() {
7493
case "sync":
7594
sync(projectPath)
7695
cmd := exec.Command("git", "add", filepath.Join(projectPath, sampleFileFlag))
96+
slog.Debug("running git command", "args", cmd.Args)
7797
err := cmd.Run()
7898
if err != nil {
7999
fmt.Printf("unable to add sample file '%s' to git: %v", sampleFileFlag, err)
80100
os.Exit(1)
81101
}
82102
case "install":
103+
slog.Debug("installing hook to", "path", gitDirPath)
83104
err := installHook(gitDirPath)
84105
if err != nil {
85106
fmt.Println("unable to install pre-commit hook:", err)
@@ -88,13 +109,16 @@ func main() {
88109
default:
89110
fmt.Printf("ess: unknown command '%s'\n\n", command)
90111
flag.Usage()
112+
os.Exit(1)
91113
}
92114
}
93115

94116
func sync(dir string) {
95117
envFilePath := filepath.Join(dir, envFileFlag)
96118
sampleFilePath := filepath.Join(dir, sampleFileFlag)
97119

120+
slog.Debug("syncing env file with sample", "env_file", envFilePath, "sample_file", sampleFilePath)
121+
98122
envFileReader, err := os.Open(envFilePath)
99123
if err != nil {
100124
fmt.Printf("env file '%s' was not found. skipping sync.\n", envFilePath)
@@ -113,6 +137,8 @@ func sync(dir string) {
113137
fmt.Println(err)
114138
os.Exit(1)
115139
}
140+
141+
slog.Debug("sample file written", "sample_file", sampleFilePath)
116142
}
117143

118144
func writeSampleFile(sampleFileContent map[string]string, envFilePath, sampleFilePath string) (err error) {
@@ -148,6 +174,7 @@ func writeSampleFile(sampleFileContent map[string]string, envFilePath, sampleFil
148174
}
149175

150176
func scrubEnvFile(envFile map[string]string, examples map[string]string) {
177+
slog.Debug("scrubbing env file of secrets")
151178
for envFileKey := range envFile {
152179
exampleVal, ok := examples[envFileKey]
153180
if ok {
@@ -168,6 +195,7 @@ func replaceSecrets(envFileEntry string, sampleFileContent map[string]string) (n
168195
for secretKey, secretPlaceholder := range sampleFileContent {
169196
r = regexp.MustCompile(fmt.Sprintf("(%s.*=.*)", secretKey))
170197
if r.MatchString(envFileEntry) {
198+
slog.Debug("replacing secrets with sample values", "secret_key", secretKey, "placeholder", secretPlaceholder)
171199
newLine = r.ReplaceAllString(envFileEntry, fmt.Sprintf("%s=%s", secretKey, secretPlaceholder))
172200
}
173201
}
@@ -232,9 +260,11 @@ func installHook(gitDirPath string) (err error) {
232260
var response string
233261
fmt.Scanln(&response)
234262
if response == "c" || (response != "o" && response != "a") {
263+
slog.Debug("user declined to overwrite the existing pre-commit hook")
235264
os.Exit(0)
236265
}
237266
if response == "a" {
267+
slog.Debug("will append pre-commit hook script to existing script", "script_path", preCommitHookScriptPath)
238268
// read the existing content of the pre-commit file
239269
oldPreCommitScript, err = os.ReadFile(preCommitHookScriptPath)
240270
if err != nil {
@@ -252,6 +282,7 @@ func installHook(gitDirPath string) (err error) {
252282
}
253283
}
254284

285+
slog.Debug("hook will be installed in", "dir_path", hooksScriptDirPath)
255286
preCommitHookPath := filepath.Join(hooksScriptDirPath, "0-ess")
256287
preCommitHook, err := os.OpenFile(preCommitHookPath, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0o755)
257288
if err != nil {
@@ -291,6 +322,7 @@ func installHook(gitDirPath string) (err error) {
291322
OldPreCommitScript: string(oldPreCommitScript),
292323
}
293324

325+
slog.Debug("hook metadata", "data", templateValues)
294326
err = tmpl.Execute(buff, templateValues)
295327
if err != nil {
296328
return err

0 commit comments

Comments
 (0)