123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- // Code generated by entc, DO NOT EDIT.
- package ent
- import (
- "context"
- "errors"
- "fmt"
- "time"
- "code.osinet.fr/fgm/go__ent_demo/ent/car"
- "code.osinet.fr/fgm/go__ent_demo/ent/user"
- "entgo.io/ent/dialect/sql/sqlgraph"
- "entgo.io/ent/schema/field"
- )
- // CarCreate is the builder for creating a Car entity.
- type CarCreate struct {
- config
- mutation *CarMutation
- hooks []Hook
- }
- // SetModel sets the "model" field.
- func (cc *CarCreate) SetModel(s string) *CarCreate {
- cc.mutation.SetModel(s)
- return cc
- }
- // SetRegisteredAt sets the "registered_at" field.
- func (cc *CarCreate) SetRegisteredAt(t time.Time) *CarCreate {
- cc.mutation.SetRegisteredAt(t)
- return cc
- }
- // SetOwnerID sets the "owner" edge to the User entity by ID.
- func (cc *CarCreate) SetOwnerID(id int) *CarCreate {
- cc.mutation.SetOwnerID(id)
- return cc
- }
- // SetNillableOwnerID sets the "owner" edge to the User entity by ID if the given value is not nil.
- func (cc *CarCreate) SetNillableOwnerID(id *int) *CarCreate {
- if id != nil {
- cc = cc.SetOwnerID(*id)
- }
- return cc
- }
- // SetOwner sets the "owner" edge to the User entity.
- func (cc *CarCreate) SetOwner(u *User) *CarCreate {
- return cc.SetOwnerID(u.ID)
- }
- // Mutation returns the CarMutation object of the builder.
- func (cc *CarCreate) Mutation() *CarMutation {
- return cc.mutation
- }
- // Save creates the Car in the database.
- func (cc *CarCreate) Save(ctx context.Context) (*Car, error) {
- var (
- err error
- node *Car
- )
- if len(cc.hooks) == 0 {
- if err = cc.check(); err != nil {
- return nil, err
- }
- node, err = cc.sqlSave(ctx)
- } else {
- var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
- mutation, ok := m.(*CarMutation)
- if !ok {
- return nil, fmt.Errorf("unexpected mutation type %T", m)
- }
- if err = cc.check(); err != nil {
- return nil, err
- }
- cc.mutation = mutation
- if node, err = cc.sqlSave(ctx); err != nil {
- return nil, err
- }
- mutation.id = &node.ID
- mutation.done = true
- return node, err
- })
- for i := len(cc.hooks) - 1; i >= 0; i-- {
- if cc.hooks[i] == nil {
- return nil, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
- }
- mut = cc.hooks[i](mut)
- }
- if _, err := mut.Mutate(ctx, cc.mutation); err != nil {
- return nil, err
- }
- }
- return node, err
- }
- // SaveX calls Save and panics if Save returns an error.
- func (cc *CarCreate) SaveX(ctx context.Context) *Car {
- v, err := cc.Save(ctx)
- if err != nil {
- panic(err)
- }
- return v
- }
- // Exec executes the query.
- func (cc *CarCreate) Exec(ctx context.Context) error {
- _, err := cc.Save(ctx)
- return err
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (cc *CarCreate) ExecX(ctx context.Context) {
- if err := cc.Exec(ctx); err != nil {
- panic(err)
- }
- }
- // check runs all checks and user-defined validators on the builder.
- func (cc *CarCreate) check() error {
- if _, ok := cc.mutation.Model(); !ok {
- return &ValidationError{Name: "model", err: errors.New(`ent: missing required field "Car.model"`)}
- }
- if _, ok := cc.mutation.RegisteredAt(); !ok {
- return &ValidationError{Name: "registered_at", err: errors.New(`ent: missing required field "Car.registered_at"`)}
- }
- return nil
- }
- func (cc *CarCreate) sqlSave(ctx context.Context) (*Car, error) {
- _node, _spec := cc.createSpec()
- if err := sqlgraph.CreateNode(ctx, cc.driver, _spec); err != nil {
- if sqlgraph.IsConstraintError(err) {
- err = &ConstraintError{err.Error(), err}
- }
- return nil, err
- }
- id := _spec.ID.Value.(int64)
- _node.ID = int(id)
- return _node, nil
- }
- func (cc *CarCreate) createSpec() (*Car, *sqlgraph.CreateSpec) {
- var (
- _node = &Car{config: cc.config}
- _spec = &sqlgraph.CreateSpec{
- Table: car.Table,
- ID: &sqlgraph.FieldSpec{
- Type: field.TypeInt,
- Column: car.FieldID,
- },
- }
- )
- if value, ok := cc.mutation.Model(); ok {
- _spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
- Type: field.TypeString,
- Value: value,
- Column: car.FieldModel,
- })
- _node.Model = value
- }
- if value, ok := cc.mutation.RegisteredAt(); ok {
- _spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
- Type: field.TypeTime,
- Value: value,
- Column: car.FieldRegisteredAt,
- })
- _node.RegisteredAt = value
- }
- if nodes := cc.mutation.OwnerIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2O,
- Inverse: true,
- Table: car.OwnerTable,
- Columns: []string{car.OwnerColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: &sqlgraph.FieldSpec{
- Type: field.TypeInt,
- Column: user.FieldID,
- },
- },
- }
- for _, k := range nodes {
- edge.Target.Nodes = append(edge.Target.Nodes, k)
- }
- _node.user_cars = &nodes[0]
- _spec.Edges = append(_spec.Edges, edge)
- }
- return _node, _spec
- }
- // CarCreateBulk is the builder for creating many Car entities in bulk.
- type CarCreateBulk struct {
- config
- builders []*CarCreate
- }
- // Save creates the Car entities in the database.
- func (ccb *CarCreateBulk) Save(ctx context.Context) ([]*Car, error) {
- specs := make([]*sqlgraph.CreateSpec, len(ccb.builders))
- nodes := make([]*Car, len(ccb.builders))
- mutators := make([]Mutator, len(ccb.builders))
- for i := range ccb.builders {
- func(i int, root context.Context) {
- builder := ccb.builders[i]
- var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
- mutation, ok := m.(*CarMutation)
- 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, ccb.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, ccb.driver, spec); err != nil {
- if sqlgraph.IsConstraintError(err) {
- err = &ConstraintError{err.Error(), err}
- }
- }
- }
- if err != nil {
- return nil, err
- }
- mutation.id = &nodes[i].ID
- mutation.done = true
- if specs[i].ID.Value != nil {
- id := specs[i].ID.Value.(int64)
- nodes[i].ID = int(id)
- }
- 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, ccb.builders[0].mutation); err != nil {
- return nil, err
- }
- }
- return nodes, nil
- }
- // SaveX is like Save, but panics if an error occurs.
- func (ccb *CarCreateBulk) SaveX(ctx context.Context) []*Car {
- v, err := ccb.Save(ctx)
- if err != nil {
- panic(err)
- }
- return v
- }
- // Exec executes the query.
- func (ccb *CarCreateBulk) Exec(ctx context.Context) error {
- _, err := ccb.Save(ctx)
- return err
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (ccb *CarCreateBulk) ExecX(ctx context.Context) {
- if err := ccb.Exec(ctx); err != nil {
- panic(err)
- }
- }
|