Skip to content

Commit 998d960

Browse files
authored
chore: make main.go save to file (#5)
1 parent ec1de13 commit 998d960

File tree

2 files changed

+36
-12
lines changed

2 files changed

+36
-12
lines changed

generate-all.sh

+9-8
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
set -euo pipefail
44

5-
echo "Generating Stable channel"
6-
go run . --channel stable --location "${GOOGLE_LOCATION}" > ./static/stable.json
7-
8-
echo "Generating Regular channel"
9-
go run . --channel regular --location "${GOOGLE_LOCATION}" > ./static/regular.json
10-
11-
echo "Generating Rapid channel"
12-
go run . --channel rapid --location "${GOOGLE_LOCATION}" > ./static/rapid.json
5+
generate_channel() {
6+
local channel=$1
7+
echo "Generating ${channel} channel"
8+
go run . --channel "${channel}" --location "${GOOGLE_LOCATION}" --out "./static/${channel}.json"
9+
}
10+
11+
generate_channel "stable"
12+
generate_channel "regular"
13+
generate_channel "rapid"

main.go

+27-4
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,17 @@ type Release struct {
2121
Version string `json:"version"`
2222
}
2323

24+
const (
25+
stdOutOutput = "stdout"
26+
)
27+
2428
// This program is used to generate Google Kubernetes Engine JSON versions for Renovate custom datasource.
2529
// Custom datasource docs: https://docs.renovatebot.com/modules/datasource/custom/
2630
func main() {
2731
ctx := context.Background()
2832
requestedChannel := flag.String("channel", "stable", "Channel to scrape")
29-
requestedLocation := flag.String("location", "us-central-1c", "GCP location to check versions for (they might differ per location)")
33+
requestedLocation := flag.String("location", "us-central1-c", "GCP location to check versions for (they might differ per location)")
34+
targetFile := flag.String("out", stdOutOutput, "Target file to write the output")
3035
flag.Parse()
3136

3237
channel, err := scrapeChannel(ctx, *requestedChannel, *requestedLocation)
@@ -35,12 +40,30 @@ func main() {
3540
os.Exit(1)
3641
}
3742

38-
encoder := json.NewEncoder(os.Stdout)
43+
if saveOutput(channel, *targetFile); err != nil {
44+
fmt.Println("Error saving output:", err)
45+
os.Exit(1)
46+
}
47+
}
48+
49+
func saveOutput(channel Channel, targetFile string) error {
50+
var encoder *json.Encoder
51+
if targetFile == stdOutOutput {
52+
encoder = json.NewEncoder(os.Stdout)
53+
} else {
54+
file, err := os.Create(targetFile)
55+
if err != nil {
56+
return fmt.Errorf("error creating file: %w", err)
57+
}
58+
defer file.Close()
59+
encoder = json.NewEncoder(file)
60+
}
61+
3962
encoder.SetIndent("", " ")
4063
if err := encoder.Encode(channel); err != nil {
41-
fmt.Println("Error encoding JSON:", err)
42-
os.Exit(1)
64+
return fmt.Errorf("error encoding JSON: %w", err)
4365
}
66+
return nil
4467
}
4568

4669
func scrapeChannel(ctx context.Context, channel string, location string) (Channel, error) {

0 commit comments

Comments
 (0)