mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
* entc/gen: fixed ConstraintError fields name * fix: run go generate * entc/gen: fixed Filter fields name * fix: run go generate again for entql
506 lines
13 KiB
Go
506 lines
13 KiB
Go
// Copyright 2019-present Facebook Inc. All rights reserved.
|
|
// This source code is licensed under the Apache 2.0 license found
|
|
// in the LICENSE file in the root directory of this source tree.
|
|
|
|
// 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/entc/integration/hooks/ent/card"
|
|
"entgo.io/ent/entc/integration/hooks/ent/predicate"
|
|
"entgo.io/ent/entc/integration/hooks/ent/user"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// CardUpdate is the builder for updating Card entities.
|
|
type CardUpdate struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *CardMutation
|
|
}
|
|
|
|
// Where appends a list predicates to the CardUpdate builder.
|
|
func (cu *CardUpdate) Where(ps ...predicate.Card) *CardUpdate {
|
|
cu.mutation.Where(ps...)
|
|
return cu
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (cu *CardUpdate) SetName(s string) *CardUpdate {
|
|
cu.mutation.SetName(s)
|
|
return cu
|
|
}
|
|
|
|
// SetNillableName sets the "name" field if the given value is not nil.
|
|
func (cu *CardUpdate) SetNillableName(s *string) *CardUpdate {
|
|
if s != nil {
|
|
cu.SetName(*s)
|
|
}
|
|
return cu
|
|
}
|
|
|
|
// ClearName clears the value of the "name" field.
|
|
func (cu *CardUpdate) ClearName() *CardUpdate {
|
|
cu.mutation.ClearName()
|
|
return cu
|
|
}
|
|
|
|
// SetCreatedAt sets the "created_at" field.
|
|
func (cu *CardUpdate) SetCreatedAt(t time.Time) *CardUpdate {
|
|
cu.mutation.SetCreatedAt(t)
|
|
return cu
|
|
}
|
|
|
|
// SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
|
|
func (cu *CardUpdate) SetNillableCreatedAt(t *time.Time) *CardUpdate {
|
|
if t != nil {
|
|
cu.SetCreatedAt(*t)
|
|
}
|
|
return cu
|
|
}
|
|
|
|
// SetInHook sets the "in_hook" field.
|
|
func (cu *CardUpdate) SetInHook(s string) *CardUpdate {
|
|
cu.mutation.SetInHook(s)
|
|
return cu
|
|
}
|
|
|
|
// SetOwnerID sets the "owner" edge to the User entity by ID.
|
|
func (cu *CardUpdate) SetOwnerID(id int) *CardUpdate {
|
|
cu.mutation.SetOwnerID(id)
|
|
return cu
|
|
}
|
|
|
|
// SetNillableOwnerID sets the "owner" edge to the User entity by ID if the given value is not nil.
|
|
func (cu *CardUpdate) SetNillableOwnerID(id *int) *CardUpdate {
|
|
if id != nil {
|
|
cu = cu.SetOwnerID(*id)
|
|
}
|
|
return cu
|
|
}
|
|
|
|
// SetOwner sets the "owner" edge to the User entity.
|
|
func (cu *CardUpdate) SetOwner(u *User) *CardUpdate {
|
|
return cu.SetOwnerID(u.ID)
|
|
}
|
|
|
|
// Mutation returns the CardMutation object of the builder.
|
|
func (cu *CardUpdate) Mutation() *CardMutation {
|
|
return cu.mutation
|
|
}
|
|
|
|
// ClearOwner clears the "owner" edge to the User entity.
|
|
func (cu *CardUpdate) ClearOwner() *CardUpdate {
|
|
cu.mutation.ClearOwner()
|
|
return cu
|
|
}
|
|
|
|
// Save executes the query and returns the number of nodes affected by the update operation.
|
|
func (cu *CardUpdate) Save(ctx context.Context) (int, error) {
|
|
var (
|
|
err error
|
|
affected int
|
|
)
|
|
if len(cu.hooks) == 0 {
|
|
affected, err = cu.sqlSave(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*CardMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
cu.mutation = mutation
|
|
affected, err = cu.sqlSave(ctx)
|
|
mutation.done = true
|
|
return affected, err
|
|
})
|
|
for i := len(cu.hooks) - 1; i >= 0; i-- {
|
|
if cu.hooks[i] == nil {
|
|
return 0, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
|
|
}
|
|
mut = cu.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, cu.mutation); err != nil {
|
|
return 0, err
|
|
}
|
|
}
|
|
return affected, err
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (cu *CardUpdate) SaveX(ctx context.Context) int {
|
|
affected, err := cu.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return affected
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (cu *CardUpdate) Exec(ctx context.Context) error {
|
|
_, err := cu.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (cu *CardUpdate) ExecX(ctx context.Context) {
|
|
if err := cu.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (cu *CardUpdate) sqlSave(ctx context.Context) (n int, err error) {
|
|
_spec := &sqlgraph.UpdateSpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: card.Table,
|
|
Columns: card.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: card.FieldID,
|
|
},
|
|
},
|
|
}
|
|
if ps := cu.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := cu.mutation.Name(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: card.FieldName,
|
|
})
|
|
}
|
|
if cu.mutation.NameCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: card.FieldName,
|
|
})
|
|
}
|
|
if value, ok := cu.mutation.CreatedAt(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeTime,
|
|
Value: value,
|
|
Column: card.FieldCreatedAt,
|
|
})
|
|
}
|
|
if value, ok := cu.mutation.InHook(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: card.FieldInHook,
|
|
})
|
|
}
|
|
if cu.mutation.OwnerCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: true,
|
|
Table: card.OwnerTable,
|
|
Columns: []string{card.OwnerColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := cu.mutation.OwnerIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: true,
|
|
Table: card.OwnerTable,
|
|
Columns: []string{card.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)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if n, err = sqlgraph.UpdateNodes(ctx, cu.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{card.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return 0, err
|
|
}
|
|
return n, nil
|
|
}
|
|
|
|
// CardUpdateOne is the builder for updating a single Card entity.
|
|
type CardUpdateOne struct {
|
|
config
|
|
fields []string
|
|
hooks []Hook
|
|
mutation *CardMutation
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (cuo *CardUpdateOne) SetName(s string) *CardUpdateOne {
|
|
cuo.mutation.SetName(s)
|
|
return cuo
|
|
}
|
|
|
|
// SetNillableName sets the "name" field if the given value is not nil.
|
|
func (cuo *CardUpdateOne) SetNillableName(s *string) *CardUpdateOne {
|
|
if s != nil {
|
|
cuo.SetName(*s)
|
|
}
|
|
return cuo
|
|
}
|
|
|
|
// ClearName clears the value of the "name" field.
|
|
func (cuo *CardUpdateOne) ClearName() *CardUpdateOne {
|
|
cuo.mutation.ClearName()
|
|
return cuo
|
|
}
|
|
|
|
// SetCreatedAt sets the "created_at" field.
|
|
func (cuo *CardUpdateOne) SetCreatedAt(t time.Time) *CardUpdateOne {
|
|
cuo.mutation.SetCreatedAt(t)
|
|
return cuo
|
|
}
|
|
|
|
// SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
|
|
func (cuo *CardUpdateOne) SetNillableCreatedAt(t *time.Time) *CardUpdateOne {
|
|
if t != nil {
|
|
cuo.SetCreatedAt(*t)
|
|
}
|
|
return cuo
|
|
}
|
|
|
|
// SetInHook sets the "in_hook" field.
|
|
func (cuo *CardUpdateOne) SetInHook(s string) *CardUpdateOne {
|
|
cuo.mutation.SetInHook(s)
|
|
return cuo
|
|
}
|
|
|
|
// SetOwnerID sets the "owner" edge to the User entity by ID.
|
|
func (cuo *CardUpdateOne) SetOwnerID(id int) *CardUpdateOne {
|
|
cuo.mutation.SetOwnerID(id)
|
|
return cuo
|
|
}
|
|
|
|
// SetNillableOwnerID sets the "owner" edge to the User entity by ID if the given value is not nil.
|
|
func (cuo *CardUpdateOne) SetNillableOwnerID(id *int) *CardUpdateOne {
|
|
if id != nil {
|
|
cuo = cuo.SetOwnerID(*id)
|
|
}
|
|
return cuo
|
|
}
|
|
|
|
// SetOwner sets the "owner" edge to the User entity.
|
|
func (cuo *CardUpdateOne) SetOwner(u *User) *CardUpdateOne {
|
|
return cuo.SetOwnerID(u.ID)
|
|
}
|
|
|
|
// Mutation returns the CardMutation object of the builder.
|
|
func (cuo *CardUpdateOne) Mutation() *CardMutation {
|
|
return cuo.mutation
|
|
}
|
|
|
|
// ClearOwner clears the "owner" edge to the User entity.
|
|
func (cuo *CardUpdateOne) ClearOwner() *CardUpdateOne {
|
|
cuo.mutation.ClearOwner()
|
|
return cuo
|
|
}
|
|
|
|
// Select allows selecting one or more fields (columns) of the returned entity.
|
|
// The default is selecting all fields defined in the entity schema.
|
|
func (cuo *CardUpdateOne) Select(field string, fields ...string) *CardUpdateOne {
|
|
cuo.fields = append([]string{field}, fields...)
|
|
return cuo
|
|
}
|
|
|
|
// Save executes the query and returns the updated Card entity.
|
|
func (cuo *CardUpdateOne) Save(ctx context.Context) (*Card, error) {
|
|
var (
|
|
err error
|
|
node *Card
|
|
)
|
|
if len(cuo.hooks) == 0 {
|
|
node, err = cuo.sqlSave(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*CardMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
cuo.mutation = mutation
|
|
node, err = cuo.sqlSave(ctx)
|
|
mutation.done = true
|
|
return node, err
|
|
})
|
|
for i := len(cuo.hooks) - 1; i >= 0; i-- {
|
|
if cuo.hooks[i] == nil {
|
|
return nil, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
|
|
}
|
|
mut = cuo.hooks[i](mut)
|
|
}
|
|
v, err := mut.Mutate(ctx, cuo.mutation)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
nv, ok := v.(*Card)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected node type %T returned from CardMutation", v)
|
|
}
|
|
node = nv
|
|
}
|
|
return node, err
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (cuo *CardUpdateOne) SaveX(ctx context.Context) *Card {
|
|
node, err := cuo.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// Exec executes the query on the entity.
|
|
func (cuo *CardUpdateOne) Exec(ctx context.Context) error {
|
|
_, err := cuo.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (cuo *CardUpdateOne) ExecX(ctx context.Context) {
|
|
if err := cuo.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (cuo *CardUpdateOne) sqlSave(ctx context.Context) (_node *Card, err error) {
|
|
_spec := &sqlgraph.UpdateSpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: card.Table,
|
|
Columns: card.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: card.FieldID,
|
|
},
|
|
},
|
|
}
|
|
id, ok := cuo.mutation.ID()
|
|
if !ok {
|
|
return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Card.id" for update`)}
|
|
}
|
|
_spec.Node.ID.Value = id
|
|
if fields := cuo.fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, card.FieldID)
|
|
for _, f := range fields {
|
|
if !card.ValidColumn(f) {
|
|
return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
if f != card.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, f)
|
|
}
|
|
}
|
|
}
|
|
if ps := cuo.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := cuo.mutation.Name(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: card.FieldName,
|
|
})
|
|
}
|
|
if cuo.mutation.NameCleared() {
|
|
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: card.FieldName,
|
|
})
|
|
}
|
|
if value, ok := cuo.mutation.CreatedAt(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeTime,
|
|
Value: value,
|
|
Column: card.FieldCreatedAt,
|
|
})
|
|
}
|
|
if value, ok := cuo.mutation.InHook(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: card.FieldInHook,
|
|
})
|
|
}
|
|
if cuo.mutation.OwnerCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: true,
|
|
Table: card.OwnerTable,
|
|
Columns: []string{card.OwnerColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: user.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := cuo.mutation.OwnerIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: true,
|
|
Table: card.OwnerTable,
|
|
Columns: []string{card.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)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
_node = &Card{config: cuo.config}
|
|
_spec.Assign = _node.assignValues
|
|
_spec.ScanValues = _node.scanValues
|
|
if err = sqlgraph.UpdateNode(ctx, cuo.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{card.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return nil, err
|
|
}
|
|
return _node, nil
|
|
}
|