forked from gobuffalo/pop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postgresql.go
214 lines (179 loc) · 5.18 KB
/
postgresql.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
package pop
import (
"fmt"
"io"
"os"
"os/exec"
"strings"
"sync"
"github.com/jmoiron/sqlx"
"github.com/gobuffalo/fizz"
"github.com/gobuffalo/fizz/translators"
"github.com/gobuffalo/pop/columns"
"github.com/markbates/going/defaults"
"github.com/pkg/errors"
)
var _ dialect = &postgresql{}
type postgresql struct {
translateCache map[string]string
mu sync.Mutex
ConnectionDetails *ConnectionDetails
}
func (p *postgresql) Name() string {
return "postgresql"
}
func (p *postgresql) Details() *ConnectionDetails {
return p.ConnectionDetails
}
func (p *postgresql) Create(s store, model *Model, cols columns.Columns) error {
keyType := model.PrimaryKeyType()
switch keyType {
case "int", "int64":
cols.Remove("id")
id := struct {
ID int `db:"id"`
}{}
w := cols.Writeable()
query := fmt.Sprintf("INSERT INTO %s (%s) VALUES (%s) returning id", model.TableName(), w.String(), w.SymbolizedString())
Log(query)
stmt, err := s.PrepareNamed(query)
if err != nil {
return errors.WithStack(err)
}
err = stmt.Get(&id, model.Value)
if err != nil {
return errors.WithStack(err)
}
model.setID(id.ID)
return nil
}
return genericCreate(s, model, cols)
}
func (p *postgresql) Update(s store, model *Model, cols columns.Columns) error {
return genericUpdate(s, model, cols)
}
func (p *postgresql) Destroy(s store, model *Model) error {
return genericDestroy(s, model)
}
func (p *postgresql) SelectOne(s store, model *Model, query Query) error {
return genericSelectOne(s, model, query)
}
func (p *postgresql) SelectMany(s store, models *Model, query Query) error {
return genericSelectMany(s, models, query)
}
func (p *postgresql) CreateDB() error {
// createdb -h db -p 5432 -U postgres enterprise_development
deets := p.ConnectionDetails
db, err := sqlx.Open(deets.Dialect, p.urlWithoutDb())
if err != nil {
return errors.Wrapf(err, "error creating PostgreSQL database %s", deets.Database)
}
defer db.Close()
query := fmt.Sprintf("CREATE DATABASE \"%s\"", deets.Database)
Log(query)
_, err = db.Exec(query)
if err != nil {
return errors.Wrapf(err, "error creating PostgreSQL database %s", deets.Database)
}
fmt.Printf("created database %s\n", deets.Database)
return nil
}
func (p *postgresql) DropDB() error {
deets := p.ConnectionDetails
db, err := sqlx.Open(deets.Dialect, p.urlWithoutDb())
if err != nil {
return errors.Wrapf(err, "error dropping PostgreSQL database %s", deets.Database)
}
defer db.Close()
query := fmt.Sprintf("DROP DATABASE \"%s\"", deets.Database)
Log(query)
_, err = db.Exec(query)
if err != nil {
return errors.Wrapf(err, "error dropping PostgreSQL database %s", deets.Database)
}
fmt.Printf("dropped database %s\n", deets.Database)
return nil
}
func (p *postgresql) URL() string {
c := p.ConnectionDetails
if c.URL != "" {
return c.URL
}
ssl := defaults.String(c.Options["sslmode"], "disable")
s := "postgres://%s:%s@%s:%s/%s?sslmode=%s"
return fmt.Sprintf(s, c.User, c.Password, c.Host, c.Port, c.Database, ssl)
}
func (p *postgresql) urlWithoutDb() string {
c := p.ConnectionDetails
ssl := defaults.String(c.Options["sslmode"], "disable")
// https://github.com/gobuffalo/buffalo/issues/836
// If the db is not precised, postgresql takes the username as the database to connect on.
// To avoid a connection problem if the user db is not here, we use the default "postgres"
// db, just like the other client tools do.
s := "postgres://%s:%s@%s:%s/postgres?sslmode=%s"
return fmt.Sprintf(s, c.User, c.Password, c.Host, c.Port, ssl)
}
func (p *postgresql) MigrationURL() string {
return p.URL()
}
func (p *postgresql) TranslateSQL(sql string) string {
defer p.mu.Unlock()
p.mu.Lock()
if csql, ok := p.translateCache[sql]; ok {
return csql
}
csql := sqlx.Rebind(sqlx.DOLLAR, sql)
p.translateCache[sql] = csql
return csql
}
func (p *postgresql) FizzTranslator() fizz.Translator {
return translators.NewPostgres()
}
func (p *postgresql) Lock(fn func() error) error {
return fn()
}
func (p *postgresql) DumpSchema(w io.Writer) error {
cmd := exec.Command("pg_dump", "-s", fmt.Sprintf("--dbname=%s", p.URL()))
Log(strings.Join(cmd.Args, " "))
cmd.Stdout = w
cmd.Stderr = os.Stderr
err := cmd.Run()
if err != nil {
return err
}
fmt.Printf("dumped schema for %s\n", p.Details().Database)
return nil
}
// LoadSchema executes a schema sql file against the configured database.
func (p *postgresql) LoadSchema(r io.Reader) error {
return genericLoadSchema(p.ConnectionDetails, p.MigrationURL(), r)
}
// TruncateAll truncates all tables for the given connection.
func (p *postgresql) TruncateAll(tx *Connection) error {
return tx.RawQuery(pgTruncate).Exec()
}
func newPostgreSQL(deets *ConnectionDetails) dialect {
cd := &postgresql{
ConnectionDetails: deets,
translateCache: map[string]string{},
mu: sync.Mutex{},
}
return cd
}
const pgTruncate = `DO
$func$
DECLARE
_tbl text;
_sch text;
BEGIN
FOR _sch, _tbl IN
SELECT schemaname, tablename
FROM pg_tables
WHERE schemaname = 'public'
LOOP
--RAISE ERROR '%',
EXECUTE -- dangerous, test before you execute!
format('TRUNCATE TABLE %I.%I CASCADE', _sch, _tbl);
END LOOP;
END
$func$;`