// Code generated by ent, DO NOT EDIT. package ent import ( "context" "errors" "fmt" "code.gurenya.net/carlsmei/muninn-aio/ent/link" "code.gurenya.net/carlsmei/muninn-aio/ent/predicate" "code.gurenya.net/carlsmei/muninn-aio/ent/user" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" "github.com/google/uuid" ) // LinkUpdate is the builder for updating Link entities. type LinkUpdate struct { config hooks []Hook mutation *LinkMutation } // Where appends a list predicates to the LinkUpdate builder. func (lu *LinkUpdate) Where(ps ...predicate.Link) *LinkUpdate { lu.mutation.Where(ps...) return lu } // SetKey sets the "key" field. func (lu *LinkUpdate) SetKey(s string) *LinkUpdate { lu.mutation.SetKey(s) return lu } // SetNillableKey sets the "key" field if the given value is not nil. func (lu *LinkUpdate) SetNillableKey(s *string) *LinkUpdate { if s != nil { lu.SetKey(*s) } return lu } // SetOriginalURL sets the "original_url" field. func (lu *LinkUpdate) SetOriginalURL(s string) *LinkUpdate { lu.mutation.SetOriginalURL(s) return lu } // SetNillableOriginalURL sets the "original_url" field if the given value is not nil. func (lu *LinkUpdate) SetNillableOriginalURL(s *string) *LinkUpdate { if s != nil { lu.SetOriginalURL(*s) } return lu } // AddOwnerIDs adds the "owner" edge to the User entity by IDs. func (lu *LinkUpdate) AddOwnerIDs(ids ...uuid.UUID) *LinkUpdate { lu.mutation.AddOwnerIDs(ids...) return lu } // AddOwner adds the "owner" edges to the User entity. func (lu *LinkUpdate) AddOwner(u ...*User) *LinkUpdate { ids := make([]uuid.UUID, len(u)) for i := range u { ids[i] = u[i].ID } return lu.AddOwnerIDs(ids...) } // Mutation returns the LinkMutation object of the builder. func (lu *LinkUpdate) Mutation() *LinkMutation { return lu.mutation } // ClearOwner clears all "owner" edges to the User entity. func (lu *LinkUpdate) ClearOwner() *LinkUpdate { lu.mutation.ClearOwner() return lu } // RemoveOwnerIDs removes the "owner" edge to User entities by IDs. func (lu *LinkUpdate) RemoveOwnerIDs(ids ...uuid.UUID) *LinkUpdate { lu.mutation.RemoveOwnerIDs(ids...) return lu } // RemoveOwner removes "owner" edges to User entities. func (lu *LinkUpdate) RemoveOwner(u ...*User) *LinkUpdate { ids := make([]uuid.UUID, len(u)) for i := range u { ids[i] = u[i].ID } return lu.RemoveOwnerIDs(ids...) } // Save executes the query and returns the number of nodes affected by the update operation. func (lu *LinkUpdate) Save(ctx context.Context) (int, error) { return withHooks(ctx, lu.sqlSave, lu.mutation, lu.hooks) } // SaveX is like Save, but panics if an error occurs. func (lu *LinkUpdate) SaveX(ctx context.Context) int { affected, err := lu.Save(ctx) if err != nil { panic(err) } return affected } // Exec executes the query. func (lu *LinkUpdate) Exec(ctx context.Context) error { _, err := lu.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (lu *LinkUpdate) ExecX(ctx context.Context) { if err := lu.Exec(ctx); err != nil { panic(err) } } // check runs all checks and user-defined validators on the builder. func (lu *LinkUpdate) check() error { if v, ok := lu.mutation.OriginalURL(); ok { if err := link.OriginalURLValidator(v); err != nil { return &ValidationError{Name: "original_url", err: fmt.Errorf(`ent: validator failed for field "Link.original_url": %w`, err)} } } return nil } func (lu *LinkUpdate) sqlSave(ctx context.Context) (n int, err error) { if err := lu.check(); err != nil { return n, err } _spec := sqlgraph.NewUpdateSpec(link.Table, link.Columns, sqlgraph.NewFieldSpec(link.FieldID, field.TypeUUID)) if ps := lu.mutation.predicates; len(ps) > 0 { _spec.Predicate = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } if value, ok := lu.mutation.Key(); ok { _spec.SetField(link.FieldKey, field.TypeString, value) } if value, ok := lu.mutation.OriginalURL(); ok { _spec.SetField(link.FieldOriginalURL, field.TypeString, value) } if lu.mutation.OwnerCleared() { edge := &sqlgraph.EdgeSpec{ Rel: sqlgraph.M2M, Inverse: true, Table: link.OwnerTable, Columns: link.OwnerPrimaryKey, Bidi: false, Target: &sqlgraph.EdgeTarget{ IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeUUID), }, } _spec.Edges.Clear = append(_spec.Edges.Clear, edge) } if nodes := lu.mutation.RemovedOwnerIDs(); len(nodes) > 0 && !lu.mutation.OwnerCleared() { edge := &sqlgraph.EdgeSpec{ Rel: sqlgraph.M2M, Inverse: true, Table: link.OwnerTable, Columns: link.OwnerPrimaryKey, Bidi: false, Target: &sqlgraph.EdgeTarget{ IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeUUID), }, } for _, k := range nodes { edge.Target.Nodes = append(edge.Target.Nodes, k) } _spec.Edges.Clear = append(_spec.Edges.Clear, edge) } if nodes := lu.mutation.OwnerIDs(); len(nodes) > 0 { edge := &sqlgraph.EdgeSpec{ Rel: sqlgraph.M2M, Inverse: true, Table: link.OwnerTable, Columns: link.OwnerPrimaryKey, Bidi: false, Target: &sqlgraph.EdgeTarget{ IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeUUID), }, } for _, k := range nodes { edge.Target.Nodes = append(edge.Target.Nodes, k) } _spec.Edges.Add = append(_spec.Edges.Add, edge) } if n, err = sqlgraph.UpdateNodes(ctx, lu.driver, _spec); err != nil { if _, ok := err.(*sqlgraph.NotFoundError); ok { err = &NotFoundError{link.Label} } else if sqlgraph.IsConstraintError(err) { err = &ConstraintError{msg: err.Error(), wrap: err} } return 0, err } lu.mutation.done = true return n, nil } // LinkUpdateOne is the builder for updating a single Link entity. type LinkUpdateOne struct { config fields []string hooks []Hook mutation *LinkMutation } // SetKey sets the "key" field. func (luo *LinkUpdateOne) SetKey(s string) *LinkUpdateOne { luo.mutation.SetKey(s) return luo } // SetNillableKey sets the "key" field if the given value is not nil. func (luo *LinkUpdateOne) SetNillableKey(s *string) *LinkUpdateOne { if s != nil { luo.SetKey(*s) } return luo } // SetOriginalURL sets the "original_url" field. func (luo *LinkUpdateOne) SetOriginalURL(s string) *LinkUpdateOne { luo.mutation.SetOriginalURL(s) return luo } // SetNillableOriginalURL sets the "original_url" field if the given value is not nil. func (luo *LinkUpdateOne) SetNillableOriginalURL(s *string) *LinkUpdateOne { if s != nil { luo.SetOriginalURL(*s) } return luo } // AddOwnerIDs adds the "owner" edge to the User entity by IDs. func (luo *LinkUpdateOne) AddOwnerIDs(ids ...uuid.UUID) *LinkUpdateOne { luo.mutation.AddOwnerIDs(ids...) return luo } // AddOwner adds the "owner" edges to the User entity. func (luo *LinkUpdateOne) AddOwner(u ...*User) *LinkUpdateOne { ids := make([]uuid.UUID, len(u)) for i := range u { ids[i] = u[i].ID } return luo.AddOwnerIDs(ids...) } // Mutation returns the LinkMutation object of the builder. func (luo *LinkUpdateOne) Mutation() *LinkMutation { return luo.mutation } // ClearOwner clears all "owner" edges to the User entity. func (luo *LinkUpdateOne) ClearOwner() *LinkUpdateOne { luo.mutation.ClearOwner() return luo } // RemoveOwnerIDs removes the "owner" edge to User entities by IDs. func (luo *LinkUpdateOne) RemoveOwnerIDs(ids ...uuid.UUID) *LinkUpdateOne { luo.mutation.RemoveOwnerIDs(ids...) return luo } // RemoveOwner removes "owner" edges to User entities. func (luo *LinkUpdateOne) RemoveOwner(u ...*User) *LinkUpdateOne { ids := make([]uuid.UUID, len(u)) for i := range u { ids[i] = u[i].ID } return luo.RemoveOwnerIDs(ids...) } // Where appends a list predicates to the LinkUpdate builder. func (luo *LinkUpdateOne) Where(ps ...predicate.Link) *LinkUpdateOne { luo.mutation.Where(ps...) return luo } // Select allows selecting one or more fields (columns) of the returned entity. // The default is selecting all fields defined in the entity schema. func (luo *LinkUpdateOne) Select(field string, fields ...string) *LinkUpdateOne { luo.fields = append([]string{field}, fields...) return luo } // Save executes the query and returns the updated Link entity. func (luo *LinkUpdateOne) Save(ctx context.Context) (*Link, error) { return withHooks(ctx, luo.sqlSave, luo.mutation, luo.hooks) } // SaveX is like Save, but panics if an error occurs. func (luo *LinkUpdateOne) SaveX(ctx context.Context) *Link { node, err := luo.Save(ctx) if err != nil { panic(err) } return node } // Exec executes the query on the entity. func (luo *LinkUpdateOne) Exec(ctx context.Context) error { _, err := luo.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (luo *LinkUpdateOne) ExecX(ctx context.Context) { if err := luo.Exec(ctx); err != nil { panic(err) } } // check runs all checks and user-defined validators on the builder. func (luo *LinkUpdateOne) check() error { if v, ok := luo.mutation.OriginalURL(); ok { if err := link.OriginalURLValidator(v); err != nil { return &ValidationError{Name: "original_url", err: fmt.Errorf(`ent: validator failed for field "Link.original_url": %w`, err)} } } return nil } func (luo *LinkUpdateOne) sqlSave(ctx context.Context) (_node *Link, err error) { if err := luo.check(); err != nil { return _node, err } _spec := sqlgraph.NewUpdateSpec(link.Table, link.Columns, sqlgraph.NewFieldSpec(link.FieldID, field.TypeUUID)) id, ok := luo.mutation.ID() if !ok { return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Link.id" for update`)} } _spec.Node.ID.Value = id if fields := luo.fields; len(fields) > 0 { _spec.Node.Columns = make([]string, 0, len(fields)) _spec.Node.Columns = append(_spec.Node.Columns, link.FieldID) for _, f := range fields { if !link.ValidColumn(f) { return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)} } if f != link.FieldID { _spec.Node.Columns = append(_spec.Node.Columns, f) } } } if ps := luo.mutation.predicates; len(ps) > 0 { _spec.Predicate = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } if value, ok := luo.mutation.Key(); ok { _spec.SetField(link.FieldKey, field.TypeString, value) } if value, ok := luo.mutation.OriginalURL(); ok { _spec.SetField(link.FieldOriginalURL, field.TypeString, value) } if luo.mutation.OwnerCleared() { edge := &sqlgraph.EdgeSpec{ Rel: sqlgraph.M2M, Inverse: true, Table: link.OwnerTable, Columns: link.OwnerPrimaryKey, Bidi: false, Target: &sqlgraph.EdgeTarget{ IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeUUID), }, } _spec.Edges.Clear = append(_spec.Edges.Clear, edge) } if nodes := luo.mutation.RemovedOwnerIDs(); len(nodes) > 0 && !luo.mutation.OwnerCleared() { edge := &sqlgraph.EdgeSpec{ Rel: sqlgraph.M2M, Inverse: true, Table: link.OwnerTable, Columns: link.OwnerPrimaryKey, Bidi: false, Target: &sqlgraph.EdgeTarget{ IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeUUID), }, } for _, k := range nodes { edge.Target.Nodes = append(edge.Target.Nodes, k) } _spec.Edges.Clear = append(_spec.Edges.Clear, edge) } if nodes := luo.mutation.OwnerIDs(); len(nodes) > 0 { edge := &sqlgraph.EdgeSpec{ Rel: sqlgraph.M2M, Inverse: true, Table: link.OwnerTable, Columns: link.OwnerPrimaryKey, Bidi: false, Target: &sqlgraph.EdgeTarget{ IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeUUID), }, } for _, k := range nodes { edge.Target.Nodes = append(edge.Target.Nodes, k) } _spec.Edges.Add = append(_spec.Edges.Add, edge) } _node = &Link{config: luo.config} _spec.Assign = _node.assignValues _spec.ScanValues = _node.scanValues if err = sqlgraph.UpdateNode(ctx, luo.driver, _spec); err != nil { if _, ok := err.(*sqlgraph.NotFoundError); ok { err = &NotFoundError{link.Label} } else if sqlgraph.IsConstraintError(err) { err = &ConstraintError{msg: err.Error(), wrap: err} } return nil, err } luo.mutation.done = true return _node, nil }