// Code generated by ent, DO NOT EDIT. package models import ( "context" "errors" "fmt" "juwan-backend/app/dispute/rpc/internal/models/disputetimeline" "time" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" ) // DisputeTimelineCreate is the builder for creating a DisputeTimeline entity. type DisputeTimelineCreate struct { config mutation *DisputeTimelineMutation hooks []Hook } // SetDisputeID sets the "dispute_id" field. func (_c *DisputeTimelineCreate) SetDisputeID(v int64) *DisputeTimelineCreate { _c.mutation.SetDisputeID(v) return _c } // SetEventType sets the "event_type" field. func (_c *DisputeTimelineCreate) SetEventType(v string) *DisputeTimelineCreate { _c.mutation.SetEventType(v) return _c } // SetActorID sets the "actor_id" field. func (_c *DisputeTimelineCreate) SetActorID(v int64) *DisputeTimelineCreate { _c.mutation.SetActorID(v) return _c } // SetNillableActorID sets the "actor_id" field if the given value is not nil. func (_c *DisputeTimelineCreate) SetNillableActorID(v *int64) *DisputeTimelineCreate { if v != nil { _c.SetActorID(*v) } return _c } // SetActorName sets the "actor_name" field. func (_c *DisputeTimelineCreate) SetActorName(v string) *DisputeTimelineCreate { _c.mutation.SetActorName(v) return _c } // SetNillableActorName sets the "actor_name" field if the given value is not nil. func (_c *DisputeTimelineCreate) SetNillableActorName(v *string) *DisputeTimelineCreate { if v != nil { _c.SetActorName(*v) } return _c } // SetDetails sets the "details" field. func (_c *DisputeTimelineCreate) SetDetails(v map[string]interface{}) *DisputeTimelineCreate { _c.mutation.SetDetails(v) return _c } // SetCreatedAt sets the "created_at" field. func (_c *DisputeTimelineCreate) SetCreatedAt(v time.Time) *DisputeTimelineCreate { _c.mutation.SetCreatedAt(v) return _c } // SetNillableCreatedAt sets the "created_at" field if the given value is not nil. func (_c *DisputeTimelineCreate) SetNillableCreatedAt(v *time.Time) *DisputeTimelineCreate { if v != nil { _c.SetCreatedAt(*v) } return _c } // SetID sets the "id" field. func (_c *DisputeTimelineCreate) SetID(v int64) *DisputeTimelineCreate { _c.mutation.SetID(v) return _c } // Mutation returns the DisputeTimelineMutation object of the builder. func (_c *DisputeTimelineCreate) Mutation() *DisputeTimelineMutation { return _c.mutation } // Save creates the DisputeTimeline in the database. func (_c *DisputeTimelineCreate) Save(ctx context.Context) (*DisputeTimeline, error) { _c.defaults() return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks) } // SaveX calls Save and panics if Save returns an error. func (_c *DisputeTimelineCreate) SaveX(ctx context.Context) *DisputeTimeline { v, err := _c.Save(ctx) if err != nil { panic(err) } return v } // Exec executes the query. func (_c *DisputeTimelineCreate) Exec(ctx context.Context) error { _, err := _c.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (_c *DisputeTimelineCreate) ExecX(ctx context.Context) { if err := _c.Exec(ctx); err != nil { panic(err) } } // defaults sets the default values of the builder before save. func (_c *DisputeTimelineCreate) defaults() { if _, ok := _c.mutation.CreatedAt(); !ok { v := disputetimeline.DefaultCreatedAt() _c.mutation.SetCreatedAt(v) } } // check runs all checks and user-defined validators on the builder. func (_c *DisputeTimelineCreate) check() error { if _, ok := _c.mutation.DisputeID(); !ok { return &ValidationError{Name: "dispute_id", err: errors.New(`models: missing required field "DisputeTimeline.dispute_id"`)} } if _, ok := _c.mutation.EventType(); !ok { return &ValidationError{Name: "event_type", err: errors.New(`models: missing required field "DisputeTimeline.event_type"`)} } if v, ok := _c.mutation.EventType(); ok { if err := disputetimeline.EventTypeValidator(v); err != nil { return &ValidationError{Name: "event_type", err: fmt.Errorf(`models: validator failed for field "DisputeTimeline.event_type": %w`, err)} } } if v, ok := _c.mutation.ActorName(); ok { if err := disputetimeline.ActorNameValidator(v); err != nil { return &ValidationError{Name: "actor_name", err: fmt.Errorf(`models: validator failed for field "DisputeTimeline.actor_name": %w`, err)} } } if _, ok := _c.mutation.CreatedAt(); !ok { return &ValidationError{Name: "created_at", err: errors.New(`models: missing required field "DisputeTimeline.created_at"`)} } return nil } func (_c *DisputeTimelineCreate) sqlSave(ctx context.Context) (*DisputeTimeline, error) { if err := _c.check(); err != nil { return nil, err } _node, _spec := _c.createSpec() if err := sqlgraph.CreateNode(ctx, _c.driver, _spec); err != nil { if sqlgraph.IsConstraintError(err) { err = &ConstraintError{msg: err.Error(), wrap: err} } return nil, err } if _spec.ID.Value != _node.ID { id := _spec.ID.Value.(int64) _node.ID = int64(id) } _c.mutation.id = &_node.ID _c.mutation.done = true return _node, nil } func (_c *DisputeTimelineCreate) createSpec() (*DisputeTimeline, *sqlgraph.CreateSpec) { var ( _node = &DisputeTimeline{config: _c.config} _spec = sqlgraph.NewCreateSpec(disputetimeline.Table, sqlgraph.NewFieldSpec(disputetimeline.FieldID, field.TypeInt64)) ) if id, ok := _c.mutation.ID(); ok { _node.ID = id _spec.ID.Value = id } if value, ok := _c.mutation.DisputeID(); ok { _spec.SetField(disputetimeline.FieldDisputeID, field.TypeInt64, value) _node.DisputeID = value } if value, ok := _c.mutation.EventType(); ok { _spec.SetField(disputetimeline.FieldEventType, field.TypeString, value) _node.EventType = value } if value, ok := _c.mutation.ActorID(); ok { _spec.SetField(disputetimeline.FieldActorID, field.TypeInt64, value) _node.ActorID = value } if value, ok := _c.mutation.ActorName(); ok { _spec.SetField(disputetimeline.FieldActorName, field.TypeString, value) _node.ActorName = value } if value, ok := _c.mutation.Details(); ok { _spec.SetField(disputetimeline.FieldDetails, field.TypeJSON, value) _node.Details = value } if value, ok := _c.mutation.CreatedAt(); ok { _spec.SetField(disputetimeline.FieldCreatedAt, field.TypeTime, value) _node.CreatedAt = value } return _node, _spec } // DisputeTimelineCreateBulk is the builder for creating many DisputeTimeline entities in bulk. type DisputeTimelineCreateBulk struct { config err error builders []*DisputeTimelineCreate } // Save creates the DisputeTimeline entities in the database. func (_c *DisputeTimelineCreateBulk) Save(ctx context.Context) ([]*DisputeTimeline, error) { if _c.err != nil { return nil, _c.err } specs := make([]*sqlgraph.CreateSpec, len(_c.builders)) nodes := make([]*DisputeTimeline, len(_c.builders)) mutators := make([]Mutator, len(_c.builders)) for i := range _c.builders { func(i int, root context.Context) { builder := _c.builders[i] builder.defaults() var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) { mutation, ok := m.(*DisputeTimelineMutation) 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, _c.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, _c.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 if specs[i].ID.Value != nil && nodes[i].ID == 0 { id := specs[i].ID.Value.(int64) nodes[i].ID = int64(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, _c.builders[0].mutation); err != nil { return nil, err } } return nodes, nil } // SaveX is like Save, but panics if an error occurs. func (_c *DisputeTimelineCreateBulk) SaveX(ctx context.Context) []*DisputeTimeline { v, err := _c.Save(ctx) if err != nil { panic(err) } return v } // Exec executes the query. func (_c *DisputeTimelineCreateBulk) Exec(ctx context.Context) error { _, err := _c.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (_c *DisputeTimelineCreateBulk) ExecX(ctx context.Context) { if err := _c.Exec(ctx); err != nil { panic(err) } }