Skip to main content
Glama

Storyden

by Southclaws
Mozilla Public License 2.0
227
email_update.go12 kB
// Code generated by ent, DO NOT EDIT. package ent import ( "context" "errors" "fmt" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" "github.com/Southclaws/storyden/internal/ent/account" "github.com/Southclaws/storyden/internal/ent/email" "github.com/Southclaws/storyden/internal/ent/predicate" "github.com/rs/xid" ) // EmailUpdate is the builder for updating Email entities. type EmailUpdate struct { config hooks []Hook mutation *EmailMutation modifiers []func(*sql.UpdateBuilder) } // Where appends a list predicates to the EmailUpdate builder. func (_u *EmailUpdate) Where(ps ...predicate.Email) *EmailUpdate { _u.mutation.Where(ps...) return _u } // SetAccountID sets the "account_id" field. func (_u *EmailUpdate) SetAccountID(v xid.ID) *EmailUpdate { _u.mutation.SetAccountID(v) return _u } // SetNillableAccountID sets the "account_id" field if the given value is not nil. func (_u *EmailUpdate) SetNillableAccountID(v *xid.ID) *EmailUpdate { if v != nil { _u.SetAccountID(*v) } return _u } // ClearAccountID clears the value of the "account_id" field. func (_u *EmailUpdate) ClearAccountID() *EmailUpdate { _u.mutation.ClearAccountID() return _u } // SetVerificationCode sets the "verification_code" field. func (_u *EmailUpdate) SetVerificationCode(v string) *EmailUpdate { _u.mutation.SetVerificationCode(v) return _u } // SetNillableVerificationCode sets the "verification_code" field if the given value is not nil. func (_u *EmailUpdate) SetNillableVerificationCode(v *string) *EmailUpdate { if v != nil { _u.SetVerificationCode(*v) } return _u } // SetVerified sets the "verified" field. func (_u *EmailUpdate) SetVerified(v bool) *EmailUpdate { _u.mutation.SetVerified(v) return _u } // SetNillableVerified sets the "verified" field if the given value is not nil. func (_u *EmailUpdate) SetNillableVerified(v *bool) *EmailUpdate { if v != nil { _u.SetVerified(*v) } return _u } // SetAccount sets the "account" edge to the Account entity. func (_u *EmailUpdate) SetAccount(v *Account) *EmailUpdate { return _u.SetAccountID(v.ID) } // Mutation returns the EmailMutation object of the builder. func (_u *EmailUpdate) Mutation() *EmailMutation { return _u.mutation } // ClearAccount clears the "account" edge to the Account entity. func (_u *EmailUpdate) ClearAccount() *EmailUpdate { _u.mutation.ClearAccount() return _u } // Save executes the query and returns the number of nodes affected by the update operation. func (_u *EmailUpdate) Save(ctx context.Context) (int, error) { return withHooks(ctx, _u.sqlSave, _u.mutation, _u.hooks) } // SaveX is like Save, but panics if an error occurs. func (_u *EmailUpdate) SaveX(ctx context.Context) int { affected, err := _u.Save(ctx) if err != nil { panic(err) } return affected } // Exec executes the query. func (_u *EmailUpdate) Exec(ctx context.Context) error { _, err := _u.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (_u *EmailUpdate) ExecX(ctx context.Context) { if err := _u.Exec(ctx); err != nil { panic(err) } } // check runs all checks and user-defined validators on the builder. func (_u *EmailUpdate) check() error { if v, ok := _u.mutation.VerificationCode(); ok { if err := email.VerificationCodeValidator(v); err != nil { return &ValidationError{Name: "verification_code", err: fmt.Errorf(`ent: validator failed for field "Email.verification_code": %w`, err)} } } return nil } // Modify adds a statement modifier for attaching custom logic to the UPDATE statement. func (_u *EmailUpdate) Modify(modifiers ...func(u *sql.UpdateBuilder)) *EmailUpdate { _u.modifiers = append(_u.modifiers, modifiers...) return _u } func (_u *EmailUpdate) sqlSave(ctx context.Context) (_node int, err error) { if err := _u.check(); err != nil { return _node, err } _spec := sqlgraph.NewUpdateSpec(email.Table, email.Columns, sqlgraph.NewFieldSpec(email.FieldID, field.TypeString)) if ps := _u.mutation.predicates; len(ps) > 0 { _spec.Predicate = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } if value, ok := _u.mutation.VerificationCode(); ok { _spec.SetField(email.FieldVerificationCode, field.TypeString, value) } if value, ok := _u.mutation.Verified(); ok { _spec.SetField(email.FieldVerified, field.TypeBool, value) } if _u.mutation.AccountCleared() { edge := &sqlgraph.EdgeSpec{ Rel: sqlgraph.M2O, Inverse: true, Table: email.AccountTable, Columns: []string{email.AccountColumn}, Bidi: false, Target: &sqlgraph.EdgeTarget{ IDSpec: sqlgraph.NewFieldSpec(account.FieldID, field.TypeString), }, } _spec.Edges.Clear = append(_spec.Edges.Clear, edge) } if nodes := _u.mutation.AccountIDs(); len(nodes) > 0 { edge := &sqlgraph.EdgeSpec{ Rel: sqlgraph.M2O, Inverse: true, Table: email.AccountTable, Columns: []string{email.AccountColumn}, Bidi: false, Target: &sqlgraph.EdgeTarget{ IDSpec: sqlgraph.NewFieldSpec(account.FieldID, field.TypeString), }, } for _, k := range nodes { edge.Target.Nodes = append(edge.Target.Nodes, k) } _spec.Edges.Add = append(_spec.Edges.Add, edge) } _spec.AddModifiers(_u.modifiers...) if _node, err = sqlgraph.UpdateNodes(ctx, _u.driver, _spec); err != nil { if _, ok := err.(*sqlgraph.NotFoundError); ok { err = &NotFoundError{email.Label} } else if sqlgraph.IsConstraintError(err) { err = &ConstraintError{msg: err.Error(), wrap: err} } return 0, err } _u.mutation.done = true return _node, nil } // EmailUpdateOne is the builder for updating a single Email entity. type EmailUpdateOne struct { config fields []string hooks []Hook mutation *EmailMutation modifiers []func(*sql.UpdateBuilder) } // SetAccountID sets the "account_id" field. func (_u *EmailUpdateOne) SetAccountID(v xid.ID) *EmailUpdateOne { _u.mutation.SetAccountID(v) return _u } // SetNillableAccountID sets the "account_id" field if the given value is not nil. func (_u *EmailUpdateOne) SetNillableAccountID(v *xid.ID) *EmailUpdateOne { if v != nil { _u.SetAccountID(*v) } return _u } // ClearAccountID clears the value of the "account_id" field. func (_u *EmailUpdateOne) ClearAccountID() *EmailUpdateOne { _u.mutation.ClearAccountID() return _u } // SetVerificationCode sets the "verification_code" field. func (_u *EmailUpdateOne) SetVerificationCode(v string) *EmailUpdateOne { _u.mutation.SetVerificationCode(v) return _u } // SetNillableVerificationCode sets the "verification_code" field if the given value is not nil. func (_u *EmailUpdateOne) SetNillableVerificationCode(v *string) *EmailUpdateOne { if v != nil { _u.SetVerificationCode(*v) } return _u } // SetVerified sets the "verified" field. func (_u *EmailUpdateOne) SetVerified(v bool) *EmailUpdateOne { _u.mutation.SetVerified(v) return _u } // SetNillableVerified sets the "verified" field if the given value is not nil. func (_u *EmailUpdateOne) SetNillableVerified(v *bool) *EmailUpdateOne { if v != nil { _u.SetVerified(*v) } return _u } // SetAccount sets the "account" edge to the Account entity. func (_u *EmailUpdateOne) SetAccount(v *Account) *EmailUpdateOne { return _u.SetAccountID(v.ID) } // Mutation returns the EmailMutation object of the builder. func (_u *EmailUpdateOne) Mutation() *EmailMutation { return _u.mutation } // ClearAccount clears the "account" edge to the Account entity. func (_u *EmailUpdateOne) ClearAccount() *EmailUpdateOne { _u.mutation.ClearAccount() return _u } // Where appends a list predicates to the EmailUpdate builder. func (_u *EmailUpdateOne) Where(ps ...predicate.Email) *EmailUpdateOne { _u.mutation.Where(ps...) return _u } // Select allows selecting one or more fields (columns) of the returned entity. // The default is selecting all fields defined in the entity schema. func (_u *EmailUpdateOne) Select(field string, fields ...string) *EmailUpdateOne { _u.fields = append([]string{field}, fields...) return _u } // Save executes the query and returns the updated Email entity. func (_u *EmailUpdateOne) Save(ctx context.Context) (*Email, error) { return withHooks(ctx, _u.sqlSave, _u.mutation, _u.hooks) } // SaveX is like Save, but panics if an error occurs. func (_u *EmailUpdateOne) SaveX(ctx context.Context) *Email { node, err := _u.Save(ctx) if err != nil { panic(err) } return node } // Exec executes the query on the entity. func (_u *EmailUpdateOne) Exec(ctx context.Context) error { _, err := _u.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (_u *EmailUpdateOne) ExecX(ctx context.Context) { if err := _u.Exec(ctx); err != nil { panic(err) } } // check runs all checks and user-defined validators on the builder. func (_u *EmailUpdateOne) check() error { if v, ok := _u.mutation.VerificationCode(); ok { if err := email.VerificationCodeValidator(v); err != nil { return &ValidationError{Name: "verification_code", err: fmt.Errorf(`ent: validator failed for field "Email.verification_code": %w`, err)} } } return nil } // Modify adds a statement modifier for attaching custom logic to the UPDATE statement. func (_u *EmailUpdateOne) Modify(modifiers ...func(u *sql.UpdateBuilder)) *EmailUpdateOne { _u.modifiers = append(_u.modifiers, modifiers...) return _u } func (_u *EmailUpdateOne) sqlSave(ctx context.Context) (_node *Email, err error) { if err := _u.check(); err != nil { return _node, err } _spec := sqlgraph.NewUpdateSpec(email.Table, email.Columns, sqlgraph.NewFieldSpec(email.FieldID, field.TypeString)) id, ok := _u.mutation.ID() if !ok { return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Email.id" for update`)} } _spec.Node.ID.Value = id if fields := _u.fields; len(fields) > 0 { _spec.Node.Columns = make([]string, 0, len(fields)) _spec.Node.Columns = append(_spec.Node.Columns, email.FieldID) for _, f := range fields { if !email.ValidColumn(f) { return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)} } if f != email.FieldID { _spec.Node.Columns = append(_spec.Node.Columns, f) } } } if ps := _u.mutation.predicates; len(ps) > 0 { _spec.Predicate = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } if value, ok := _u.mutation.VerificationCode(); ok { _spec.SetField(email.FieldVerificationCode, field.TypeString, value) } if value, ok := _u.mutation.Verified(); ok { _spec.SetField(email.FieldVerified, field.TypeBool, value) } if _u.mutation.AccountCleared() { edge := &sqlgraph.EdgeSpec{ Rel: sqlgraph.M2O, Inverse: true, Table: email.AccountTable, Columns: []string{email.AccountColumn}, Bidi: false, Target: &sqlgraph.EdgeTarget{ IDSpec: sqlgraph.NewFieldSpec(account.FieldID, field.TypeString), }, } _spec.Edges.Clear = append(_spec.Edges.Clear, edge) } if nodes := _u.mutation.AccountIDs(); len(nodes) > 0 { edge := &sqlgraph.EdgeSpec{ Rel: sqlgraph.M2O, Inverse: true, Table: email.AccountTable, Columns: []string{email.AccountColumn}, Bidi: false, Target: &sqlgraph.EdgeTarget{ IDSpec: sqlgraph.NewFieldSpec(account.FieldID, field.TypeString), }, } for _, k := range nodes { edge.Target.Nodes = append(edge.Target.Nodes, k) } _spec.Edges.Add = append(_spec.Edges.Add, edge) } _spec.AddModifiers(_u.modifiers...) _node = &Email{config: _u.config} _spec.Assign = _node.assignValues _spec.ScanValues = _node.scanValues if err = sqlgraph.UpdateNode(ctx, _u.driver, _spec); err != nil { if _, ok := err.(*sqlgraph.NotFoundError); ok { err = &NotFoundError{email.Label} } else if sqlgraph.IsConstraintError(err) { err = &ConstraintError{msg: err.Error(), wrap: err} } return nil, err } _u.mutation.done = true return _node, nil }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Southclaws/storyden'

If you have feedback or need assistance with the MCP directory API, please join our Discord server