mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
228 lines
5.9 KiB
Go
228 lines
5.9 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"
|
|
|
|
"github.com/facebook/ent/dialect/sql/sqlgraph"
|
|
"github.com/facebook/ent/entc/integration/ent/comment"
|
|
"github.com/facebook/ent/schema/field"
|
|
)
|
|
|
|
// CommentCreate is the builder for creating a Comment entity.
|
|
type CommentCreate struct {
|
|
config
|
|
mutation *CommentMutation
|
|
hooks []Hook
|
|
}
|
|
|
|
// SetUniqueInt sets the unique_int field.
|
|
func (cc *CommentCreate) SetUniqueInt(i int) *CommentCreate {
|
|
cc.mutation.SetUniqueInt(i)
|
|
return cc
|
|
}
|
|
|
|
// SetUniqueFloat sets the unique_float field.
|
|
func (cc *CommentCreate) SetUniqueFloat(f float64) *CommentCreate {
|
|
cc.mutation.SetUniqueFloat(f)
|
|
return cc
|
|
}
|
|
|
|
// SetNillableInt sets the nillable_int field.
|
|
func (cc *CommentCreate) SetNillableInt(i int) *CommentCreate {
|
|
cc.mutation.SetNillableInt(i)
|
|
return cc
|
|
}
|
|
|
|
// SetNillableNillableInt sets the nillable_int field if the given value is not nil.
|
|
func (cc *CommentCreate) SetNillableNillableInt(i *int) *CommentCreate {
|
|
if i != nil {
|
|
cc.SetNillableInt(*i)
|
|
}
|
|
return cc
|
|
}
|
|
|
|
// Mutation returns the CommentMutation object of the builder.
|
|
func (cc *CommentCreate) Mutation() *CommentMutation {
|
|
return cc.mutation
|
|
}
|
|
|
|
// Save creates the Comment in the database.
|
|
func (cc *CommentCreate) Save(ctx context.Context) (*Comment, error) {
|
|
var (
|
|
err error
|
|
node *Comment
|
|
)
|
|
if len(cc.hooks) == 0 {
|
|
if err = cc.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
node, err = cc.sqlSave(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*CommentMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
if err = cc.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
cc.mutation = mutation
|
|
node, err = cc.sqlSave(ctx)
|
|
mutation.done = true
|
|
return node, err
|
|
})
|
|
for i := len(cc.hooks) - 1; i >= 0; i-- {
|
|
mut = cc.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, cc.mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return node, err
|
|
}
|
|
|
|
// SaveX calls Save and panics if Save returns an error.
|
|
func (cc *CommentCreate) SaveX(ctx context.Context) *Comment {
|
|
v, err := cc.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// check runs all checks and user-defined validators on the builder.
|
|
func (cc *CommentCreate) check() error {
|
|
if _, ok := cc.mutation.UniqueInt(); !ok {
|
|
return &ValidationError{Name: "unique_int", err: errors.New("ent: missing required field \"unique_int\"")}
|
|
}
|
|
if _, ok := cc.mutation.UniqueFloat(); !ok {
|
|
return &ValidationError{Name: "unique_float", err: errors.New("ent: missing required field \"unique_float\"")}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (cc *CommentCreate) sqlSave(ctx context.Context) (*Comment, error) {
|
|
_node, _spec := cc.createSpec()
|
|
if err := sqlgraph.CreateNode(ctx, cc.driver, _spec); err != nil {
|
|
if cerr, ok := isSQLConstraintError(err); ok {
|
|
err = cerr
|
|
}
|
|
return nil, err
|
|
}
|
|
id := _spec.ID.Value.(int64)
|
|
_node.ID = int(id)
|
|
return _node, nil
|
|
}
|
|
|
|
func (cc *CommentCreate) createSpec() (*Comment, *sqlgraph.CreateSpec) {
|
|
var (
|
|
_node = &Comment{config: cc.config}
|
|
_spec = &sqlgraph.CreateSpec{
|
|
Table: comment.Table,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: comment.FieldID,
|
|
},
|
|
}
|
|
)
|
|
if value, ok := cc.mutation.UniqueInt(); ok {
|
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: comment.FieldUniqueInt,
|
|
})
|
|
_node.UniqueInt = value
|
|
}
|
|
if value, ok := cc.mutation.UniqueFloat(); ok {
|
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
|
|
Type: field.TypeFloat64,
|
|
Value: value,
|
|
Column: comment.FieldUniqueFloat,
|
|
})
|
|
_node.UniqueFloat = value
|
|
}
|
|
if value, ok := cc.mutation.NillableInt(); ok {
|
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: comment.FieldNillableInt,
|
|
})
|
|
_node.NillableInt = &value
|
|
}
|
|
return _node, _spec
|
|
}
|
|
|
|
// CommentCreateBulk is the builder for creating a bulk of Comment entities.
|
|
type CommentCreateBulk struct {
|
|
config
|
|
builders []*CommentCreate
|
|
}
|
|
|
|
// Save creates the Comment entities in the database.
|
|
func (ccb *CommentCreateBulk) Save(ctx context.Context) ([]*Comment, error) {
|
|
specs := make([]*sqlgraph.CreateSpec, len(ccb.builders))
|
|
nodes := make([]*Comment, len(ccb.builders))
|
|
mutators := make([]Mutator, len(ccb.builders))
|
|
for i := range ccb.builders {
|
|
func(i int, root context.Context) {
|
|
builder := ccb.builders[i]
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*CommentMutation)
|
|
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, ccb.builders[i+1].mutation)
|
|
} else {
|
|
// Invoke the actual operation on the latest mutation in the chain.
|
|
if err = sqlgraph.BatchCreate(ctx, ccb.driver, &sqlgraph.BatchCreateSpec{Nodes: specs}); err != nil {
|
|
if cerr, ok := isSQLConstraintError(err); ok {
|
|
err = cerr
|
|
}
|
|
}
|
|
}
|
|
mutation.done = true
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
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, ccb.builders[0].mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
// SaveX calls Save and panics if Save returns an error.
|
|
func (ccb *CommentCreateBulk) SaveX(ctx context.Context) []*Comment {
|
|
v, err := ccb.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|