mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
390 lines
11 KiB
Go
390 lines
11 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"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/entc/integration/ent/predicate"
|
|
"entgo.io/ent/entc/integration/ent/schema/task"
|
|
"entgo.io/ent/schema/field"
|
|
|
|
enttask "entgo.io/ent/entc/integration/ent/task"
|
|
)
|
|
|
|
// TaskUpdate is the builder for updating Task entities.
|
|
type TaskUpdate struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *TaskMutation
|
|
modifiers []func(*sql.UpdateBuilder)
|
|
}
|
|
|
|
// Where appends a list predicates to the TaskUpdate builder.
|
|
func (tu *TaskUpdate) Where(ps ...predicate.Task) *TaskUpdate {
|
|
tu.mutation.Where(ps...)
|
|
return tu
|
|
}
|
|
|
|
// SetPriority sets the "priority" field.
|
|
func (tu *TaskUpdate) SetPriority(t task.Priority) *TaskUpdate {
|
|
tu.mutation.ResetPriority()
|
|
tu.mutation.SetPriority(t)
|
|
return tu
|
|
}
|
|
|
|
// SetNillablePriority sets the "priority" field if the given value is not nil.
|
|
func (tu *TaskUpdate) SetNillablePriority(t *task.Priority) *TaskUpdate {
|
|
if t != nil {
|
|
tu.SetPriority(*t)
|
|
}
|
|
return tu
|
|
}
|
|
|
|
// AddPriority adds t to the "priority" field.
|
|
func (tu *TaskUpdate) AddPriority(t task.Priority) *TaskUpdate {
|
|
tu.mutation.AddPriority(t)
|
|
return tu
|
|
}
|
|
|
|
// SetPriorities sets the "priorities" field.
|
|
func (tu *TaskUpdate) SetPriorities(m map[string]task.Priority) *TaskUpdate {
|
|
tu.mutation.SetPriorities(m)
|
|
return tu
|
|
}
|
|
|
|
// ClearPriorities clears the value of the "priorities" field.
|
|
func (tu *TaskUpdate) ClearPriorities() *TaskUpdate {
|
|
tu.mutation.ClearPriorities()
|
|
return tu
|
|
}
|
|
|
|
// Mutation returns the TaskMutation object of the builder.
|
|
func (tu *TaskUpdate) Mutation() *TaskMutation {
|
|
return tu.mutation
|
|
}
|
|
|
|
// Save executes the query and returns the number of nodes affected by the update operation.
|
|
func (tu *TaskUpdate) Save(ctx context.Context) (int, error) {
|
|
var (
|
|
err error
|
|
affected int
|
|
)
|
|
if len(tu.hooks) == 0 {
|
|
if err = tu.check(); err != nil {
|
|
return 0, err
|
|
}
|
|
affected, err = tu.sqlSave(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*TaskMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
if err = tu.check(); err != nil {
|
|
return 0, err
|
|
}
|
|
tu.mutation = mutation
|
|
affected, err = tu.sqlSave(ctx)
|
|
mutation.done = true
|
|
return affected, err
|
|
})
|
|
for i := len(tu.hooks) - 1; i >= 0; i-- {
|
|
if tu.hooks[i] == nil {
|
|
return 0, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
|
|
}
|
|
mut = tu.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, tu.mutation); err != nil {
|
|
return 0, err
|
|
}
|
|
}
|
|
return affected, err
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (tu *TaskUpdate) SaveX(ctx context.Context) int {
|
|
affected, err := tu.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return affected
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (tu *TaskUpdate) Exec(ctx context.Context) error {
|
|
_, err := tu.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (tu *TaskUpdate) ExecX(ctx context.Context) {
|
|
if err := tu.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// check runs all checks and user-defined validators on the builder.
|
|
func (tu *TaskUpdate) check() error {
|
|
if v, ok := tu.mutation.Priority(); ok {
|
|
if err := enttask.PriorityValidator(int(v)); err != nil {
|
|
return &ValidationError{Name: "priority", err: fmt.Errorf(`ent: validator failed for field "Task.priority": %w`, err)}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Modify adds a statement modifier for attaching custom logic to the UPDATE statement.
|
|
func (tu *TaskUpdate) Modify(modifiers ...func(u *sql.UpdateBuilder)) *TaskUpdate {
|
|
tu.modifiers = append(tu.modifiers, modifiers...)
|
|
return tu
|
|
}
|
|
|
|
func (tu *TaskUpdate) sqlSave(ctx context.Context) (n int, err error) {
|
|
_spec := &sqlgraph.UpdateSpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: enttask.Table,
|
|
Columns: enttask.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: enttask.FieldID,
|
|
},
|
|
},
|
|
}
|
|
if ps := tu.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := tu.mutation.Priority(); ok {
|
|
_spec.SetField(enttask.FieldPriority, field.TypeInt, value)
|
|
}
|
|
if value, ok := tu.mutation.AddedPriority(); ok {
|
|
_spec.AddField(enttask.FieldPriority, field.TypeInt, value)
|
|
}
|
|
if value, ok := tu.mutation.Priorities(); ok {
|
|
_spec.SetField(enttask.FieldPriorities, field.TypeJSON, value)
|
|
}
|
|
if tu.mutation.PrioritiesCleared() {
|
|
_spec.ClearField(enttask.FieldPriorities, field.TypeJSON)
|
|
}
|
|
_spec.AddModifiers(tu.modifiers...)
|
|
if n, err = sqlgraph.UpdateNodes(ctx, tu.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{enttask.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return 0, err
|
|
}
|
|
return n, nil
|
|
}
|
|
|
|
// TaskUpdateOne is the builder for updating a single Task entity.
|
|
type TaskUpdateOne struct {
|
|
config
|
|
fields []string
|
|
hooks []Hook
|
|
mutation *TaskMutation
|
|
modifiers []func(*sql.UpdateBuilder)
|
|
}
|
|
|
|
// SetPriority sets the "priority" field.
|
|
func (tuo *TaskUpdateOne) SetPriority(t task.Priority) *TaskUpdateOne {
|
|
tuo.mutation.ResetPriority()
|
|
tuo.mutation.SetPriority(t)
|
|
return tuo
|
|
}
|
|
|
|
// SetNillablePriority sets the "priority" field if the given value is not nil.
|
|
func (tuo *TaskUpdateOne) SetNillablePriority(t *task.Priority) *TaskUpdateOne {
|
|
if t != nil {
|
|
tuo.SetPriority(*t)
|
|
}
|
|
return tuo
|
|
}
|
|
|
|
// AddPriority adds t to the "priority" field.
|
|
func (tuo *TaskUpdateOne) AddPriority(t task.Priority) *TaskUpdateOne {
|
|
tuo.mutation.AddPriority(t)
|
|
return tuo
|
|
}
|
|
|
|
// SetPriorities sets the "priorities" field.
|
|
func (tuo *TaskUpdateOne) SetPriorities(m map[string]task.Priority) *TaskUpdateOne {
|
|
tuo.mutation.SetPriorities(m)
|
|
return tuo
|
|
}
|
|
|
|
// ClearPriorities clears the value of the "priorities" field.
|
|
func (tuo *TaskUpdateOne) ClearPriorities() *TaskUpdateOne {
|
|
tuo.mutation.ClearPriorities()
|
|
return tuo
|
|
}
|
|
|
|
// Mutation returns the TaskMutation object of the builder.
|
|
func (tuo *TaskUpdateOne) Mutation() *TaskMutation {
|
|
return tuo.mutation
|
|
}
|
|
|
|
// Select allows selecting one or more fields (columns) of the returned entity.
|
|
// The default is selecting all fields defined in the entity schema.
|
|
func (tuo *TaskUpdateOne) Select(field string, fields ...string) *TaskUpdateOne {
|
|
tuo.fields = append([]string{field}, fields...)
|
|
return tuo
|
|
}
|
|
|
|
// Save executes the query and returns the updated Task entity.
|
|
func (tuo *TaskUpdateOne) Save(ctx context.Context) (*Task, error) {
|
|
var (
|
|
err error
|
|
node *Task
|
|
)
|
|
if len(tuo.hooks) == 0 {
|
|
if err = tuo.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
node, err = tuo.sqlSave(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*TaskMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
if err = tuo.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
tuo.mutation = mutation
|
|
node, err = tuo.sqlSave(ctx)
|
|
mutation.done = true
|
|
return node, err
|
|
})
|
|
for i := len(tuo.hooks) - 1; i >= 0; i-- {
|
|
if tuo.hooks[i] == nil {
|
|
return nil, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
|
|
}
|
|
mut = tuo.hooks[i](mut)
|
|
}
|
|
v, err := mut.Mutate(ctx, tuo.mutation)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
nv, ok := v.(*Task)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected node type %T returned from TaskMutation", v)
|
|
}
|
|
node = nv
|
|
}
|
|
return node, err
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (tuo *TaskUpdateOne) SaveX(ctx context.Context) *Task {
|
|
node, err := tuo.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// Exec executes the query on the entity.
|
|
func (tuo *TaskUpdateOne) Exec(ctx context.Context) error {
|
|
_, err := tuo.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (tuo *TaskUpdateOne) ExecX(ctx context.Context) {
|
|
if err := tuo.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// check runs all checks and user-defined validators on the builder.
|
|
func (tuo *TaskUpdateOne) check() error {
|
|
if v, ok := tuo.mutation.Priority(); ok {
|
|
if err := enttask.PriorityValidator(int(v)); err != nil {
|
|
return &ValidationError{Name: "priority", err: fmt.Errorf(`ent: validator failed for field "Task.priority": %w`, err)}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Modify adds a statement modifier for attaching custom logic to the UPDATE statement.
|
|
func (tuo *TaskUpdateOne) Modify(modifiers ...func(u *sql.UpdateBuilder)) *TaskUpdateOne {
|
|
tuo.modifiers = append(tuo.modifiers, modifiers...)
|
|
return tuo
|
|
}
|
|
|
|
func (tuo *TaskUpdateOne) sqlSave(ctx context.Context) (_node *Task, err error) {
|
|
_spec := &sqlgraph.UpdateSpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: enttask.Table,
|
|
Columns: enttask.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: enttask.FieldID,
|
|
},
|
|
},
|
|
}
|
|
id, ok := tuo.mutation.ID()
|
|
if !ok {
|
|
return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Task.id" for update`)}
|
|
}
|
|
_spec.Node.ID.Value = id
|
|
if fields := tuo.fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, enttask.FieldID)
|
|
for _, f := range fields {
|
|
if !enttask.ValidColumn(f) {
|
|
return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
if f != enttask.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, f)
|
|
}
|
|
}
|
|
}
|
|
if ps := tuo.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := tuo.mutation.Priority(); ok {
|
|
_spec.SetField(enttask.FieldPriority, field.TypeInt, value)
|
|
}
|
|
if value, ok := tuo.mutation.AddedPriority(); ok {
|
|
_spec.AddField(enttask.FieldPriority, field.TypeInt, value)
|
|
}
|
|
if value, ok := tuo.mutation.Priorities(); ok {
|
|
_spec.SetField(enttask.FieldPriorities, field.TypeJSON, value)
|
|
}
|
|
if tuo.mutation.PrioritiesCleared() {
|
|
_spec.ClearField(enttask.FieldPriorities, field.TypeJSON)
|
|
}
|
|
_spec.AddModifiers(tuo.modifiers...)
|
|
_node = &Task{config: tuo.config}
|
|
_spec.Assign = _node.assignValues
|
|
_spec.ScanValues = _node.scanValues
|
|
if err = sqlgraph.UpdateNode(ctx, tuo.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{enttask.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return nil, err
|
|
}
|
|
return _node, nil
|
|
}
|