-
Notifications
You must be signed in to change notification settings - Fork 27
/
workflowrun_create.go
455 lines (413 loc) · 13.5 KB
/
workflowrun_create.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
// Code generated by ent, DO NOT EDIT.
package ent
import (
"context"
"errors"
"fmt"
"time"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
"github.com/chainloop-dev/chainloop/app/controlplane/internal/biz"
"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/workflowcontractversion"
"github.com/chainloop-dev/chainloop/app/controlplane/internal/data/ent/workflowrun"
"github.com/google/uuid"
)
// WorkflowRunCreate is the builder for creating a WorkflowRun entity.
type WorkflowRunCreate struct {
config
mutation *WorkflowRunMutation
hooks []Hook
}
// SetCreatedAt sets the "created_at" field.
func (wrc *WorkflowRunCreate) SetCreatedAt(t time.Time) *WorkflowRunCreate {
wrc.mutation.SetCreatedAt(t)
return wrc
}
// SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
func (wrc *WorkflowRunCreate) SetNillableCreatedAt(t *time.Time) *WorkflowRunCreate {
if t != nil {
wrc.SetCreatedAt(*t)
}
return wrc
}
// SetFinishedAt sets the "finished_at" field.
func (wrc *WorkflowRunCreate) SetFinishedAt(t time.Time) *WorkflowRunCreate {
wrc.mutation.SetFinishedAt(t)
return wrc
}
// SetNillableFinishedAt sets the "finished_at" field if the given value is not nil.
func (wrc *WorkflowRunCreate) SetNillableFinishedAt(t *time.Time) *WorkflowRunCreate {
if t != nil {
wrc.SetFinishedAt(*t)
}
return wrc
}
// SetState sets the "state" field.
func (wrc *WorkflowRunCreate) SetState(brs biz.WorkflowRunStatus) *WorkflowRunCreate {
wrc.mutation.SetState(brs)
return wrc
}
// SetNillableState sets the "state" field if the given value is not nil.
func (wrc *WorkflowRunCreate) SetNillableState(brs *biz.WorkflowRunStatus) *WorkflowRunCreate {
if brs != nil {
wrc.SetState(*brs)
}
return wrc
}
// SetReason sets the "reason" field.
func (wrc *WorkflowRunCreate) SetReason(s string) *WorkflowRunCreate {
wrc.mutation.SetReason(s)
return wrc
}
// SetNillableReason sets the "reason" field if the given value is not nil.
func (wrc *WorkflowRunCreate) SetNillableReason(s *string) *WorkflowRunCreate {
if s != nil {
wrc.SetReason(*s)
}
return wrc
}
// SetRunURL sets the "run_url" field.
func (wrc *WorkflowRunCreate) SetRunURL(s string) *WorkflowRunCreate {
wrc.mutation.SetRunURL(s)
return wrc
}
// SetNillableRunURL sets the "run_url" field if the given value is not nil.
func (wrc *WorkflowRunCreate) SetNillableRunURL(s *string) *WorkflowRunCreate {
if s != nil {
wrc.SetRunURL(*s)
}
return wrc
}
// SetRunnerType sets the "runner_type" field.
func (wrc *WorkflowRunCreate) SetRunnerType(s string) *WorkflowRunCreate {
wrc.mutation.SetRunnerType(s)
return wrc
}
// SetNillableRunnerType sets the "runner_type" field if the given value is not nil.
func (wrc *WorkflowRunCreate) SetNillableRunnerType(s *string) *WorkflowRunCreate {
if s != nil {
wrc.SetRunnerType(*s)
}
return wrc
}
// SetAttestationRef sets the "attestation_ref" field.
func (wrc *WorkflowRunCreate) SetAttestationRef(br *biz.AttestationRef) *WorkflowRunCreate {
wrc.mutation.SetAttestationRef(br)
return wrc
}
// SetID sets the "id" field.
func (wrc *WorkflowRunCreate) SetID(u uuid.UUID) *WorkflowRunCreate {
wrc.mutation.SetID(u)
return wrc
}
// SetNillableID sets the "id" field if the given value is not nil.
func (wrc *WorkflowRunCreate) SetNillableID(u *uuid.UUID) *WorkflowRunCreate {
if u != nil {
wrc.SetID(*u)
}
return wrc
}
// SetWorkflowID sets the "workflow" edge to the Workflow entity by ID.
func (wrc *WorkflowRunCreate) SetWorkflowID(id uuid.UUID) *WorkflowRunCreate {
wrc.mutation.SetWorkflowID(id)
return wrc
}
// SetNillableWorkflowID sets the "workflow" edge to the Workflow entity by ID if the given value is not nil.
func (wrc *WorkflowRunCreate) SetNillableWorkflowID(id *uuid.UUID) *WorkflowRunCreate {
if id != nil {
wrc = wrc.SetWorkflowID(*id)
}
return wrc
}
// SetWorkflow sets the "workflow" edge to the Workflow entity.
func (wrc *WorkflowRunCreate) SetWorkflow(w *Workflow) *WorkflowRunCreate {
return wrc.SetWorkflowID(w.ID)
}
// SetRobotaccountID sets the "robotaccount" edge to the RobotAccount entity by ID.
func (wrc *WorkflowRunCreate) SetRobotaccountID(id uuid.UUID) *WorkflowRunCreate {
wrc.mutation.SetRobotaccountID(id)
return wrc
}
// SetNillableRobotaccountID sets the "robotaccount" edge to the RobotAccount entity by ID if the given value is not nil.
func (wrc *WorkflowRunCreate) SetNillableRobotaccountID(id *uuid.UUID) *WorkflowRunCreate {
if id != nil {
wrc = wrc.SetRobotaccountID(*id)
}
return wrc
}
// SetRobotaccount sets the "robotaccount" edge to the RobotAccount entity.
func (wrc *WorkflowRunCreate) SetRobotaccount(r *RobotAccount) *WorkflowRunCreate {
return wrc.SetRobotaccountID(r.ID)
}
// SetContractVersionID sets the "contract_version" edge to the WorkflowContractVersion entity by ID.
func (wrc *WorkflowRunCreate) SetContractVersionID(id uuid.UUID) *WorkflowRunCreate {
wrc.mutation.SetContractVersionID(id)
return wrc
}
// SetNillableContractVersionID sets the "contract_version" edge to the WorkflowContractVersion entity by ID if the given value is not nil.
func (wrc *WorkflowRunCreate) SetNillableContractVersionID(id *uuid.UUID) *WorkflowRunCreate {
if id != nil {
wrc = wrc.SetContractVersionID(*id)
}
return wrc
}
// SetContractVersion sets the "contract_version" edge to the WorkflowContractVersion entity.
func (wrc *WorkflowRunCreate) SetContractVersion(w *WorkflowContractVersion) *WorkflowRunCreate {
return wrc.SetContractVersionID(w.ID)
}
// Mutation returns the WorkflowRunMutation object of the builder.
func (wrc *WorkflowRunCreate) Mutation() *WorkflowRunMutation {
return wrc.mutation
}
// Save creates the WorkflowRun in the database.
func (wrc *WorkflowRunCreate) Save(ctx context.Context) (*WorkflowRun, error) {
wrc.defaults()
return withHooks[*WorkflowRun, WorkflowRunMutation](ctx, wrc.sqlSave, wrc.mutation, wrc.hooks)
}
// SaveX calls Save and panics if Save returns an error.
func (wrc *WorkflowRunCreate) SaveX(ctx context.Context) *WorkflowRun {
v, err := wrc.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (wrc *WorkflowRunCreate) Exec(ctx context.Context) error {
_, err := wrc.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (wrc *WorkflowRunCreate) ExecX(ctx context.Context) {
if err := wrc.Exec(ctx); err != nil {
panic(err)
}
}
// defaults sets the default values of the builder before save.
func (wrc *WorkflowRunCreate) defaults() {
if _, ok := wrc.mutation.CreatedAt(); !ok {
v := workflowrun.DefaultCreatedAt()
wrc.mutation.SetCreatedAt(v)
}
if _, ok := wrc.mutation.State(); !ok {
v := workflowrun.DefaultState
wrc.mutation.SetState(v)
}
if _, ok := wrc.mutation.ID(); !ok {
v := workflowrun.DefaultID()
wrc.mutation.SetID(v)
}
}
// check runs all checks and user-defined validators on the builder.
func (wrc *WorkflowRunCreate) check() error {
if _, ok := wrc.mutation.CreatedAt(); !ok {
return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "WorkflowRun.created_at"`)}
}
if _, ok := wrc.mutation.State(); !ok {
return &ValidationError{Name: "state", err: errors.New(`ent: missing required field "WorkflowRun.state"`)}
}
if v, ok := wrc.mutation.State(); ok {
if err := workflowrun.StateValidator(v); err != nil {
return &ValidationError{Name: "state", err: fmt.Errorf(`ent: validator failed for field "WorkflowRun.state": %w`, err)}
}
}
return nil
}
func (wrc *WorkflowRunCreate) sqlSave(ctx context.Context) (*WorkflowRun, error) {
if err := wrc.check(); err != nil {
return nil, err
}
_node, _spec := wrc.createSpec()
if err := sqlgraph.CreateNode(ctx, wrc.driver, _spec); err != nil {
if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
return nil, err
}
if _spec.ID.Value != nil {
if id, ok := _spec.ID.Value.(*uuid.UUID); ok {
_node.ID = *id
} else if err := _node.ID.Scan(_spec.ID.Value); err != nil {
return nil, err
}
}
wrc.mutation.id = &_node.ID
wrc.mutation.done = true
return _node, nil
}
func (wrc *WorkflowRunCreate) createSpec() (*WorkflowRun, *sqlgraph.CreateSpec) {
var (
_node = &WorkflowRun{config: wrc.config}
_spec = sqlgraph.NewCreateSpec(workflowrun.Table, sqlgraph.NewFieldSpec(workflowrun.FieldID, field.TypeUUID))
)
if id, ok := wrc.mutation.ID(); ok {
_node.ID = id
_spec.ID.Value = &id
}
if value, ok := wrc.mutation.CreatedAt(); ok {
_spec.SetField(workflowrun.FieldCreatedAt, field.TypeTime, value)
_node.CreatedAt = value
}
if value, ok := wrc.mutation.FinishedAt(); ok {
_spec.SetField(workflowrun.FieldFinishedAt, field.TypeTime, value)
_node.FinishedAt = value
}
if value, ok := wrc.mutation.State(); ok {
_spec.SetField(workflowrun.FieldState, field.TypeEnum, value)
_node.State = value
}
if value, ok := wrc.mutation.Reason(); ok {
_spec.SetField(workflowrun.FieldReason, field.TypeString, value)
_node.Reason = value
}
if value, ok := wrc.mutation.RunURL(); ok {
_spec.SetField(workflowrun.FieldRunURL, field.TypeString, value)
_node.RunURL = value
}
if value, ok := wrc.mutation.RunnerType(); ok {
_spec.SetField(workflowrun.FieldRunnerType, field.TypeString, value)
_node.RunnerType = value
}
if value, ok := wrc.mutation.AttestationRef(); ok {
_spec.SetField(workflowrun.FieldAttestationRef, field.TypeJSON, value)
_node.AttestationRef = value
}
if nodes := wrc.mutation.WorkflowIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: true,
Table: workflowrun.WorkflowTable,
Columns: []string{workflowrun.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)
}
_node.workflow_workflowruns = &nodes[0]
_spec.Edges = append(_spec.Edges, edge)
}
if nodes := wrc.mutation.RobotaccountIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: true,
Table: workflowrun.RobotaccountTable,
Columns: []string{workflowrun.RobotaccountColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeUUID,
Column: robotaccount.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_node.robot_account_workflowruns = &nodes[0]
_spec.Edges = append(_spec.Edges, edge)
}
if nodes := wrc.mutation.ContractVersionIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: false,
Table: workflowrun.ContractVersionTable,
Columns: []string{workflowrun.ContractVersionColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeUUID,
Column: workflowcontractversion.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_node.workflow_run_contract_version = &nodes[0]
_spec.Edges = append(_spec.Edges, edge)
}
return _node, _spec
}
// WorkflowRunCreateBulk is the builder for creating many WorkflowRun entities in bulk.
type WorkflowRunCreateBulk struct {
config
builders []*WorkflowRunCreate
}
// Save creates the WorkflowRun entities in the database.
func (wrcb *WorkflowRunCreateBulk) Save(ctx context.Context) ([]*WorkflowRun, error) {
specs := make([]*sqlgraph.CreateSpec, len(wrcb.builders))
nodes := make([]*WorkflowRun, len(wrcb.builders))
mutators := make([]Mutator, len(wrcb.builders))
for i := range wrcb.builders {
func(i int, root context.Context) {
builder := wrcb.builders[i]
builder.defaults()
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
mutation, ok := m.(*WorkflowRunMutation)
if !ok {
return nil, fmt.Errorf("unexpected mutation type %T", m)
}
if err := builder.check(); err != nil {
return nil, err
}
builder.mutation = mutation
nodes[i], specs[i] = builder.createSpec()
var err error
if i < len(mutators)-1 {
_, err = mutators[i+1].Mutate(root, wrcb.builders[i+1].mutation)
} else {
spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
// Invoke the actual operation on the latest mutation in the chain.
if err = sqlgraph.BatchCreate(ctx, wrcb.driver, spec); err != nil {
if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
}
}
if err != nil {
return nil, err
}
mutation.id = &nodes[i].ID
mutation.done = true
return nodes[i], nil
})
for i := len(builder.hooks) - 1; i >= 0; i-- {
mut = builder.hooks[i](mut)
}
mutators[i] = mut
}(i, ctx)
}
if len(mutators) > 0 {
if _, err := mutators[0].Mutate(ctx, wrcb.builders[0].mutation); err != nil {
return nil, err
}
}
return nodes, nil
}
// SaveX is like Save, but panics if an error occurs.
func (wrcb *WorkflowRunCreateBulk) SaveX(ctx context.Context) []*WorkflowRun {
v, err := wrcb.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (wrcb *WorkflowRunCreateBulk) Exec(ctx context.Context) error {
_, err := wrcb.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (wrcb *WorkflowRunCreateBulk) ExecX(ctx context.Context) {
if err := wrcb.Exec(ctx); err != nil {
panic(err)
}
}