-
Notifications
You must be signed in to change notification settings - Fork 27
/
robotaccount_update.go
549 lines (503 loc) · 16.7 KB
/
robotaccount_update.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
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
// Code generated by ent, DO NOT EDIT.
package ent
import (
"context"
"errors"
"fmt"
"time"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
"github.com/chainloop-dev/chainloop/app/controlplane/internal/data/ent/predicate"
"github.com/chainloop-dev/chainloop/app/controlplane/internal/data/ent/robotaccount"
"github.com/chainloop-dev/chainloop/app/controlplane/internal/data/ent/workflow"
"github.com/chainloop-dev/chainloop/app/controlplane/internal/data/ent/workflowrun"
"github.com/google/uuid"
)
// RobotAccountUpdate is the builder for updating RobotAccount entities.
type RobotAccountUpdate struct {
config
hooks []Hook
mutation *RobotAccountMutation
}
// Where appends a list predicates to the RobotAccountUpdate builder.
func (rau *RobotAccountUpdate) Where(ps ...predicate.RobotAccount) *RobotAccountUpdate {
rau.mutation.Where(ps...)
return rau
}
// SetName sets the "name" field.
func (rau *RobotAccountUpdate) SetName(s string) *RobotAccountUpdate {
rau.mutation.SetName(s)
return rau
}
// SetRevokedAt sets the "revoked_at" field.
func (rau *RobotAccountUpdate) SetRevokedAt(t time.Time) *RobotAccountUpdate {
rau.mutation.SetRevokedAt(t)
return rau
}
// SetNillableRevokedAt sets the "revoked_at" field if the given value is not nil.
func (rau *RobotAccountUpdate) SetNillableRevokedAt(t *time.Time) *RobotAccountUpdate {
if t != nil {
rau.SetRevokedAt(*t)
}
return rau
}
// ClearRevokedAt clears the value of the "revoked_at" field.
func (rau *RobotAccountUpdate) ClearRevokedAt() *RobotAccountUpdate {
rau.mutation.ClearRevokedAt()
return rau
}
// SetWorkflowID sets the "workflow" edge to the Workflow entity by ID.
func (rau *RobotAccountUpdate) SetWorkflowID(id uuid.UUID) *RobotAccountUpdate {
rau.mutation.SetWorkflowID(id)
return rau
}
// SetNillableWorkflowID sets the "workflow" edge to the Workflow entity by ID if the given value is not nil.
func (rau *RobotAccountUpdate) SetNillableWorkflowID(id *uuid.UUID) *RobotAccountUpdate {
if id != nil {
rau = rau.SetWorkflowID(*id)
}
return rau
}
// SetWorkflow sets the "workflow" edge to the Workflow entity.
func (rau *RobotAccountUpdate) SetWorkflow(w *Workflow) *RobotAccountUpdate {
return rau.SetWorkflowID(w.ID)
}
// AddWorkflowrunIDs adds the "workflowruns" edge to the WorkflowRun entity by IDs.
func (rau *RobotAccountUpdate) AddWorkflowrunIDs(ids ...uuid.UUID) *RobotAccountUpdate {
rau.mutation.AddWorkflowrunIDs(ids...)
return rau
}
// AddWorkflowruns adds the "workflowruns" edges to the WorkflowRun entity.
func (rau *RobotAccountUpdate) AddWorkflowruns(w ...*WorkflowRun) *RobotAccountUpdate {
ids := make([]uuid.UUID, len(w))
for i := range w {
ids[i] = w[i].ID
}
return rau.AddWorkflowrunIDs(ids...)
}
// Mutation returns the RobotAccountMutation object of the builder.
func (rau *RobotAccountUpdate) Mutation() *RobotAccountMutation {
return rau.mutation
}
// ClearWorkflow clears the "workflow" edge to the Workflow entity.
func (rau *RobotAccountUpdate) ClearWorkflow() *RobotAccountUpdate {
rau.mutation.ClearWorkflow()
return rau
}
// ClearWorkflowruns clears all "workflowruns" edges to the WorkflowRun entity.
func (rau *RobotAccountUpdate) ClearWorkflowruns() *RobotAccountUpdate {
rau.mutation.ClearWorkflowruns()
return rau
}
// RemoveWorkflowrunIDs removes the "workflowruns" edge to WorkflowRun entities by IDs.
func (rau *RobotAccountUpdate) RemoveWorkflowrunIDs(ids ...uuid.UUID) *RobotAccountUpdate {
rau.mutation.RemoveWorkflowrunIDs(ids...)
return rau
}
// RemoveWorkflowruns removes "workflowruns" edges to WorkflowRun entities.
func (rau *RobotAccountUpdate) RemoveWorkflowruns(w ...*WorkflowRun) *RobotAccountUpdate {
ids := make([]uuid.UUID, len(w))
for i := range w {
ids[i] = w[i].ID
}
return rau.RemoveWorkflowrunIDs(ids...)
}
// Save executes the query and returns the number of nodes affected by the update operation.
func (rau *RobotAccountUpdate) Save(ctx context.Context) (int, error) {
return withHooks[int, RobotAccountMutation](ctx, rau.sqlSave, rau.mutation, rau.hooks)
}
// SaveX is like Save, but panics if an error occurs.
func (rau *RobotAccountUpdate) SaveX(ctx context.Context) int {
affected, err := rau.Save(ctx)
if err != nil {
panic(err)
}
return affected
}
// Exec executes the query.
func (rau *RobotAccountUpdate) Exec(ctx context.Context) error {
_, err := rau.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (rau *RobotAccountUpdate) ExecX(ctx context.Context) {
if err := rau.Exec(ctx); err != nil {
panic(err)
}
}
func (rau *RobotAccountUpdate) sqlSave(ctx context.Context) (n int, err error) {
_spec := sqlgraph.NewUpdateSpec(robotaccount.Table, robotaccount.Columns, sqlgraph.NewFieldSpec(robotaccount.FieldID, field.TypeUUID))
if ps := rau.mutation.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
if value, ok := rau.mutation.Name(); ok {
_spec.SetField(robotaccount.FieldName, field.TypeString, value)
}
if value, ok := rau.mutation.RevokedAt(); ok {
_spec.SetField(robotaccount.FieldRevokedAt, field.TypeTime, value)
}
if rau.mutation.RevokedAtCleared() {
_spec.ClearField(robotaccount.FieldRevokedAt, field.TypeTime)
}
if rau.mutation.WorkflowCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: true,
Table: robotaccount.WorkflowTable,
Columns: []string{robotaccount.WorkflowColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeUUID,
Column: workflow.FieldID,
},
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := rau.mutation.WorkflowIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: true,
Table: robotaccount.WorkflowTable,
Columns: []string{robotaccount.WorkflowColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeUUID,
Column: workflow.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
if rau.mutation.WorkflowrunsCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2M,
Inverse: false,
Table: robotaccount.WorkflowrunsTable,
Columns: []string{robotaccount.WorkflowrunsColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeUUID,
Column: workflowrun.FieldID,
},
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := rau.mutation.RemovedWorkflowrunsIDs(); len(nodes) > 0 && !rau.mutation.WorkflowrunsCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2M,
Inverse: false,
Table: robotaccount.WorkflowrunsTable,
Columns: []string{robotaccount.WorkflowrunsColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeUUID,
Column: workflowrun.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := rau.mutation.WorkflowrunsIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2M,
Inverse: false,
Table: robotaccount.WorkflowrunsTable,
Columns: []string{robotaccount.WorkflowrunsColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeUUID,
Column: workflowrun.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
if n, err = sqlgraph.UpdateNodes(ctx, rau.driver, _spec); err != nil {
if _, ok := err.(*sqlgraph.NotFoundError); ok {
err = &NotFoundError{robotaccount.Label}
} else if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
return 0, err
}
rau.mutation.done = true
return n, nil
}
// RobotAccountUpdateOne is the builder for updating a single RobotAccount entity.
type RobotAccountUpdateOne struct {
config
fields []string
hooks []Hook
mutation *RobotAccountMutation
}
// SetName sets the "name" field.
func (rauo *RobotAccountUpdateOne) SetName(s string) *RobotAccountUpdateOne {
rauo.mutation.SetName(s)
return rauo
}
// SetRevokedAt sets the "revoked_at" field.
func (rauo *RobotAccountUpdateOne) SetRevokedAt(t time.Time) *RobotAccountUpdateOne {
rauo.mutation.SetRevokedAt(t)
return rauo
}
// SetNillableRevokedAt sets the "revoked_at" field if the given value is not nil.
func (rauo *RobotAccountUpdateOne) SetNillableRevokedAt(t *time.Time) *RobotAccountUpdateOne {
if t != nil {
rauo.SetRevokedAt(*t)
}
return rauo
}
// ClearRevokedAt clears the value of the "revoked_at" field.
func (rauo *RobotAccountUpdateOne) ClearRevokedAt() *RobotAccountUpdateOne {
rauo.mutation.ClearRevokedAt()
return rauo
}
// SetWorkflowID sets the "workflow" edge to the Workflow entity by ID.
func (rauo *RobotAccountUpdateOne) SetWorkflowID(id uuid.UUID) *RobotAccountUpdateOne {
rauo.mutation.SetWorkflowID(id)
return rauo
}
// SetNillableWorkflowID sets the "workflow" edge to the Workflow entity by ID if the given value is not nil.
func (rauo *RobotAccountUpdateOne) SetNillableWorkflowID(id *uuid.UUID) *RobotAccountUpdateOne {
if id != nil {
rauo = rauo.SetWorkflowID(*id)
}
return rauo
}
// SetWorkflow sets the "workflow" edge to the Workflow entity.
func (rauo *RobotAccountUpdateOne) SetWorkflow(w *Workflow) *RobotAccountUpdateOne {
return rauo.SetWorkflowID(w.ID)
}
// AddWorkflowrunIDs adds the "workflowruns" edge to the WorkflowRun entity by IDs.
func (rauo *RobotAccountUpdateOne) AddWorkflowrunIDs(ids ...uuid.UUID) *RobotAccountUpdateOne {
rauo.mutation.AddWorkflowrunIDs(ids...)
return rauo
}
// AddWorkflowruns adds the "workflowruns" edges to the WorkflowRun entity.
func (rauo *RobotAccountUpdateOne) AddWorkflowruns(w ...*WorkflowRun) *RobotAccountUpdateOne {
ids := make([]uuid.UUID, len(w))
for i := range w {
ids[i] = w[i].ID
}
return rauo.AddWorkflowrunIDs(ids...)
}
// Mutation returns the RobotAccountMutation object of the builder.
func (rauo *RobotAccountUpdateOne) Mutation() *RobotAccountMutation {
return rauo.mutation
}
// ClearWorkflow clears the "workflow" edge to the Workflow entity.
func (rauo *RobotAccountUpdateOne) ClearWorkflow() *RobotAccountUpdateOne {
rauo.mutation.ClearWorkflow()
return rauo
}
// ClearWorkflowruns clears all "workflowruns" edges to the WorkflowRun entity.
func (rauo *RobotAccountUpdateOne) ClearWorkflowruns() *RobotAccountUpdateOne {
rauo.mutation.ClearWorkflowruns()
return rauo
}
// RemoveWorkflowrunIDs removes the "workflowruns" edge to WorkflowRun entities by IDs.
func (rauo *RobotAccountUpdateOne) RemoveWorkflowrunIDs(ids ...uuid.UUID) *RobotAccountUpdateOne {
rauo.mutation.RemoveWorkflowrunIDs(ids...)
return rauo
}
// RemoveWorkflowruns removes "workflowruns" edges to WorkflowRun entities.
func (rauo *RobotAccountUpdateOne) RemoveWorkflowruns(w ...*WorkflowRun) *RobotAccountUpdateOne {
ids := make([]uuid.UUID, len(w))
for i := range w {
ids[i] = w[i].ID
}
return rauo.RemoveWorkflowrunIDs(ids...)
}
// Where appends a list predicates to the RobotAccountUpdate builder.
func (rauo *RobotAccountUpdateOne) Where(ps ...predicate.RobotAccount) *RobotAccountUpdateOne {
rauo.mutation.Where(ps...)
return rauo
}
// Select allows selecting one or more fields (columns) of the returned entity.
// The default is selecting all fields defined in the entity schema.
func (rauo *RobotAccountUpdateOne) Select(field string, fields ...string) *RobotAccountUpdateOne {
rauo.fields = append([]string{field}, fields...)
return rauo
}
// Save executes the query and returns the updated RobotAccount entity.
func (rauo *RobotAccountUpdateOne) Save(ctx context.Context) (*RobotAccount, error) {
return withHooks[*RobotAccount, RobotAccountMutation](ctx, rauo.sqlSave, rauo.mutation, rauo.hooks)
}
// SaveX is like Save, but panics if an error occurs.
func (rauo *RobotAccountUpdateOne) SaveX(ctx context.Context) *RobotAccount {
node, err := rauo.Save(ctx)
if err != nil {
panic(err)
}
return node
}
// Exec executes the query on the entity.
func (rauo *RobotAccountUpdateOne) Exec(ctx context.Context) error {
_, err := rauo.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (rauo *RobotAccountUpdateOne) ExecX(ctx context.Context) {
if err := rauo.Exec(ctx); err != nil {
panic(err)
}
}
func (rauo *RobotAccountUpdateOne) sqlSave(ctx context.Context) (_node *RobotAccount, err error) {
_spec := sqlgraph.NewUpdateSpec(robotaccount.Table, robotaccount.Columns, sqlgraph.NewFieldSpec(robotaccount.FieldID, field.TypeUUID))
id, ok := rauo.mutation.ID()
if !ok {
return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "RobotAccount.id" for update`)}
}
_spec.Node.ID.Value = id
if fields := rauo.fields; len(fields) > 0 {
_spec.Node.Columns = make([]string, 0, len(fields))
_spec.Node.Columns = append(_spec.Node.Columns, robotaccount.FieldID)
for _, f := range fields {
if !robotaccount.ValidColumn(f) {
return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
}
if f != robotaccount.FieldID {
_spec.Node.Columns = append(_spec.Node.Columns, f)
}
}
}
if ps := rauo.mutation.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
if value, ok := rauo.mutation.Name(); ok {
_spec.SetField(robotaccount.FieldName, field.TypeString, value)
}
if value, ok := rauo.mutation.RevokedAt(); ok {
_spec.SetField(robotaccount.FieldRevokedAt, field.TypeTime, value)
}
if rauo.mutation.RevokedAtCleared() {
_spec.ClearField(robotaccount.FieldRevokedAt, field.TypeTime)
}
if rauo.mutation.WorkflowCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: true,
Table: robotaccount.WorkflowTable,
Columns: []string{robotaccount.WorkflowColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeUUID,
Column: workflow.FieldID,
},
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := rauo.mutation.WorkflowIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: true,
Table: robotaccount.WorkflowTable,
Columns: []string{robotaccount.WorkflowColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeUUID,
Column: workflow.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
if rauo.mutation.WorkflowrunsCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2M,
Inverse: false,
Table: robotaccount.WorkflowrunsTable,
Columns: []string{robotaccount.WorkflowrunsColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeUUID,
Column: workflowrun.FieldID,
},
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := rauo.mutation.RemovedWorkflowrunsIDs(); len(nodes) > 0 && !rauo.mutation.WorkflowrunsCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2M,
Inverse: false,
Table: robotaccount.WorkflowrunsTable,
Columns: []string{robotaccount.WorkflowrunsColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeUUID,
Column: workflowrun.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := rauo.mutation.WorkflowrunsIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2M,
Inverse: false,
Table: robotaccount.WorkflowrunsTable,
Columns: []string{robotaccount.WorkflowrunsColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeUUID,
Column: workflowrun.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
_node = &RobotAccount{config: rauo.config}
_spec.Assign = _node.assignValues
_spec.ScanValues = _node.scanValues
if err = sqlgraph.UpdateNode(ctx, rauo.driver, _spec); err != nil {
if _, ok := err.(*sqlgraph.NotFoundError); ok {
err = &NotFoundError{robotaccount.Label}
} else if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
return nil, err
}
rauo.mutation.done = true
return _node, nil
}