-
-
Notifications
You must be signed in to change notification settings - Fork 243
/
dialect_postgresql.go
277 lines (235 loc) · 7.59 KB
/
dialect_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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
package pop
import (
"database/sql"
"fmt"
"io"
"net/url"
"os/exec"
"sync"
"github.com/gobuffalo/fizz"
"github.com/gobuffalo/fizz/translators"
"github.com/gobuffalo/pop/v6/columns"
"github.com/gobuffalo/pop/v6/internal/defaults"
"github.com/gobuffalo/pop/v6/logging"
"github.com/jackc/pgconn"
_ "github.com/jackc/pgx/v4/stdlib" // Load pgx driver
"github.com/jmoiron/sqlx"
)
const namePostgreSQL = "postgres"
const portPostgreSQL = "5432"
func init() {
AvailableDialects = append(AvailableDialects, namePostgreSQL)
dialectSynonyms["postgresql"] = namePostgreSQL
dialectSynonyms["pg"] = namePostgreSQL
dialectSynonyms["pgx"] = namePostgreSQL
urlParser[namePostgreSQL] = urlParserPostgreSQL
finalizer[namePostgreSQL] = finalizerPostgreSQL
newConnection[namePostgreSQL] = newPostgreSQL
}
var _ dialect = &postgresql{}
type postgresql struct {
commonDialect
translateCache map[string]string
mu sync.Mutex
}
func (p *postgresql) Name() string {
return namePostgreSQL
}
func (p *postgresql) DefaultDriver() string {
return "pgx"
}
func (p *postgresql) Details() *ConnectionDetails {
return p.ConnectionDetails
}
func (p *postgresql) Create(c *Connection, model *Model, cols columns.Columns) error {
keyType, err := model.PrimaryKeyType()
if err != nil {
return err
}
switch keyType {
case "int", "int64":
cols.Remove(model.IDField())
w := cols.Writeable()
var query string
if len(w.Cols) > 0 {
query = fmt.Sprintf("INSERT INTO %s (%s) VALUES (%s) RETURNING %s", p.Quote(model.TableName()), w.QuotedString(p), w.SymbolizedString(), model.IDField())
} else {
query = fmt.Sprintf("INSERT INTO %s DEFAULT VALUES RETURNING %s", p.Quote(model.TableName()), model.IDField())
}
txlog(logging.SQL, c, query, model.Value)
rows, err := c.Store.NamedQueryContext(model.ctx, query, model.Value)
if err != nil {
return fmt.Errorf("named insert: %w", err)
}
defer rows.Close()
if !rows.Next() {
if err := rows.Err(); err != nil {
return fmt.Errorf("named insert: next: %w", err)
}
return fmt.Errorf("named insert: %w", sql.ErrNoRows)
}
var id interface{}
if err := rows.Scan(&id); err != nil {
return fmt.Errorf("named insert: scan: %w", err)
}
if err := rows.Close(); err != nil {
return fmt.Errorf("named insert: close: %w", err)
}
model.setID(id)
return nil
}
return genericCreate(c, model, cols, p)
}
func (p *postgresql) Update(c *Connection, model *Model, cols columns.Columns) error {
return genericUpdate(c, model, cols, p)
}
func (p *postgresql) UpdateQuery(c *Connection, model *Model, cols columns.Columns, query Query) (int64, error) {
return genericUpdateQuery(c, model, cols, p, query, sqlx.DOLLAR)
}
func (p *postgresql) Destroy(c *Connection, model *Model) error {
stmt := p.TranslateSQL(fmt.Sprintf("DELETE FROM %s AS %s WHERE %s", p.Quote(model.TableName()), model.Alias(), model.WhereID()))
_, err := genericExec(c, stmt, model.ID())
if err != nil {
return err
}
return nil
}
func (p *postgresql) Delete(c *Connection, model *Model, query Query) error {
return genericDelete(c, model, query)
}
func (p *postgresql) SelectOne(c *Connection, model *Model, query Query) error {
return genericSelectOne(c, model, query)
}
func (p *postgresql) SelectMany(c *Connection, models *Model, query Query) error {
return genericSelectMany(c, models, query)
}
func (p *postgresql) CreateDB() error {
// createdb -h db -p 5432 -U postgres enterprise_development
deets := p.ConnectionDetails
db, err := openPotentiallyInstrumentedConnection(p, p.urlWithoutDb())
if err != nil {
return fmt.Errorf("error creating PostgreSQL database %s: %w", deets.Database, err)
}
defer db.Close()
query := fmt.Sprintf("CREATE DATABASE %s", p.Quote(deets.Database))
log(logging.SQL, query)
_, err = db.Exec(query)
if err != nil {
return fmt.Errorf("error creating PostgreSQL database %s: %w", deets.Database, err)
}
log(logging.Info, "created database %s", deets.Database)
return nil
}
func (p *postgresql) DropDB() error {
deets := p.ConnectionDetails
db, err := openPotentiallyInstrumentedConnection(p, p.urlWithoutDb())
if err != nil {
return fmt.Errorf("error dropping PostgreSQL database %s: %w", deets.Database, err)
}
defer db.Close()
query := fmt.Sprintf("DROP DATABASE %s", p.Quote(deets.Database))
log(logging.SQL, query)
_, err = db.Exec(query)
if err != nil {
return fmt.Errorf("error dropping PostgreSQL database %s: %w", deets.Database, err)
}
log(logging.Info, "dropped database %s", deets.Database)
return nil
}
func (p *postgresql) URL() string {
c := p.ConnectionDetails
if c.URL != "" {
return c.URL
}
s := "postgres://%s:%s@%s:%s/%s?%s"
return fmt.Sprintf(s, c.User, url.QueryEscape(c.Password), c.Host, c.Port, c.Database, c.OptionsString(""))
}
func (p *postgresql) urlWithoutDb() string {
c := p.ConnectionDetails
// 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?%s"
return fmt.Sprintf(s, c.User, url.QueryEscape(c.Password), c.Host, c.Port, c.OptionsString(""))
}
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) DumpSchema(w io.Writer) error {
cmd := exec.Command("pg_dump", "-s", fmt.Sprintf("--dbname=%s", p.URL()))
return genericDumpSchema(p.Details(), cmd, w)
}
// LoadSchema executes a schema sql file against the configured database.
func (p *postgresql) LoadSchema(r io.Reader) error {
return genericLoadSchema(p, r)
}
// TruncateAll truncates all tables for the given connection.
func (p *postgresql) TruncateAll(tx *Connection) error {
return tx.RawQuery(fmt.Sprintf(pgTruncate, tx.MigrationTableName())).Exec()
}
func newPostgreSQL(deets *ConnectionDetails) (dialect, error) {
cd := &postgresql{
commonDialect: commonDialect{ConnectionDetails: deets},
translateCache: map[string]string{},
mu: sync.Mutex{},
}
return cd, nil
}
// urlParserPostgreSQL parses the options the same way jackc/pgconn does:
// https://pkg.go.dev/github.com/jackc/pgconn?tab=doc#ParseConfig
// After parsed, they are set to ConnectionDetails instance
func urlParserPostgreSQL(cd *ConnectionDetails) error {
conf, err := pgconn.ParseConfig(cd.URL)
if err != nil {
return err
}
cd.Database = conf.Database
cd.Host = conf.Host
cd.User = conf.User
cd.Password = conf.Password
cd.Port = fmt.Sprintf("%d", conf.Port)
options := []string{"fallback_application_name"}
for i := range options {
if opt, ok := conf.RuntimeParams[options[i]]; ok {
cd.setOption(options[i], opt)
}
}
if conf.TLSConfig == nil {
cd.setOption("sslmode", "disable")
}
return nil
}
func finalizerPostgreSQL(cd *ConnectionDetails) {
cd.Port = defaults.String(cd.Port, portPostgreSQL)
}
const pgTruncate = `DO
$func$
DECLARE
_tbl text;
_sch text;
BEGIN
FOR _sch, _tbl IN
SELECT schemaname, tablename
FROM pg_tables
WHERE tablename <> '%s' AND schemaname NOT IN ('pg_catalog', 'information_schema') AND tableowner = current_user
LOOP
--RAISE ERROR '%%',
EXECUTE -- dangerous, test before you execute!
format('TRUNCATE TABLE %%I.%%I CASCADE', _sch, _tbl);
END LOOP;
END
$func$;`