// Code generated by ent, DO NOT EDIT. package ent import ( "context" "errors" "fmt" "time" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/dialect/sql/sqljson" "entgo.io/ent/schema/field" "git.dotya.ml/mirre-mt/pcmt/ent/hibp" "git.dotya.ml/mirre-mt/pcmt/ent/predicate" ) // HIBPUpdate is the builder for updating HIBP entities. type HIBPUpdate struct { config hooks []Hook mutation *HIBPMutation } // Where appends a list predicates to the HIBPUpdate builder. func (hu *HIBPUpdate) Where(ps ...predicate.HIBP) *HIBPUpdate { hu.mutation.Where(ps...) return hu } // SetName sets the "name" field. func (hu *HIBPUpdate) SetName(s string) *HIBPUpdate { hu.mutation.SetName(s) return hu } // SetBreachDate sets the "breach_date" field. func (hu *HIBPUpdate) SetBreachDate(t time.Time) *HIBPUpdate { hu.mutation.SetBreachDate(t) return hu } // SetAddedDate sets the "added_date" field. func (hu *HIBPUpdate) SetAddedDate(t time.Time) *HIBPUpdate { hu.mutation.SetAddedDate(t) return hu } // SetModifiedDate sets the "modified_date" field. func (hu *HIBPUpdate) SetModifiedDate(t time.Time) *HIBPUpdate { hu.mutation.SetModifiedDate(t) return hu } // SetPwnCount sets the "pwn_count" field. func (hu *HIBPUpdate) SetPwnCount(i int) *HIBPUpdate { hu.mutation.ResetPwnCount() hu.mutation.SetPwnCount(i) return hu } // AddPwnCount adds i to the "pwn_count" field. func (hu *HIBPUpdate) AddPwnCount(i int) *HIBPUpdate { hu.mutation.AddPwnCount(i) return hu } // SetDescription sets the "description" field. func (hu *HIBPUpdate) SetDescription(s string) *HIBPUpdate { hu.mutation.SetDescription(s) return hu } // SetDataclasses sets the "dataclasses" field. func (hu *HIBPUpdate) SetDataclasses(s []string) *HIBPUpdate { hu.mutation.SetDataclasses(s) return hu } // AppendDataclasses appends s to the "dataclasses" field. func (hu *HIBPUpdate) AppendDataclasses(s []string) *HIBPUpdate { hu.mutation.AppendDataclasses(s) return hu } // SetIsVerified sets the "is_verified" field. func (hu *HIBPUpdate) SetIsVerified(b bool) *HIBPUpdate { hu.mutation.SetIsVerified(b) return hu } // SetNillableIsVerified sets the "is_verified" field if the given value is not nil. func (hu *HIBPUpdate) SetNillableIsVerified(b *bool) *HIBPUpdate { if b != nil { hu.SetIsVerified(*b) } return hu } // SetIsFabricated sets the "is_fabricated" field. func (hu *HIBPUpdate) SetIsFabricated(b bool) *HIBPUpdate { hu.mutation.SetIsFabricated(b) return hu } // SetNillableIsFabricated sets the "is_fabricated" field if the given value is not nil. func (hu *HIBPUpdate) SetNillableIsFabricated(b *bool) *HIBPUpdate { if b != nil { hu.SetIsFabricated(*b) } return hu } // SetIsSensitive sets the "is_sensitive" field. func (hu *HIBPUpdate) SetIsSensitive(b bool) *HIBPUpdate { hu.mutation.SetIsSensitive(b) return hu } // SetNillableIsSensitive sets the "is_sensitive" field if the given value is not nil. func (hu *HIBPUpdate) SetNillableIsSensitive(b *bool) *HIBPUpdate { if b != nil { hu.SetIsSensitive(*b) } return hu } // SetIsRetired sets the "is_retired" field. func (hu *HIBPUpdate) SetIsRetired(b bool) *HIBPUpdate { hu.mutation.SetIsRetired(b) return hu } // SetNillableIsRetired sets the "is_retired" field if the given value is not nil. func (hu *HIBPUpdate) SetNillableIsRetired(b *bool) *HIBPUpdate { if b != nil { hu.SetIsRetired(*b) } return hu } // SetIsSpamList sets the "is_spamList" field. func (hu *HIBPUpdate) SetIsSpamList(b bool) *HIBPUpdate { hu.mutation.SetIsSpamList(b) return hu } // SetNillableIsSpamList sets the "is_spamList" field if the given value is not nil. func (hu *HIBPUpdate) SetNillableIsSpamList(b *bool) *HIBPUpdate { if b != nil { hu.SetIsSpamList(*b) } return hu } // SetIsMalware sets the "is_malware" field. func (hu *HIBPUpdate) SetIsMalware(b bool) *HIBPUpdate { hu.mutation.SetIsMalware(b) return hu } // SetNillableIsMalware sets the "is_malware" field if the given value is not nil. func (hu *HIBPUpdate) SetNillableIsMalware(b *bool) *HIBPUpdate { if b != nil { hu.SetIsMalware(*b) } return hu } // SetLogo sets the "logo" field. func (hu *HIBPUpdate) SetLogo(s string) *HIBPUpdate { hu.mutation.SetLogo(s) return hu } // Mutation returns the HIBPMutation object of the builder. func (hu *HIBPUpdate) Mutation() *HIBPMutation { return hu.mutation } // Save executes the query and returns the number of nodes affected by the update operation. func (hu *HIBPUpdate) Save(ctx context.Context) (int, error) { return withHooks[int, HIBPMutation](ctx, hu.sqlSave, hu.mutation, hu.hooks) } // SaveX is like Save, but panics if an error occurs. func (hu *HIBPUpdate) SaveX(ctx context.Context) int { affected, err := hu.Save(ctx) if err != nil { panic(err) } return affected } // Exec executes the query. func (hu *HIBPUpdate) Exec(ctx context.Context) error { _, err := hu.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (hu *HIBPUpdate) ExecX(ctx context.Context) { if err := hu.Exec(ctx); err != nil { panic(err) } } func (hu *HIBPUpdate) sqlSave(ctx context.Context) (n int, err error) { _spec := sqlgraph.NewUpdateSpec(hibp.Table, hibp.Columns, sqlgraph.NewFieldSpec(hibp.FieldID, field.TypeUUID)) if ps := hu.mutation.predicates; len(ps) > 0 { _spec.Predicate = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } if value, ok := hu.mutation.Name(); ok { _spec.SetField(hibp.FieldName, field.TypeString, value) } if value, ok := hu.mutation.BreachDate(); ok { _spec.SetField(hibp.FieldBreachDate, field.TypeTime, value) } if value, ok := hu.mutation.AddedDate(); ok { _spec.SetField(hibp.FieldAddedDate, field.TypeTime, value) } if value, ok := hu.mutation.ModifiedDate(); ok { _spec.SetField(hibp.FieldModifiedDate, field.TypeTime, value) } if value, ok := hu.mutation.PwnCount(); ok { _spec.SetField(hibp.FieldPwnCount, field.TypeInt, value) } if value, ok := hu.mutation.AddedPwnCount(); ok { _spec.AddField(hibp.FieldPwnCount, field.TypeInt, value) } if value, ok := hu.mutation.Description(); ok { _spec.SetField(hibp.FieldDescription, field.TypeString, value) } if value, ok := hu.mutation.Dataclasses(); ok { _spec.SetField(hibp.FieldDataclasses, field.TypeJSON, value) } if value, ok := hu.mutation.AppendedDataclasses(); ok { _spec.AddModifier(func(u *sql.UpdateBuilder) { sqljson.Append(u, hibp.FieldDataclasses, value) }) } if value, ok := hu.mutation.IsVerified(); ok { _spec.SetField(hibp.FieldIsVerified, field.TypeBool, value) } if value, ok := hu.mutation.IsFabricated(); ok { _spec.SetField(hibp.FieldIsFabricated, field.TypeBool, value) } if value, ok := hu.mutation.IsSensitive(); ok { _spec.SetField(hibp.FieldIsSensitive, field.TypeBool, value) } if value, ok := hu.mutation.IsRetired(); ok { _spec.SetField(hibp.FieldIsRetired, field.TypeBool, value) } if value, ok := hu.mutation.IsSpamList(); ok { _spec.SetField(hibp.FieldIsSpamList, field.TypeBool, value) } if value, ok := hu.mutation.IsMalware(); ok { _spec.SetField(hibp.FieldIsMalware, field.TypeBool, value) } if value, ok := hu.mutation.Logo(); ok { _spec.SetField(hibp.FieldLogo, field.TypeString, value) } if n, err = sqlgraph.UpdateNodes(ctx, hu.driver, _spec); err != nil { if _, ok := err.(*sqlgraph.NotFoundError); ok { err = &NotFoundError{hibp.Label} } else if sqlgraph.IsConstraintError(err) { err = &ConstraintError{msg: err.Error(), wrap: err} } return 0, err } hu.mutation.done = true return n, nil } // HIBPUpdateOne is the builder for updating a single HIBP entity. type HIBPUpdateOne struct { config fields []string hooks []Hook mutation *HIBPMutation } // SetName sets the "name" field. func (huo *HIBPUpdateOne) SetName(s string) *HIBPUpdateOne { huo.mutation.SetName(s) return huo } // SetBreachDate sets the "breach_date" field. func (huo *HIBPUpdateOne) SetBreachDate(t time.Time) *HIBPUpdateOne { huo.mutation.SetBreachDate(t) return huo } // SetAddedDate sets the "added_date" field. func (huo *HIBPUpdateOne) SetAddedDate(t time.Time) *HIBPUpdateOne { huo.mutation.SetAddedDate(t) return huo } // SetModifiedDate sets the "modified_date" field. func (huo *HIBPUpdateOne) SetModifiedDate(t time.Time) *HIBPUpdateOne { huo.mutation.SetModifiedDate(t) return huo } // SetPwnCount sets the "pwn_count" field. func (huo *HIBPUpdateOne) SetPwnCount(i int) *HIBPUpdateOne { huo.mutation.ResetPwnCount() huo.mutation.SetPwnCount(i) return huo } // AddPwnCount adds i to the "pwn_count" field. func (huo *HIBPUpdateOne) AddPwnCount(i int) *HIBPUpdateOne { huo.mutation.AddPwnCount(i) return huo } // SetDescription sets the "description" field. func (huo *HIBPUpdateOne) SetDescription(s string) *HIBPUpdateOne { huo.mutation.SetDescription(s) return huo } // SetDataclasses sets the "dataclasses" field. func (huo *HIBPUpdateOne) SetDataclasses(s []string) *HIBPUpdateOne { huo.mutation.SetDataclasses(s) return huo } // AppendDataclasses appends s to the "dataclasses" field. func (huo *HIBPUpdateOne) AppendDataclasses(s []string) *HIBPUpdateOne { huo.mutation.AppendDataclasses(s) return huo } // SetIsVerified sets the "is_verified" field. func (huo *HIBPUpdateOne) SetIsVerified(b bool) *HIBPUpdateOne { huo.mutation.SetIsVerified(b) return huo } // SetNillableIsVerified sets the "is_verified" field if the given value is not nil. func (huo *HIBPUpdateOne) SetNillableIsVerified(b *bool) *HIBPUpdateOne { if b != nil { huo.SetIsVerified(*b) } return huo } // SetIsFabricated sets the "is_fabricated" field. func (huo *HIBPUpdateOne) SetIsFabricated(b bool) *HIBPUpdateOne { huo.mutation.SetIsFabricated(b) return huo } // SetNillableIsFabricated sets the "is_fabricated" field if the given value is not nil. func (huo *HIBPUpdateOne) SetNillableIsFabricated(b *bool) *HIBPUpdateOne { if b != nil { huo.SetIsFabricated(*b) } return huo } // SetIsSensitive sets the "is_sensitive" field. func (huo *HIBPUpdateOne) SetIsSensitive(b bool) *HIBPUpdateOne { huo.mutation.SetIsSensitive(b) return huo } // SetNillableIsSensitive sets the "is_sensitive" field if the given value is not nil. func (huo *HIBPUpdateOne) SetNillableIsSensitive(b *bool) *HIBPUpdateOne { if b != nil { huo.SetIsSensitive(*b) } return huo } // SetIsRetired sets the "is_retired" field. func (huo *HIBPUpdateOne) SetIsRetired(b bool) *HIBPUpdateOne { huo.mutation.SetIsRetired(b) return huo } // SetNillableIsRetired sets the "is_retired" field if the given value is not nil. func (huo *HIBPUpdateOne) SetNillableIsRetired(b *bool) *HIBPUpdateOne { if b != nil { huo.SetIsRetired(*b) } return huo } // SetIsSpamList sets the "is_spamList" field. func (huo *HIBPUpdateOne) SetIsSpamList(b bool) *HIBPUpdateOne { huo.mutation.SetIsSpamList(b) return huo } // SetNillableIsSpamList sets the "is_spamList" field if the given value is not nil. func (huo *HIBPUpdateOne) SetNillableIsSpamList(b *bool) *HIBPUpdateOne { if b != nil { huo.SetIsSpamList(*b) } return huo } // SetIsMalware sets the "is_malware" field. func (huo *HIBPUpdateOne) SetIsMalware(b bool) *HIBPUpdateOne { huo.mutation.SetIsMalware(b) return huo } // SetNillableIsMalware sets the "is_malware" field if the given value is not nil. func (huo *HIBPUpdateOne) SetNillableIsMalware(b *bool) *HIBPUpdateOne { if b != nil { huo.SetIsMalware(*b) } return huo } // SetLogo sets the "logo" field. func (huo *HIBPUpdateOne) SetLogo(s string) *HIBPUpdateOne { huo.mutation.SetLogo(s) return huo } // Mutation returns the HIBPMutation object of the builder. func (huo *HIBPUpdateOne) Mutation() *HIBPMutation { return huo.mutation } // Where appends a list predicates to the HIBPUpdate builder. func (huo *HIBPUpdateOne) Where(ps ...predicate.HIBP) *HIBPUpdateOne { huo.mutation.Where(ps...) return huo } // Select allows selecting one or more fields (columns) of the returned entity. // The default is selecting all fields defined in the entity schema. func (huo *HIBPUpdateOne) Select(field string, fields ...string) *HIBPUpdateOne { huo.fields = append([]string{field}, fields...) return huo } // Save executes the query and returns the updated HIBP entity. func (huo *HIBPUpdateOne) Save(ctx context.Context) (*HIBP, error) { return withHooks[*HIBP, HIBPMutation](ctx, huo.sqlSave, huo.mutation, huo.hooks) } // SaveX is like Save, but panics if an error occurs. func (huo *HIBPUpdateOne) SaveX(ctx context.Context) *HIBP { node, err := huo.Save(ctx) if err != nil { panic(err) } return node } // Exec executes the query on the entity. func (huo *HIBPUpdateOne) Exec(ctx context.Context) error { _, err := huo.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (huo *HIBPUpdateOne) ExecX(ctx context.Context) { if err := huo.Exec(ctx); err != nil { panic(err) } } func (huo *HIBPUpdateOne) sqlSave(ctx context.Context) (_node *HIBP, err error) { _spec := sqlgraph.NewUpdateSpec(hibp.Table, hibp.Columns, sqlgraph.NewFieldSpec(hibp.FieldID, field.TypeUUID)) id, ok := huo.mutation.ID() if !ok { return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "HIBP.id" for update`)} } _spec.Node.ID.Value = id if fields := huo.fields; len(fields) > 0 { _spec.Node.Columns = make([]string, 0, len(fields)) _spec.Node.Columns = append(_spec.Node.Columns, hibp.FieldID) for _, f := range fields { if !hibp.ValidColumn(f) { return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)} } if f != hibp.FieldID { _spec.Node.Columns = append(_spec.Node.Columns, f) } } } if ps := huo.mutation.predicates; len(ps) > 0 { _spec.Predicate = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } if value, ok := huo.mutation.Name(); ok { _spec.SetField(hibp.FieldName, field.TypeString, value) } if value, ok := huo.mutation.BreachDate(); ok { _spec.SetField(hibp.FieldBreachDate, field.TypeTime, value) } if value, ok := huo.mutation.AddedDate(); ok { _spec.SetField(hibp.FieldAddedDate, field.TypeTime, value) } if value, ok := huo.mutation.ModifiedDate(); ok { _spec.SetField(hibp.FieldModifiedDate, field.TypeTime, value) } if value, ok := huo.mutation.PwnCount(); ok { _spec.SetField(hibp.FieldPwnCount, field.TypeInt, value) } if value, ok := huo.mutation.AddedPwnCount(); ok { _spec.AddField(hibp.FieldPwnCount, field.TypeInt, value) } if value, ok := huo.mutation.Description(); ok { _spec.SetField(hibp.FieldDescription, field.TypeString, value) } if value, ok := huo.mutation.Dataclasses(); ok { _spec.SetField(hibp.FieldDataclasses, field.TypeJSON, value) } if value, ok := huo.mutation.AppendedDataclasses(); ok { _spec.AddModifier(func(u *sql.UpdateBuilder) { sqljson.Append(u, hibp.FieldDataclasses, value) }) } if value, ok := huo.mutation.IsVerified(); ok { _spec.SetField(hibp.FieldIsVerified, field.TypeBool, value) } if value, ok := huo.mutation.IsFabricated(); ok { _spec.SetField(hibp.FieldIsFabricated, field.TypeBool, value) } if value, ok := huo.mutation.IsSensitive(); ok { _spec.SetField(hibp.FieldIsSensitive, field.TypeBool, value) } if value, ok := huo.mutation.IsRetired(); ok { _spec.SetField(hibp.FieldIsRetired, field.TypeBool, value) } if value, ok := huo.mutation.IsSpamList(); ok { _spec.SetField(hibp.FieldIsSpamList, field.TypeBool, value) } if value, ok := huo.mutation.IsMalware(); ok { _spec.SetField(hibp.FieldIsMalware, field.TypeBool, value) } if value, ok := huo.mutation.Logo(); ok { _spec.SetField(hibp.FieldLogo, field.TypeString, value) } _node = &HIBP{config: huo.config} _spec.Assign = _node.assignValues _spec.ScanValues = _node.scanValues if err = sqlgraph.UpdateNode(ctx, huo.driver, _spec); err != nil { if _, ok := err.(*sqlgraph.NotFoundError); ok { err = &NotFoundError{hibp.Label} } else if sqlgraph.IsConstraintError(err) { err = &ConstraintError{msg: err.Error(), wrap: err} } return nil, err } huo.mutation.done = true return _node, nil }