-
Notifications
You must be signed in to change notification settings - Fork 27
/
casmapping_create.go
336 lines (306 loc) · 9.96 KB
/
casmapping_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
// 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/data/ent/casbackend"
"github.com/chainloop-dev/chainloop/app/controlplane/internal/data/ent/casmapping"
"github.com/chainloop-dev/chainloop/app/controlplane/internal/data/ent/organization"
"github.com/chainloop-dev/chainloop/app/controlplane/internal/data/ent/workflowrun"
"github.com/google/uuid"
)
// CASMappingCreate is the builder for creating a CASMapping entity.
type CASMappingCreate struct {
config
mutation *CASMappingMutation
hooks []Hook
}
// SetDigest sets the "digest" field.
func (cmc *CASMappingCreate) SetDigest(s string) *CASMappingCreate {
cmc.mutation.SetDigest(s)
return cmc
}
// SetCreatedAt sets the "created_at" field.
func (cmc *CASMappingCreate) SetCreatedAt(t time.Time) *CASMappingCreate {
cmc.mutation.SetCreatedAt(t)
return cmc
}
// SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
func (cmc *CASMappingCreate) SetNillableCreatedAt(t *time.Time) *CASMappingCreate {
if t != nil {
cmc.SetCreatedAt(*t)
}
return cmc
}
// SetID sets the "id" field.
func (cmc *CASMappingCreate) SetID(u uuid.UUID) *CASMappingCreate {
cmc.mutation.SetID(u)
return cmc
}
// SetNillableID sets the "id" field if the given value is not nil.
func (cmc *CASMappingCreate) SetNillableID(u *uuid.UUID) *CASMappingCreate {
if u != nil {
cmc.SetID(*u)
}
return cmc
}
// SetCasBackendID sets the "cas_backend" edge to the CASBackend entity by ID.
func (cmc *CASMappingCreate) SetCasBackendID(id uuid.UUID) *CASMappingCreate {
cmc.mutation.SetCasBackendID(id)
return cmc
}
// SetCasBackend sets the "cas_backend" edge to the CASBackend entity.
func (cmc *CASMappingCreate) SetCasBackend(c *CASBackend) *CASMappingCreate {
return cmc.SetCasBackendID(c.ID)
}
// SetWorkflowRunID sets the "workflow_run" edge to the WorkflowRun entity by ID.
func (cmc *CASMappingCreate) SetWorkflowRunID(id uuid.UUID) *CASMappingCreate {
cmc.mutation.SetWorkflowRunID(id)
return cmc
}
// SetNillableWorkflowRunID sets the "workflow_run" edge to the WorkflowRun entity by ID if the given value is not nil.
func (cmc *CASMappingCreate) SetNillableWorkflowRunID(id *uuid.UUID) *CASMappingCreate {
if id != nil {
cmc = cmc.SetWorkflowRunID(*id)
}
return cmc
}
// SetWorkflowRun sets the "workflow_run" edge to the WorkflowRun entity.
func (cmc *CASMappingCreate) SetWorkflowRun(w *WorkflowRun) *CASMappingCreate {
return cmc.SetWorkflowRunID(w.ID)
}
// SetOrganizationID sets the "organization" edge to the Organization entity by ID.
func (cmc *CASMappingCreate) SetOrganizationID(id uuid.UUID) *CASMappingCreate {
cmc.mutation.SetOrganizationID(id)
return cmc
}
// SetOrganization sets the "organization" edge to the Organization entity.
func (cmc *CASMappingCreate) SetOrganization(o *Organization) *CASMappingCreate {
return cmc.SetOrganizationID(o.ID)
}
// Mutation returns the CASMappingMutation object of the builder.
func (cmc *CASMappingCreate) Mutation() *CASMappingMutation {
return cmc.mutation
}
// Save creates the CASMapping in the database.
func (cmc *CASMappingCreate) Save(ctx context.Context) (*CASMapping, error) {
cmc.defaults()
return withHooks(ctx, cmc.sqlSave, cmc.mutation, cmc.hooks)
}
// SaveX calls Save and panics if Save returns an error.
func (cmc *CASMappingCreate) SaveX(ctx context.Context) *CASMapping {
v, err := cmc.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (cmc *CASMappingCreate) Exec(ctx context.Context) error {
_, err := cmc.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (cmc *CASMappingCreate) ExecX(ctx context.Context) {
if err := cmc.Exec(ctx); err != nil {
panic(err)
}
}
// defaults sets the default values of the builder before save.
func (cmc *CASMappingCreate) defaults() {
if _, ok := cmc.mutation.CreatedAt(); !ok {
v := casmapping.DefaultCreatedAt()
cmc.mutation.SetCreatedAt(v)
}
if _, ok := cmc.mutation.ID(); !ok {
v := casmapping.DefaultID()
cmc.mutation.SetID(v)
}
}
// check runs all checks and user-defined validators on the builder.
func (cmc *CASMappingCreate) check() error {
if _, ok := cmc.mutation.Digest(); !ok {
return &ValidationError{Name: "digest", err: errors.New(`ent: missing required field "CASMapping.digest"`)}
}
if _, ok := cmc.mutation.CreatedAt(); !ok {
return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "CASMapping.created_at"`)}
}
if _, ok := cmc.mutation.CasBackendID(); !ok {
return &ValidationError{Name: "cas_backend", err: errors.New(`ent: missing required edge "CASMapping.cas_backend"`)}
}
if _, ok := cmc.mutation.OrganizationID(); !ok {
return &ValidationError{Name: "organization", err: errors.New(`ent: missing required edge "CASMapping.organization"`)}
}
return nil
}
func (cmc *CASMappingCreate) sqlSave(ctx context.Context) (*CASMapping, error) {
if err := cmc.check(); err != nil {
return nil, err
}
_node, _spec := cmc.createSpec()
if err := sqlgraph.CreateNode(ctx, cmc.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
}
}
cmc.mutation.id = &_node.ID
cmc.mutation.done = true
return _node, nil
}
func (cmc *CASMappingCreate) createSpec() (*CASMapping, *sqlgraph.CreateSpec) {
var (
_node = &CASMapping{config: cmc.config}
_spec = sqlgraph.NewCreateSpec(casmapping.Table, sqlgraph.NewFieldSpec(casmapping.FieldID, field.TypeUUID))
)
if id, ok := cmc.mutation.ID(); ok {
_node.ID = id
_spec.ID.Value = &id
}
if value, ok := cmc.mutation.Digest(); ok {
_spec.SetField(casmapping.FieldDigest, field.TypeString, value)
_node.Digest = value
}
if value, ok := cmc.mutation.CreatedAt(); ok {
_spec.SetField(casmapping.FieldCreatedAt, field.TypeTime, value)
_node.CreatedAt = value
}
if nodes := cmc.mutation.CasBackendIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: false,
Table: casmapping.CasBackendTable,
Columns: []string{casmapping.CasBackendColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: sqlgraph.NewFieldSpec(casbackend.FieldID, field.TypeUUID),
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_node.cas_mapping_cas_backend = &nodes[0]
_spec.Edges = append(_spec.Edges, edge)
}
if nodes := cmc.mutation.WorkflowRunIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: false,
Table: casmapping.WorkflowRunTable,
Columns: []string{casmapping.WorkflowRunColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: sqlgraph.NewFieldSpec(workflowrun.FieldID, field.TypeUUID),
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_node.cas_mapping_workflow_run = &nodes[0]
_spec.Edges = append(_spec.Edges, edge)
}
if nodes := cmc.mutation.OrganizationIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: false,
Table: casmapping.OrganizationTable,
Columns: []string{casmapping.OrganizationColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: sqlgraph.NewFieldSpec(organization.FieldID, field.TypeUUID),
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_node.cas_mapping_organization = &nodes[0]
_spec.Edges = append(_spec.Edges, edge)
}
return _node, _spec
}
// CASMappingCreateBulk is the builder for creating many CASMapping entities in bulk.
type CASMappingCreateBulk struct {
config
builders []*CASMappingCreate
}
// Save creates the CASMapping entities in the database.
func (cmcb *CASMappingCreateBulk) Save(ctx context.Context) ([]*CASMapping, error) {
specs := make([]*sqlgraph.CreateSpec, len(cmcb.builders))
nodes := make([]*CASMapping, len(cmcb.builders))
mutators := make([]Mutator, len(cmcb.builders))
for i := range cmcb.builders {
func(i int, root context.Context) {
builder := cmcb.builders[i]
builder.defaults()
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
mutation, ok := m.(*CASMappingMutation)
if !ok {
return nil, fmt.Errorf("unexpected mutation type %T", m)
}
if err := builder.check(); err != nil {
return nil, err
}
builder.mutation = mutation
var err error
nodes[i], specs[i] = builder.createSpec()
if i < len(mutators)-1 {
_, err = mutators[i+1].Mutate(root, cmcb.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, cmcb.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, cmcb.builders[0].mutation); err != nil {
return nil, err
}
}
return nodes, nil
}
// SaveX is like Save, but panics if an error occurs.
func (cmcb *CASMappingCreateBulk) SaveX(ctx context.Context) []*CASMapping {
v, err := cmcb.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (cmcb *CASMappingCreateBulk) Exec(ctx context.Context) error {
_, err := cmcb.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (cmcb *CASMappingCreateBulk) ExecX(ctx context.Context) {
if err := cmcb.Exec(ctx); err != nil {
panic(err)
}
}