-
Notifications
You must be signed in to change notification settings - Fork 1
/
postgres.go
167 lines (133 loc) · 4.12 KB
/
postgres.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package dbmate
import (
"database/sql"
"fmt"
"net/url"
"github.com/lib/pq"
)
// LockTimeout is the Postgres time specification for how long we should wait for a lock before dying
var LockTimeout = "30s"
// PostgresDriver provides top level database functions
type PostgresDriver struct {
}
// Open creates a new database connection, also setting a lock timeout to 30 seconds for the whole session.
func (drv PostgresDriver) Open(u *url.URL) (*sql.DB, error) {
db, err := sql.Open("postgres", u.String())
if err != nil {
return nil, err
}
// set local doesn't like bound parameters
_, err = db.Exec("set local lock_timeout = '" + LockTimeout + "'")
if err != nil {
return nil, err
}
return db, nil
}
func (drv PostgresDriver) openPostgresDB(u *url.URL) (*sql.DB, error) {
// connect to postgres database
postgresURL := *u
postgresURL.Path = "postgres"
return drv.Open(&postgresURL)
}
// CreateDatabase creates the specified database
func (drv PostgresDriver) CreateDatabase(u *url.URL) error {
name := databaseName(u)
fmt.Printf("Creating: %s\n", name)
db, err := drv.openPostgresDB(u)
if err != nil {
return err
}
defer mustClose(db)
_, err = db.Exec(fmt.Sprintf("create database %s",
pq.QuoteIdentifier(name)))
return err
}
// DropDatabase drops the specified database (if it exists)
func (drv PostgresDriver) DropDatabase(u *url.URL) error {
name := databaseName(u)
fmt.Printf("Dropping: %s\n", name)
db, err := drv.openPostgresDB(u)
if err != nil {
return err
}
defer mustClose(db)
_, err = db.Exec(fmt.Sprintf("drop database if exists %s",
pq.QuoteIdentifier(name)))
return err
}
// DatabaseExists determines whether the database exists
func (drv PostgresDriver) DatabaseExists(u *url.URL) (bool, error) {
name := databaseName(u)
db, err := drv.openPostgresDB(u)
if err != nil {
return false, err
}
defer mustClose(db)
exists := false
err = db.QueryRow("select true from pg_database where datname = $1", name).
Scan(&exists)
if err == sql.ErrNoRows {
return false, nil
}
return exists, err
}
// CreateMigrationsTable creates the schema_migrations table
func (drv PostgresDriver) CreateMigrationsTable(db *sql.DB) error {
_, err := db.Exec(`create table if not exists schema_migrations (
version varchar(255) primary key)`)
if err != nil {
return err
}
// Add the project column if it doesn't already exist.
_, err = db.Exec(`select project from schema_migrations limit 1`)
if err != nil {
_, err = db.Exec(`alter table schema_migrations
add column project varchar(255) default 'default'`)
}
return err
}
// SelectMigrations returns a list of applied migrations
// with an optional limit (in descending order)
func (drv PostgresDriver) SelectMigrations(db *sql.DB, limit int, project string) (map[string]bool, error) {
query := "select version from schema_migrations where project = $1 order by version desc"
if limit >= 0 {
query = fmt.Sprintf("%s limit %d", query, limit)
}
rows, err := db.Query(query, project)
if err != nil {
return nil, err
}
defer mustClose(rows)
migrations := map[string]bool{}
for rows.Next() {
var version string
if err := rows.Scan(&version); err != nil {
return nil, err
}
migrations[version] = true
}
return migrations, nil
}
// InsertMigration adds a new migration record
func (drv PostgresDriver) InsertMigration(db Transaction, version string, project string) error {
_, err := db.Exec("insert into schema_migrations (version, project) values ($1, $2)", version, project)
return err
}
// DeleteMigration removes a migration record
func (drv PostgresDriver) DeleteMigration(db Transaction, version string) error {
_, err := db.Exec("delete from schema_migrations where version = $1", version)
return err
}
var lockKey = 48372615
// Lock tries to acquire an advisory lock and waits for the configured LockTimeout seconds before giving up
func (drv PostgresDriver) Lock(db *sql.DB) error {
_, err := db.Exec("select pg_advisory_lock($1)", lockKey)
return err
}
// Unlock releases an advisory lock
func (drv PostgresDriver) Unlock(db *sql.DB) {
_, err := db.Exec("select pg_advisory_unlock($1)", lockKey)
if err != nil {
panic(err)
}
}