mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
385 lines
9.8 KiB
Go
385 lines
9.8 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 entc, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/entc/integration/privacy/ent/task"
|
|
"entgo.io/ent/entc/integration/privacy/ent/team"
|
|
"entgo.io/ent/entc/integration/privacy/ent/user"
|
|
"entgo.io/ent/schema/field"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// TaskCreate is the builder for creating a Task entity.
|
|
type TaskCreate struct {
|
|
config
|
|
mutation *TaskMutation
|
|
hooks []Hook
|
|
}
|
|
|
|
// SetTitle sets the "title" field.
|
|
func (tc *TaskCreate) SetTitle(s string) *TaskCreate {
|
|
tc.mutation.SetTitle(s)
|
|
return tc
|
|
}
|
|
|
|
// SetDescription sets the "description" field.
|
|
func (tc *TaskCreate) SetDescription(s string) *TaskCreate {
|
|
tc.mutation.SetDescription(s)
|
|
return tc
|
|
}
|
|
|
|
// SetNillableDescription sets the "description" field if the given value is not nil.
|
|
func (tc *TaskCreate) SetNillableDescription(s *string) *TaskCreate {
|
|
if s != nil {
|
|
tc.SetDescription(*s)
|
|
}
|
|
return tc
|
|
}
|
|
|
|
// SetStatus sets the "status" field.
|
|
func (tc *TaskCreate) SetStatus(t task.Status) *TaskCreate {
|
|
tc.mutation.SetStatus(t)
|
|
return tc
|
|
}
|
|
|
|
// SetNillableStatus sets the "status" field if the given value is not nil.
|
|
func (tc *TaskCreate) SetNillableStatus(t *task.Status) *TaskCreate {
|
|
if t != nil {
|
|
tc.SetStatus(*t)
|
|
}
|
|
return tc
|
|
}
|
|
|
|
// SetUUID sets the "uuid" field.
|
|
func (tc *TaskCreate) SetUUID(u uuid.UUID) *TaskCreate {
|
|
tc.mutation.SetUUID(u)
|
|
return tc
|
|
}
|
|
|
|
// AddTeamIDs adds the "teams" edge to the Team entity by IDs.
|
|
func (tc *TaskCreate) AddTeamIDs(ids ...int) *TaskCreate {
|
|
tc.mutation.AddTeamIDs(ids...)
|
|
return tc
|
|
}
|
|
|
|
// AddTeams adds the "teams" edges to the Team entity.
|
|
func (tc *TaskCreate) AddTeams(t ...*Team) *TaskCreate {
|
|
ids := make([]int, len(t))
|
|
for i := range t {
|
|
ids[i] = t[i].ID
|
|
}
|
|
return tc.AddTeamIDs(ids...)
|
|
}
|
|
|
|
// SetOwnerID sets the "owner" edge to the User entity by ID.
|
|
func (tc *TaskCreate) SetOwnerID(id int) *TaskCreate {
|
|
tc.mutation.SetOwnerID(id)
|
|
return tc
|
|
}
|
|
|
|
// SetNillableOwnerID sets the "owner" edge to the User entity by ID if the given value is not nil.
|
|
func (tc *TaskCreate) SetNillableOwnerID(id *int) *TaskCreate {
|
|
if id != nil {
|
|
tc = tc.SetOwnerID(*id)
|
|
}
|
|
return tc
|
|
}
|
|
|
|
// SetOwner sets the "owner" edge to the User entity.
|
|
func (tc *TaskCreate) SetOwner(u *User) *TaskCreate {
|
|
return tc.SetOwnerID(u.ID)
|
|
}
|
|
|
|
// Mutation returns the TaskMutation object of the builder.
|
|
func (tc *TaskCreate) Mutation() *TaskMutation {
|
|
return tc.mutation
|
|
}
|
|
|
|
// Save creates the Task in the database.
|
|
func (tc *TaskCreate) Save(ctx context.Context) (*Task, error) {
|
|
var (
|
|
err error
|
|
node *Task
|
|
)
|
|
if err := tc.defaults(); err != nil {
|
|
return nil, err
|
|
}
|
|
if len(tc.hooks) == 0 {
|
|
if err = tc.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
node, err = tc.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 = tc.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
tc.mutation = mutation
|
|
if node, err = tc.sqlSave(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
mutation.id = &node.ID
|
|
mutation.done = true
|
|
return node, err
|
|
})
|
|
for i := len(tc.hooks) - 1; i >= 0; i-- {
|
|
if tc.hooks[i] == nil {
|
|
return nil, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
|
|
}
|
|
mut = tc.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, tc.mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return node, err
|
|
}
|
|
|
|
// SaveX calls Save and panics if Save returns an error.
|
|
func (tc *TaskCreate) SaveX(ctx context.Context) *Task {
|
|
v, err := tc.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (tc *TaskCreate) Exec(ctx context.Context) error {
|
|
_, err := tc.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (tc *TaskCreate) ExecX(ctx context.Context) {
|
|
if err := tc.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// defaults sets the default values of the builder before save.
|
|
func (tc *TaskCreate) defaults() error {
|
|
if _, ok := tc.mutation.Status(); !ok {
|
|
v := task.DefaultStatus
|
|
tc.mutation.SetStatus(v)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// check runs all checks and user-defined validators on the builder.
|
|
func (tc *TaskCreate) check() error {
|
|
if _, ok := tc.mutation.Title(); !ok {
|
|
return &ValidationError{Name: "title", err: errors.New(`ent: missing required field "title"`)}
|
|
}
|
|
if v, ok := tc.mutation.Title(); ok {
|
|
if err := task.TitleValidator(v); err != nil {
|
|
return &ValidationError{Name: "title", err: fmt.Errorf(`ent: validator failed for field "title": %w`, err)}
|
|
}
|
|
}
|
|
if _, ok := tc.mutation.Status(); !ok {
|
|
return &ValidationError{Name: "status", err: errors.New(`ent: missing required field "status"`)}
|
|
}
|
|
if v, ok := tc.mutation.Status(); ok {
|
|
if err := task.StatusValidator(v); err != nil {
|
|
return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "status": %w`, err)}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (tc *TaskCreate) sqlSave(ctx context.Context) (*Task, error) {
|
|
_node, _spec := tc.createSpec()
|
|
if err := sqlgraph.CreateNode(ctx, tc.driver, _spec); err != nil {
|
|
if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{err.Error(), err}
|
|
}
|
|
return nil, err
|
|
}
|
|
id := _spec.ID.Value.(int64)
|
|
_node.ID = int(id)
|
|
return _node, nil
|
|
}
|
|
|
|
func (tc *TaskCreate) createSpec() (*Task, *sqlgraph.CreateSpec) {
|
|
var (
|
|
_node = &Task{config: tc.config}
|
|
_spec = &sqlgraph.CreateSpec{
|
|
Table: task.Table,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: task.FieldID,
|
|
},
|
|
}
|
|
)
|
|
if value, ok := tc.mutation.Title(); ok {
|
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: task.FieldTitle,
|
|
})
|
|
_node.Title = value
|
|
}
|
|
if value, ok := tc.mutation.Description(); ok {
|
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: task.FieldDescription,
|
|
})
|
|
_node.Description = value
|
|
}
|
|
if value, ok := tc.mutation.Status(); ok {
|
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
|
|
Type: field.TypeEnum,
|
|
Value: value,
|
|
Column: task.FieldStatus,
|
|
})
|
|
_node.Status = value
|
|
}
|
|
if value, ok := tc.mutation.UUID(); ok {
|
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
|
|
Type: field.TypeUUID,
|
|
Value: value,
|
|
Column: task.FieldUUID,
|
|
})
|
|
_node.UUID = value
|
|
}
|
|
if nodes := tc.mutation.TeamsIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: task.TeamsTable,
|
|
Columns: task.TeamsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: team.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges = append(_spec.Edges, edge)
|
|
}
|
|
if nodes := tc.mutation.OwnerIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: true,
|
|
Table: task.OwnerTable,
|
|
Columns: []string{task.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)
|
|
}
|
|
_node.user_tasks = &nodes[0]
|
|
_spec.Edges = append(_spec.Edges, edge)
|
|
}
|
|
return _node, _spec
|
|
}
|
|
|
|
// TaskCreateBulk is the builder for creating many Task entities in bulk.
|
|
type TaskCreateBulk struct {
|
|
config
|
|
builders []*TaskCreate
|
|
}
|
|
|
|
// Save creates the Task entities in the database.
|
|
func (tcb *TaskCreateBulk) Save(ctx context.Context) ([]*Task, error) {
|
|
specs := make([]*sqlgraph.CreateSpec, len(tcb.builders))
|
|
nodes := make([]*Task, len(tcb.builders))
|
|
mutators := make([]Mutator, len(tcb.builders))
|
|
for i := range tcb.builders {
|
|
func(i int, root context.Context) {
|
|
builder := tcb.builders[i]
|
|
builder.defaults()
|
|
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 := builder.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
builder.mutation = mutation
|
|
nodes[i], specs[i] = builder.createSpec()
|
|
var err error
|
|
if i < len(mutators)-1 {
|
|
_, err = mutators[i+1].Mutate(root, tcb.builders[i+1].mutation)
|
|
} else {
|
|
spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
|
|
// Invoke the actual operation on the latest mutation in the chain.
|
|
if err = sqlgraph.BatchCreate(ctx, tcb.driver, spec); err != nil {
|
|
if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{err.Error(), err}
|
|
}
|
|
}
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
mutation.id = &nodes[i].ID
|
|
mutation.done = true
|
|
if specs[i].ID.Value != nil {
|
|
id := specs[i].ID.Value.(int64)
|
|
nodes[i].ID = int(id)
|
|
}
|
|
return nodes[i], nil
|
|
})
|
|
for i := len(builder.hooks) - 1; i >= 0; i-- {
|
|
mut = builder.hooks[i](mut)
|
|
}
|
|
mutators[i] = mut
|
|
}(i, ctx)
|
|
}
|
|
if len(mutators) > 0 {
|
|
if _, err := mutators[0].Mutate(ctx, tcb.builders[0].mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (tcb *TaskCreateBulk) SaveX(ctx context.Context) []*Task {
|
|
v, err := tcb.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (tcb *TaskCreateBulk) Exec(ctx context.Context) error {
|
|
_, err := tcb.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (tcb *TaskCreateBulk) ExecX(ctx context.Context) {
|
|
if err := tcb.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|