-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.go
62 lines (48 loc) · 1.07 KB
/
database.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
package main
import (
"database/sql"
"os"
"github.com/charmbracelet/log"
_ "github.com/lib/pq"
)
const (
TRANSFER_POOLS = "transfer_pools"
TRANSFER_JUROR_POOLS = "transfer_juror_pools"
)
type Database struct {
db *sql.DB
}
func New(r bool) *Database {
log.Debug("Connecting to database")
db, err := sql.Open("postgres", connectionString.String())
if err != nil {
log.Errorf("Error connecting to database: %s", err.Error())
os.Exit(1)
}
log.Debug("Connected to database")
if r {
log.Debug("Resetting database")
reset(db)
log.Debug("Database reset")
}
return &Database{
db: db,
}
}
func reset(db *sql.DB) {
script, _ := os.ReadFile("reset.sql")
sql := string(script)
_, err := db.Exec(sql)
if err != nil {
log.Errorf("Error resetting database: %s", err.Error())
os.Exit(1)
}
}
func (d *Database) call(opts interface{}, args ...string) {
if opts == TRANSFER_POOLS {
d.db.Exec("call juror_mod.transfer_pool('%s', '%s')", args)
}
if opts == TRANSFER_JUROR_POOLS {
d.db.Exec("call juror_mod.transfer_juror_pool('%s', '%s')", args)
}
}