mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
129 lines
3.0 KiB
Go
129 lines
3.0 KiB
Go
// Copyright 2019-present Facebook Inc. All rights reserved.
|
|
// This source code is licensed under the Apache 2.0 license found
|
|
// in the LICENSE file in the root directory of this source tree.
|
|
|
|
// Code generated by entc, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/facebookincubator/ent/dialect/sql/sqlgraph"
|
|
"github.com/facebookincubator/ent/entc/integration/ent/card"
|
|
"github.com/facebookincubator/ent/entc/integration/ent/spec"
|
|
"github.com/facebookincubator/ent/schema/field"
|
|
)
|
|
|
|
// SpecCreate is the builder for creating a Spec entity.
|
|
type SpecCreate struct {
|
|
config
|
|
mutation *SpecMutation
|
|
hooks []Hook
|
|
}
|
|
|
|
// AddCardIDs adds the card edge to Card by ids.
|
|
func (sc *SpecCreate) AddCardIDs(ids ...int) *SpecCreate {
|
|
sc.mutation.AddCardIDs(ids...)
|
|
return sc
|
|
}
|
|
|
|
// AddCard adds the card edges to Card.
|
|
func (sc *SpecCreate) AddCard(c ...*Card) *SpecCreate {
|
|
ids := make([]int, len(c))
|
|
for i := range c {
|
|
ids[i] = c[i].ID
|
|
}
|
|
return sc.AddCardIDs(ids...)
|
|
}
|
|
|
|
// Mutation returns the SpecMutation object of the builder.
|
|
func (sc *SpecCreate) Mutation() *SpecMutation {
|
|
return sc.mutation
|
|
}
|
|
|
|
// Save creates the Spec in the database.
|
|
func (sc *SpecCreate) Save(ctx context.Context) (*Spec, error) {
|
|
var (
|
|
err error
|
|
node *Spec
|
|
)
|
|
if len(sc.hooks) == 0 {
|
|
node, err = sc.sqlSave(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*SpecMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
sc.mutation = mutation
|
|
node, err = sc.sqlSave(ctx)
|
|
mutation.done = true
|
|
return node, err
|
|
})
|
|
for i := len(sc.hooks) - 1; i >= 0; i-- {
|
|
mut = sc.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, sc.mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return node, err
|
|
}
|
|
|
|
// SaveX calls Save and panics if Save returns an error.
|
|
func (sc *SpecCreate) SaveX(ctx context.Context) *Spec {
|
|
v, err := sc.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (sc *SpecCreate) sqlSave(ctx context.Context) (*Spec, error) {
|
|
s, _spec := sc.createSpec()
|
|
if err := sqlgraph.CreateNode(ctx, sc.driver, _spec); err != nil {
|
|
if cerr, ok := isSQLConstraintError(err); ok {
|
|
err = cerr
|
|
}
|
|
return nil, err
|
|
}
|
|
id := _spec.ID.Value.(int64)
|
|
s.ID = int(id)
|
|
return s, nil
|
|
}
|
|
|
|
func (sc *SpecCreate) createSpec() (*Spec, *sqlgraph.CreateSpec) {
|
|
var (
|
|
s = &Spec{config: sc.config}
|
|
_spec = &sqlgraph.CreateSpec{
|
|
Table: spec.Table,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: spec.FieldID,
|
|
},
|
|
}
|
|
)
|
|
if nodes := sc.mutation.CardIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: spec.CardTable,
|
|
Columns: spec.CardPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: card.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges = append(_spec.Edges, edge)
|
|
}
|
|
return s, _spec
|
|
}
|