-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
147 lines (113 loc) · 3.37 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
//go:build linux && amd64 && cgo
// +build linux,amd64,cgo
package main
import (
"fmt"
"os"
"time"
"github.com/attributeerror/currency-rates-cronjob/database"
"github.com/attributeerror/currency-rates-cronjob/repositories"
"github.com/bradhe/stopwatch"
"github.com/joho/godotenv"
"github.com/pkg/errors"
)
func main() {
err := godotenv.Load()
if err != nil && !os.IsNotExist(err) {
panic(fmt.Errorf("error whilst opening .env: %w", err))
}
database, err := initDatabase()
if err != nil {
panic(fmt.Errorf("error whilst initialising database: %w", err))
}
defer database.Close()
fixerIoKey, err := loadEnvVar("FIXERIO_KEY", WithIsRequired(true))
if err != nil {
if (errors.Is(err, EnvVarNotFoundError{})) {
panic(err)
}
panic(fmt.Errorf("an error occurred whilst trying to load environment variable %s: %w", "FIXERIO_KEY", err))
}
fixerIoRepository, err := repositories.InitFixerIoRepository("http://data.fixer.io/api", *fixerIoKey, nil)
if err != nil {
panic(fmt.Errorf("error whilst initialising fixer.io repository: %w", err))
}
if err := run(database, fixerIoRepository); err != nil {
panic(fmt.Errorf("error during runtime: %w", err))
}
}
func initDatabase() (*database.TursoDatabase, error) {
primaryUrl, err := loadEnvVar("TURSO_URL", WithIsRequired(true))
if err != nil {
return nil, err
}
authToken, err := loadEnvVar("TURSO_AUTH_TOKEN", WithIsRequired(true))
if err != nil {
return nil, err
}
dbName, _ := loadEnvVar("TURSO_DB_NAME", WithIsRequired(false), WithDefaultValue("currency-rates"))
database, err := database.InitTursoDatabase(*primaryUrl, *authToken, *dbName, 1*time.Minute)
if err != nil {
return nil, err
}
return database, err
}
func run(db database.Database, fixerIoRepository repositories.CurrencyRatesRepository) (err error) {
stopwatch := stopwatch.Start()
latestResponse, err := fixerIoRepository.GetLatestRates()
if err != nil {
return err
}
stopwatch.Stop()
fmt.Printf("--- FIXER.IO RESPONSE (fetched in %dms) ---\n", stopwatch.Milliseconds())
for key, val := range latestResponse.Rates {
fmt.Println("1 EUR ->", key, "=", val, key)
}
stopwatch = stopwatch.Start()
success, err := db.SetCurrencyRates(latestResponse.Rates)
if err != nil {
return err
}
stopwatch.Stop()
if success {
fmt.Printf("database records updated in %dms\n", stopwatch.Milliseconds())
} else {
fmt.Println("unknown error occurred whilst updating database records...")
}
stopwatch = stopwatch.Start()
if tursoDb, ok := db.(*database.TursoDatabase); ok {
err = tursoDb.SyncEmbeddedReplica()
if err != nil {
return err
}
}
stopwatch.Stop()
fmt.Printf("synced embedded replica in %dms", stopwatch.Milliseconds())
stopwatch = stopwatch.Start()
currencyRates, err := db.GetCurrencyRates()
if err != nil {
return err
}
stopwatch.Stop()
fmt.Printf("\n--- DATABASE RECORDS (fetched in %dms) ---\n", stopwatch.Milliseconds())
for key, val := range currencyRates {
fmt.Printf("%s -> %f\n", key, val)
}
return nil
}
func loadEnvVar(envVar string, options ...EnvVarOption) (*string, error) {
opts := &EnvVarOptions{}
for _, option := range options {
option(opts)
}
if value, exists := os.LookupEnv(envVar); exists {
return &value, nil
} else if opts.Required {
return nil, &EnvVarNotFoundError{
envVar,
}
} else if opts.DefaultValue != "" {
return &opts.DefaultValue, nil
}
return nil, nil
}