mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
194 lines
4.9 KiB
Go
194 lines
4.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"
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/examples/privacytenant/ent/tenant"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// TenantCreate is the builder for creating a Tenant entity.
|
|
type TenantCreate struct {
|
|
config
|
|
mutation *TenantMutation
|
|
hooks []Hook
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (tc *TenantCreate) SetName(s string) *TenantCreate {
|
|
tc.mutation.SetName(s)
|
|
return tc
|
|
}
|
|
|
|
// Mutation returns the TenantMutation object of the builder.
|
|
func (tc *TenantCreate) Mutation() *TenantMutation {
|
|
return tc.mutation
|
|
}
|
|
|
|
// Save creates the Tenant in the database.
|
|
func (tc *TenantCreate) Save(ctx context.Context) (*Tenant, error) {
|
|
var (
|
|
err error
|
|
node *Tenant
|
|
)
|
|
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.(*TenantMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
if err = tc.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
tc.mutation = mutation
|
|
node, err = tc.sqlSave(ctx)
|
|
mutation.done = true
|
|
return node, err
|
|
})
|
|
for i := len(tc.hooks) - 1; i >= 0; i-- {
|
|
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 *TenantCreate) SaveX(ctx context.Context) *Tenant {
|
|
v, err := tc.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// check runs all checks and user-defined validators on the builder.
|
|
func (tc *TenantCreate) check() error {
|
|
if _, ok := tc.mutation.Name(); !ok {
|
|
return &ValidationError{Name: "name", err: errors.New("ent: missing required field \"name\"")}
|
|
}
|
|
if v, ok := tc.mutation.Name(); ok {
|
|
if err := tenant.NameValidator(v); err != nil {
|
|
return &ValidationError{Name: "name", err: fmt.Errorf("ent: validator failed for field \"name\": %w", err)}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (tc *TenantCreate) sqlSave(ctx context.Context) (*Tenant, error) {
|
|
_node, _spec := tc.createSpec()
|
|
if err := sqlgraph.CreateNode(ctx, tc.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 (tc *TenantCreate) createSpec() (*Tenant, *sqlgraph.CreateSpec) {
|
|
var (
|
|
_node = &Tenant{config: tc.config}
|
|
_spec = &sqlgraph.CreateSpec{
|
|
Table: tenant.Table,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: tenant.FieldID,
|
|
},
|
|
}
|
|
)
|
|
if value, ok := tc.mutation.Name(); ok {
|
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: tenant.FieldName,
|
|
})
|
|
_node.Name = value
|
|
}
|
|
return _node, _spec
|
|
}
|
|
|
|
// TenantCreateBulk is the builder for creating many Tenant entities in bulk.
|
|
type TenantCreateBulk struct {
|
|
config
|
|
builders []*TenantCreate
|
|
}
|
|
|
|
// Save creates the Tenant entities in the database.
|
|
func (tcb *TenantCreateBulk) Save(ctx context.Context) ([]*Tenant, error) {
|
|
specs := make([]*sqlgraph.CreateSpec, len(tcb.builders))
|
|
nodes := make([]*Tenant, len(tcb.builders))
|
|
mutators := make([]Mutator, len(tcb.builders))
|
|
for i := range tcb.builders {
|
|
func(i int, root context.Context) {
|
|
builder := tcb.builders[i]
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*TenantMutation)
|
|
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 {
|
|
// Invoke the actual operation on the latest mutation in the chain.
|
|
if err = sqlgraph.BatchCreate(ctx, tcb.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, tcb.builders[0].mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (tcb *TenantCreateBulk) SaveX(ctx context.Context) []*Tenant {
|
|
v, err := tcb.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|