-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtable.gotmpl
423 lines (366 loc) · 13.6 KB
/
table.gotmpl
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
// Code generated by gnorm, DO NOT EDIT!
package {{toLower .Table.Name}}
import (
"{{.Params.RootImport}}"
"{{.Params.RootImport}}/{{toLower .Table.Schema.Name}}/enum"
uuid "github.com/gofrs/uuid"
"github.com/pkg/errors"
)
// TableName is the primary table that this particular gnormed file deals with.
const TableName = "{{.Table.DBName}}"
{{$rootPkg := .Params.RootPkg -}}
{{$table := .Table.DBName -}}
{{$schema := .Table.Schema.DBName -}}
{{$colsByName := .Table.ColumnsByName }}
{{- $nonPKDBNames := .Table.Columns.DBNames.Sorted.Except .Table.PrimaryKeys.DBNames}}
// Row represents a row from '{{ $table }}'.
type Row struct {
{{- range .Table.PrimaryKeys.DBNames.Sorted }}{{ with (index $colsByName .)}}
{{ .Name }} {{ if .IsArray }}[]{{ end }}{{ .Type }} // {{ .DBName }} (PK){{end}}
{{- end }}
{{- range $nonPKDBNames }}{{ with (index $colsByName .) }}
{{ .Name }} {{ if .IsArray }}[]{{ end }}{{ .Type }} // {{ .DBName }}{{end}}
{{- end }}
}
// Field values for every column in {{.Table.Name}}.
var (
{{- range .Table.Columns.DBNames.Sorted }}{{with index $colsByName .}}
{{- if or (hasPrefix .Type (printf "%s." $rootPkg)) (hasPrefix .Type "enum.")}}
{{.Name}}Col {{ .Type }}Field = "{{ .DBName }}"
{{- else}}
{{.Name}}Col {{$rootPkg}}.{{ title (replace .Type "." "" 1) }}Field = "{{ .DBName }}"
{{- end}}{{end}}
{{- end}}
)
// All retrieves all rows from '{{ $table }}' as a slice of Row.
func All(ctx context.Context, db {{$rootPkg}}.DB) ([]*Row, error) {
const sqlstr = `SELECT
{{ join .Table.Columns.DBNames.Sorted ", " }}
FROM {{$schema}}.{{ $table }}`
var vals []*Row
q, err := db.QueryContext(ctx, sqlstr)
if err != nil {
return nil, errors.Wrap(err, "query {{.Table.Name}}")
}
for q.Next() {
r := Row{}
err := q.Scan({{- range .Table.Columns.DBNames.Sorted}}{{with index $colsByName .}}
{{- if .IsArray }}pq.Array(&r.{{ .Name }}),{{- else -}}&r.{{ .Name }},{{ end }}{{end}}
{{end -}})
if err != nil {
return nil, errors.Wrap(err, "all {{.Table.Name}}")
}
vals = append(vals, &r)
}
return vals, nil
}
// CountQuery retrieve one row from '{{ $table }}'.
func CountQuery(ctx context.Context, db gnorm.DB, where gnorm.WhereClause) (int, error) {
const origsqlstr = `SELECT
count(*) as count
FROM {{$schema}}.{{ $table }} WHERE (`
idx := 1
sqlstr := origsqlstr + where.String(&idx) + ") "
count := 0
err := db.QueryRowContext(ctx, sqlstr, where.Values()...).Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "count {{.Table.Name}}")
}
return count, nil
}
// Query retrieves rows from '{{ $table }}' as a slice of Row.
func Query(ctx context.Context, db {{$rootPkg}}.DB, where {{$rootPkg}}.WhereClause) ([]*Row, error) {
const origsqlstr = `SELECT
{{ join .Table.Columns.DBNames ", " }}
FROM {{$schema}}.{{ $table }} WHERE (`
idx := 1
sqlstr := origsqlstr + where.String(&idx) + ") "
var vals []*Row
q, err := db.QueryContext(ctx, sqlstr, where.Values()...)
if err != nil {
return nil, errors.Wrap(err, "query {{.Table.Name}}")
}
for q.Next() {
r := Row{}
err := q.Scan({{- range .Table.Columns}}
{{- if .IsArray }}pq.Array(&r.{{ .Name }}),{{- else -}}&r.{{ .Name }},{{ end }}
{{end -}})
if err != nil {
return nil, errors.Wrap(err, "query {{.Table.Name}}")
}
vals = append(vals, &r)
}
return vals, nil
}
// QueryOrder retrieves rows from '{{ $table }}' as a slice of Row in a particular order.
func QueryOrder(ctx context.Context, db {{$rootPkg}}.DB, where {{$rootPkg}}.WhereClause, orderby {{$rootPkg}}.OrderBy) ([]*Row, error) {
const origsqlstr = `SELECT
{{ join .Table.Columns.DBNames ", " }}
FROM {{$schema}}.{{ $table }} WHERE (`
idx := 1
sqlstr := origsqlstr + where.String(&idx) + ") " + orderby.String()
var vals []*Row
q, err := db.QueryContext(ctx, sqlstr, where.Values()...)
if err != nil {
return nil, errors.Wrap(err, "query {{.Table.Name}}")
}
for q.Next() {
r := Row{}
err := q.Scan({{- range .Table.Columns}}
{{- if .IsArray }}pq.Array(&r.{{ .Name }}),{{- else -}}&r.{{ .Name }},{{ end }}
{{end -}})
if err != nil {
return nil, errors.Wrap(err, "query {{.Table.Name}}")
}
vals = append(vals, &r)
}
return vals, nil
}
// One retrieve one row from '{{ $table }}'.
func One(ctx context.Context, db {{$rootPkg}}.DB, where {{$rootPkg}}.WhereClause) (*Row, error) {
const origsqlstr = `SELECT
{{ join .Table.Columns.DBNames ", " }}
FROM {{$schema}}.{{ $table }} WHERE (`
idx := 1
sqlstr := origsqlstr + where.String(&idx) + ") "
r := &Row{}
err := db.QueryRowContext(ctx, sqlstr, where.Values()...).Scan({{- range .Table.Columns}}
{{- if .IsArray }}pq.Array(&r.{{ .Name }}),{{- else -}}&r.{{ .Name }},{{ end }}
{{end -}})
if err != nil {
return nil, errors.Wrap(err, "queryOne {{.Table.Name}}")
}
return r, nil
}
// First retrieve one row from '{{ $table }}' when sorted by orderby.
func First(ctx context.Context, db {{$rootPkg}}.DB, where {{$rootPkg}}.WhereClause, orderby {{$rootPkg}}.OrderBy) (*Row, error) {
const origsqlstr = `SELECT
{{ join .Table.Columns.DBNames ", " }}
FROM {{$schema}}.{{ $table }} WHERE (`
idx := 1
sqlstr := origsqlstr + where.String(&idx) + ") " + orderby.String()
r := &Row{}
err := db.QueryRowContext(ctx, sqlstr, where.Values()...).Scan({{- range .Table.Columns}}
{{- if .IsArray }}pq.Array(&r.{{ .Name }}),{{- else -}}&r.{{ .Name }},{{ end }}
{{end -}})
if err != nil {
return nil, errors.Wrap(err, "queryFirst {{.Table.Name}}")
}
return r, nil
}
{{/* Takes the number of values to produce and produces a list of postgres
placeholders of the form $1, $2, etc */}}
{{- define "values" -}}
{{$nums := numbers 1 . -}}
{{$indices := $nums.Sprintf "$%s" -}}
{{join $indices ", " -}}
{{end}}
{{$hasUpdatedAt := ne (len (.Table.Columns.DBNames.Except (makeSlice "updated_at"))) (len .Table.Columns.DBNames)}}
{{- $insertCols := plugin "plugin" "insertCols" .Table.Columns}}
{{- $insertFields := join (plugin "plugin" "insertFields" .Table.Columns) "," }}
{{- $PKFields := join (.Table.PrimaryKeys.Names.Sorted.Sprintf "r.%s") ", "}}
{{- $PKScanFields := join (.Table.PrimaryKeys.Names.Sorted.Sprintf "&r.%s") ", "}}
{{- $numNonPKs := sub (len .Table.Columns) (len .Table.PrimaryKeys)}}
{{if .Table.HasPrimaryKey }}
// Find retrieves a row from '{{ $table }}' by its primary key(s).
func Find(ctx context.Context, db {{$rootPkg}}.DB,
{{- range .Table.PrimaryKeys.DBNames.Sorted}}
{{- with index $colsByName .}}
{{camel .DBName}} {{.Type}},{{end}}
{{end -}}) (*Row, error) {
const sqlstr = `SELECT
{{ join .Table.Columns.DBNames.Sorted ", " }}
FROM {{$schema}}.{{ $table }} WHERE ( {{join .Table.PrimaryKeys.DBNames.Sorted ", "}} = {{template "values" (len .Table.PrimaryKeys)}} )`
r := &Row{}
err := db.QueryRowContext(ctx, sqlstr,
{{- range .Table.PrimaryKeys.DBNames.Sorted}}
{{camel .}},
{{end -}}).Scan({{- range .Table.Columns.DBNames.Sorted}}{{with index $colsByName .}}
{{- if .IsArray }}pq.Array(&r.{{ .Name }}),{{- else -}}&r.{{ .Name }},{{ end }}{{end}}
{{end -}})
if err != nil {
return nil, errors.Wrap(err, "find {{.Table.Name}}")
}
return r, nil
}
{{end}}
// Insert inserts the row into the database.
func Insert(ctx context.Context, db {{$rootPkg}}.DB, r *Row) error {
const sqlstr = `INSERT INTO {{$schema}}.{{ $table }} ` +
{{- if gt (len $insertCols) 0}}
`(
{{ join $insertCols ", " }}
) VALUES (
{{template "values" (len $insertCols) }}
) ` +
{{- else}}
`DEFAULT VALUES ` +
{{- end}}
`RETURNING
{{- if $hasUpdatedAt}}
created_at, updated_at, {{join .Table.PrimaryKeys.DBNames.Sorted ", "}}
{{- else}}
created_at, {{join .Table.PrimaryKeys.DBNames.Sorted ", "}}
{{- end}}
`
{{if $hasUpdatedAt}}
err := db.QueryRowContext(ctx, sqlstr,
{{- range $insertCols}}{{with index $colsByName .}}
{{- if .IsArray }}pq.Array(&r.{{ .Name }}),{{- else -}}&r.{{ .Name }},{{ end }}
{{end}}
{{end -}}).Scan(&r.CreatedAt, &r.UpdatedAt, {{$PKScanFields}})
{{else}}
err := db.QueryRowContext(ctx, sqlstr,
{{- range $insertCols}}{{with index $colsByName .}}
{{- if .IsArray }}pq.Array(&r.{{ .Name }}),{{- else -}}&r.{{ .Name }},{{ end }}
{{end}}
{{end -}}).Scan(&r.CreatedAt, {{$PKScanFields}})
{{end}}
return errors.Wrap(err, "insert {{.Table.Name}}")
}
{{if and $hasUpdatedAt (gt (len $insertCols) 0)}}
// Update updates the Row in the database.
func Update(ctx context.Context, db {{$rootPkg}}.DB, r *Row) error {
const sqlstr = `UPDATE {{$schema}}.{{ $table }} SET (
{{join $insertCols ", "}}
) = (
{{ template "values" (len $insertCols) }}
) WHERE
{{$last := sum (len .Table.PrimaryKeys) (len $insertCols)}}
{{- $first := inc (len $insertCols)}}
{{- range $x, $name := .Table.PrimaryKeys.DBNames.Sorted -}}
{{$name}} = ${{sum $first $x}}{{if lt (sum $x $first) $last}} AND {{end}}
{{- end}}
RETURNING
created_at, updated_at
`
err := db.QueryRowContext(ctx, sqlstr, {{$insertFields}}, {{$PKFields}}).Scan(&r.CreatedAt, &r.UpdatedAt)
return errors.Wrap(err, "update {{.Table.Name}}:")
}
{{end}}
// InsertIgnore inserts the row into the database but ignores conflicts
func InsertIgnore(ctx context.Context, db gnorm.DB, r *Row, constraint string) error {
sqlstr := `INSERT INTO {{$schema}}.{{ $table }} ` +
{{- if gt (len $insertCols) 0}}
`(
{{ join $insertCols ", " }}
) VALUES (
{{template "values" (len $insertCols) }}
) ` +
{{- else}}
`DEFAULT VALUES ` +
{{- end}}
`ON CONFLICT ON CONSTRAINT ` + constraint + ` DO NOTHING `
_, err := db.ExecContext(ctx, sqlstr, {{$insertFields}})
return errors.Wrap(err, "insert ignore {{.Table.Name}}")
}
// Set sets a single column on an existing row in the database.
func Set(ctx context.Context, db {{$rootPkg}}.DB, set {{$rootPkg}}.Where, where {{$rootPkg}}.WhereClause) (int64, error) {
idx := 2
sqlstr := `UPDATE {{$schema}}.{{ $table }} SET ` +
set.Field + " = $1 " +
` WHERE ` +
where.String(&idx)
res, err := db.ExecContext(ctx, sqlstr, append([]interface{}{ set.Value }, where.Values()...)...)
if err != nil {
return 0, errors.Wrap(err, "set {{.Table.Name}}")
}
return res.RowsAffected()
}
// AppendInt64 adds a value to a field
func AppendInt64(ctx context.Context, db {{$rootPkg}}.DB, name string, value interface{}, where {{$rootPkg}}.WhereClause) (int64, error) {
idx := 2
sqlstr := `UPDATE {{$schema}}.{{ $table }} SET ` +
name + " = array_append(" + name + ", $1::bigint) " +
` WHERE ` +
where.String(&idx)
res, err := db.ExecContext(ctx, sqlstr, append([]interface{}{ value }, where.Values()...)...)
if err != nil {
return 0, errors.Wrap(err, "append_int64 {{.Table.Name}}")
}
return res.RowsAffected()
}
// Inc increments the value of a single column on an existing row in the database.
func Inc(ctx context.Context, db {{$rootPkg}}.DB, inc {{$rootPkg}}.Where, where {{$rootPkg}}.WhereClause) (int64, error) {
idx := 2
sqlstr := `UPDATE {{$schema}}.{{ $table }} SET ` +
inc.Field + " = " + inc.Field + " + $1" +
` WHERE ` +
where.String(&idx)
res, err := db.ExecContext(ctx, sqlstr, append([]interface{}{ inc.Value }, where.Values()...)...)
if err != nil {
return 0, errors.Wrap(err, "inc {{.Table.Name}}")
}
return res.RowsAffected()
}
{{if and .Table.HasPrimaryKey (gt (len $insertFields) 0)}}
// Upsert performs an insert-or-update in one DB call for {{ .Table.Name }}.
// Unlike insert, upsert requires that you have set any IDs on the row you're upserting.
// NOTE: PostgreSQL 9.5+ only
func Upsert(ctx context.Context, db {{$rootPkg}}.DB, r *Row) error {
{{$upsertCols := .Table.Columns.DBNames.Sorted.Except (makeSlice "updated_at" "created_at")}}
const sqlstr = `INSERT INTO {{$schema}}.{{ $table }} (
{{join $upsertCols ", "}}
) VALUES (
{{template "values" (len $upsertCols) }}
) ON CONFLICT ({{join .Table.PrimaryKeys.DBNames.Sorted ", " }}) DO UPDATE SET (
{{join $upsertCols ", "}}
) = (
{{ template "values" (len $upsertCols) }}
)`
{{$upsertNames := .Table.Columns.Names.Sorted.Except (makeSlice "UpdatedAt" "CreatedAt")}}
{{$upsertFields := join ($upsertNames.Sprintf "r.%s") ", " }}
_, err := db.ExecContext(ctx, sqlstr, {{$upsertFields}})
return errors.Wrap(err, "upsert {{.Table.Name}}")
}
{{end}}
{{if .Table.HasPrimaryKey }}
// Delete deletes the Row from the database. Returns the number of items deleted.
func Delete( ctx context.Context,
db {{$rootPkg}}.DB,
{{- range .Table.PrimaryKeys.DBNames.Sorted}}{{with index $colsByName .}}
{{camel .DBName}} {{.Type}},{{end}}
{{end -}}
) (int64, error) {
const sqlstr = `DELETE FROM {{$schema}}.{{ $table }}
WHERE
{{$last := dec (len .Table.PrimaryKeys)}}
{{- range $x, $name := .Table.PrimaryKeys.DBNames.Sorted -}}
{{$name}} = ${{inc $x}}{{if lt $x $last}} AND {{end}}
{{- end}}
`
res, err := db.ExecContext(ctx, sqlstr,
{{- range .Table.PrimaryKeys.DBNames.Sorted -}}
{{camel .}},
{{- end -}}
)
if err != nil {
return 0, errors.Wrap(err, "delete {{.Table.Name}}")
}
rows, err := res.RowsAffected()
if err != nil {
return 0, err
}
return rows, nil
}
{{end}}
// DeleteWhere deletes Rows from the database and returns the number of rows deleted.
func DeleteWhere(ctx context.Context, db {{$rootPkg}}.DB, where {{$rootPkg}}.WhereClause) (int64, error) {
const origsqlstr = `DELETE FROM {{$schema}}.{{ $table }} WHERE (`
idx := 1
sqlstr := origsqlstr + where.String(&idx) + ") "
res, err := db.ExecContext(ctx, sqlstr, where.Values()...)
if err != nil {
return 0, errors.Wrap(err, "delete {{.Table.Name}}")
}
return res.RowsAffected()
}
// DeleteAll deletes all Rows from the database and returns the number of rows deleted.
func DeleteAll(ctx context.Context, db {{$rootPkg}}.DB) (int64, error) {
const sqlstr = `DELETE FROM {{$schema}}.{{ $table }}`
res, err := db.ExecContext(ctx, sqlstr)
if err != nil {
return 0, errors.Wrap(err, "deleteall {{.Table.Name}}")
}
return res.RowsAffected()
}