-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathproviders.sql.go
More file actions
401 lines (365 loc) · 10.2 KB
/
Copy pathproviders.sql.go
File metadata and controls
401 lines (365 loc) · 10.2 KB
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
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.31.1
// source: providers.sql
package db
import (
"context"
"database/sql"
"encoding/json"
"github.com/google/uuid"
"github.com/lib/pq"
)
const createProvider = `-- name: CreateProvider :one
INSERT INTO providers (
name,
project_id,
class,
implements,
definition,
auth_flows
) VALUES ($1, $2, $3, $4, $5::jsonb, $6) RETURNING id, name, version, project_id, implements, definition, created_at, updated_at, auth_flows, class
`
type CreateProviderParams struct {
Name string `json:"name"`
ProjectID uuid.UUID `json:"project_id"`
Class ProviderClass `json:"class"`
Implements []ProviderType `json:"implements"`
Definition json.RawMessage `json:"definition"`
AuthFlows []AuthorizationFlow `json:"auth_flows"`
}
func (q *Queries) CreateProvider(ctx context.Context, arg CreateProviderParams) (Provider, error) {
row := q.db.QueryRowContext(ctx, createProvider,
arg.Name,
arg.ProjectID,
arg.Class,
pq.Array(arg.Implements),
arg.Definition,
pq.Array(arg.AuthFlows),
)
var i Provider
err := row.Scan(
&i.ID,
&i.Name,
&i.Version,
&i.ProjectID,
pq.Array(&i.Implements),
&i.Definition,
&i.CreatedAt,
&i.UpdatedAt,
pq.Array(&i.AuthFlows),
&i.Class,
)
return i, err
}
const deleteProvider = `-- name: DeleteProvider :exec
DELETE FROM providers
WHERE id = $1 AND project_id = $2
`
type DeleteProviderParams struct {
ID uuid.UUID `json:"id"`
ProjectID uuid.UUID `json:"project_id"`
}
func (q *Queries) DeleteProvider(ctx context.Context, arg DeleteProviderParams) error {
_, err := q.db.ExecContext(ctx, deleteProvider, arg.ID, arg.ProjectID)
return err
}
const findProviders = `-- name: FindProviders :many
SELECT id, name, version, project_id, implements, definition, created_at, updated_at, auth_flows, class FROM providers
WHERE project_id = ANY($1::uuid[])
AND ($2::provider_type = ANY(implements) OR $2::provider_type IS NULL)
AND (lower(name) = lower($3::text) OR $3::text IS NULL)
`
type FindProvidersParams struct {
Projects []uuid.UUID `json:"projects"`
Trait NullProviderType `json:"trait"`
Name sql.NullString `json:"name"`
}
// FindProviders allows us to take a trait and filter
// providers by it. It also optionally takes a name, in case we want to
// filter by name as well.
func (q *Queries) FindProviders(ctx context.Context, arg FindProvidersParams) ([]Provider, error) {
rows, err := q.db.QueryContext(ctx, findProviders, pq.Array(arg.Projects), arg.Trait, arg.Name)
if err != nil {
return nil, err
}
defer rows.Close()
items := []Provider{}
for rows.Next() {
var i Provider
if err := rows.Scan(
&i.ID,
&i.Name,
&i.Version,
&i.ProjectID,
pq.Array(&i.Implements),
&i.Definition,
&i.CreatedAt,
&i.UpdatedAt,
pq.Array(&i.AuthFlows),
&i.Class,
); err != nil {
return nil, err
}
items = append(items, i)
}
if err := rows.Close(); err != nil {
return nil, err
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const getProviderByID = `-- name: GetProviderByID :one
SELECT id, name, version, project_id, implements, definition, created_at, updated_at, auth_flows, class FROM providers WHERE id = $1
`
func (q *Queries) GetProviderByID(ctx context.Context, id uuid.UUID) (Provider, error) {
row := q.db.QueryRowContext(ctx, getProviderByID, id)
var i Provider
err := row.Scan(
&i.ID,
&i.Name,
&i.Version,
&i.ProjectID,
pq.Array(&i.Implements),
&i.Definition,
&i.CreatedAt,
&i.UpdatedAt,
pq.Array(&i.AuthFlows),
&i.Class,
)
return i, err
}
const getProviderByIDAndProject = `-- name: GetProviderByIDAndProject :one
SELECT id, name, version, project_id, implements, definition, created_at, updated_at, auth_flows, class FROM providers WHERE id = $1 AND project_id = $2
`
type GetProviderByIDAndProjectParams struct {
ID uuid.UUID `json:"id"`
ProjectID uuid.UUID `json:"project_id"`
}
func (q *Queries) GetProviderByIDAndProject(ctx context.Context, arg GetProviderByIDAndProjectParams) (Provider, error) {
row := q.db.QueryRowContext(ctx, getProviderByIDAndProject, arg.ID, arg.ProjectID)
var i Provider
err := row.Scan(
&i.ID,
&i.Name,
&i.Version,
&i.ProjectID,
pq.Array(&i.Implements),
&i.Definition,
&i.CreatedAt,
&i.UpdatedAt,
pq.Array(&i.AuthFlows),
&i.Class,
)
return i, err
}
const getProviderByName = `-- name: GetProviderByName :one
SELECT id, name, version, project_id, implements, definition, created_at, updated_at, auth_flows, class FROM providers WHERE lower(name) = lower($1) AND project_id = ANY($2::uuid[])
LIMIT 1
`
type GetProviderByNameParams struct {
Name string `json:"name"`
Projects []uuid.UUID `json:"projects"`
}
// GetProviderByName allows us to get a provider by its name. This takes
// into account the project hierarchy, so it will only return the provider
// if it exists in the project or any of its ancestors. It'll return the first
// provider that matches the name.
func (q *Queries) GetProviderByName(ctx context.Context, arg GetProviderByNameParams) (Provider, error) {
row := q.db.QueryRowContext(ctx, getProviderByName, arg.Name, pq.Array(arg.Projects))
var i Provider
err := row.Scan(
&i.ID,
&i.Name,
&i.Version,
&i.ProjectID,
pq.Array(&i.Implements),
&i.Definition,
&i.CreatedAt,
&i.UpdatedAt,
pq.Array(&i.AuthFlows),
&i.Class,
)
return i, err
}
const globalListProviders = `-- name: GlobalListProviders :many
SELECT id, name, version, project_id, implements, definition, created_at, updated_at, auth_flows, class FROM providers
`
func (q *Queries) GlobalListProviders(ctx context.Context) ([]Provider, error) {
rows, err := q.db.QueryContext(ctx, globalListProviders)
if err != nil {
return nil, err
}
defer rows.Close()
items := []Provider{}
for rows.Next() {
var i Provider
if err := rows.Scan(
&i.ID,
&i.Name,
&i.Version,
&i.ProjectID,
pq.Array(&i.Implements),
&i.Definition,
&i.CreatedAt,
&i.UpdatedAt,
pq.Array(&i.AuthFlows),
&i.Class,
); err != nil {
return nil, err
}
items = append(items, i)
}
if err := rows.Close(); err != nil {
return nil, err
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const globalListProvidersByClass = `-- name: GlobalListProvidersByClass :many
SELECT id, name, version, project_id, implements, definition, created_at, updated_at, auth_flows, class FROM providers WHERE class = $1
`
func (q *Queries) GlobalListProvidersByClass(ctx context.Context, class ProviderClass) ([]Provider, error) {
rows, err := q.db.QueryContext(ctx, globalListProvidersByClass, class)
if err != nil {
return nil, err
}
defer rows.Close()
items := []Provider{}
for rows.Next() {
var i Provider
if err := rows.Scan(
&i.ID,
&i.Name,
&i.Version,
&i.ProjectID,
pq.Array(&i.Implements),
&i.Definition,
&i.CreatedAt,
&i.UpdatedAt,
pq.Array(&i.AuthFlows),
&i.Class,
); err != nil {
return nil, err
}
items = append(items, i)
}
if err := rows.Close(); err != nil {
return nil, err
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const listProvidersByProjectID = `-- name: ListProvidersByProjectID :many
SELECT id, name, version, project_id, implements, definition, created_at, updated_at, auth_flows, class FROM providers WHERE project_id = ANY($1::uuid[])
`
// ListProvidersByProjectID allows us to list all providers
// for a given array of projects.
func (q *Queries) ListProvidersByProjectID(ctx context.Context, projects []uuid.UUID) ([]Provider, error) {
rows, err := q.db.QueryContext(ctx, listProvidersByProjectID, pq.Array(projects))
if err != nil {
return nil, err
}
defer rows.Close()
items := []Provider{}
for rows.Next() {
var i Provider
if err := rows.Scan(
&i.ID,
&i.Name,
&i.Version,
&i.ProjectID,
pq.Array(&i.Implements),
&i.Definition,
&i.CreatedAt,
&i.UpdatedAt,
pq.Array(&i.AuthFlows),
&i.Class,
); err != nil {
return nil, err
}
items = append(items, i)
}
if err := rows.Close(); err != nil {
return nil, err
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const listProvidersByProjectIDPaginated = `-- name: ListProvidersByProjectIDPaginated :many
SELECT id, name, version, project_id, implements, definition, created_at, updated_at, auth_flows, class FROM providers
WHERE project_id = $1
AND (created_at > $2 OR $2 IS NULL)
ORDER BY created_at ASC
LIMIT $3
`
type ListProvidersByProjectIDPaginatedParams struct {
ProjectID uuid.UUID `json:"project_id"`
CreatedAt sql.NullTime `json:"created_at"`
Limit int32 `json:"limit"`
}
// ListProvidersByProjectIDPaginated allows us to lits all providers for a given project
// with pagination taken into account. In this case, the cursor is the creation date.
func (q *Queries) ListProvidersByProjectIDPaginated(ctx context.Context, arg ListProvidersByProjectIDPaginatedParams) ([]Provider, error) {
rows, err := q.db.QueryContext(ctx, listProvidersByProjectIDPaginated, arg.ProjectID, arg.CreatedAt, arg.Limit)
if err != nil {
return nil, err
}
defer rows.Close()
items := []Provider{}
for rows.Next() {
var i Provider
if err := rows.Scan(
&i.ID,
&i.Name,
&i.Version,
&i.ProjectID,
pq.Array(&i.Implements),
&i.Definition,
&i.CreatedAt,
&i.UpdatedAt,
pq.Array(&i.AuthFlows),
&i.Class,
); err != nil {
return nil, err
}
items = append(items, i)
}
if err := rows.Close(); err != nil {
return nil, err
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const updateProvider = `-- name: UpdateProvider :exec
UPDATE providers
SET implements = $1, definition = $2::jsonb, auth_flows = $3
WHERE id = $4 AND project_id = $5
`
type UpdateProviderParams struct {
Implements []ProviderType `json:"implements"`
Definition json.RawMessage `json:"definition"`
AuthFlows []AuthorizationFlow `json:"auth_flows"`
ID uuid.UUID `json:"id"`
ProjectID uuid.UUID `json:"project_id"`
}
func (q *Queries) UpdateProvider(ctx context.Context, arg UpdateProviderParams) error {
_, err := q.db.ExecContext(ctx, updateProvider,
pq.Array(arg.Implements),
arg.Definition,
pq.Array(arg.AuthFlows),
arg.ID,
arg.ProjectID,
)
return err
}