1 Star 0 Fork 0

DaMeng/Ent

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
friendship_create.go 8.69 KB
一键复制 编辑 原始数据 按行查看 历史
eric 提交于 2024-10-24 16:04 . :tada:fork ent
// 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 versioned
import (
"context"
"errors"
"fmt"
"time"
"gitee.com/damengde/ent/dialect/sql/sqlgraph"
"gitee.com/damengde/ent/entc/integration/multischema/versioned/friendship"
"gitee.com/damengde/ent/entc/integration/multischema/versioned/user"
"gitee.com/damengde/ent/schema/field"
)
// FriendshipCreate is the builder for creating a Friendship entity.
type FriendshipCreate struct {
config
mutation *FriendshipMutation
hooks []Hook
}
// SetWeight sets the "weight" field.
func (fc *FriendshipCreate) SetWeight(i int) *FriendshipCreate {
fc.mutation.SetWeight(i)
return fc
}
// SetNillableWeight sets the "weight" field if the given value is not nil.
func (fc *FriendshipCreate) SetNillableWeight(i *int) *FriendshipCreate {
if i != nil {
fc.SetWeight(*i)
}
return fc
}
// SetCreatedAt sets the "created_at" field.
func (fc *FriendshipCreate) SetCreatedAt(t time.Time) *FriendshipCreate {
fc.mutation.SetCreatedAt(t)
return fc
}
// SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
func (fc *FriendshipCreate) SetNillableCreatedAt(t *time.Time) *FriendshipCreate {
if t != nil {
fc.SetCreatedAt(*t)
}
return fc
}
// SetUserID sets the "user_id" field.
func (fc *FriendshipCreate) SetUserID(i int) *FriendshipCreate {
fc.mutation.SetUserID(i)
return fc
}
// SetFriendID sets the "friend_id" field.
func (fc *FriendshipCreate) SetFriendID(i int) *FriendshipCreate {
fc.mutation.SetFriendID(i)
return fc
}
// SetUser sets the "user" edge to the User entity.
func (fc *FriendshipCreate) SetUser(u *User) *FriendshipCreate {
return fc.SetUserID(u.ID)
}
// SetFriend sets the "friend" edge to the User entity.
func (fc *FriendshipCreate) SetFriend(u *User) *FriendshipCreate {
return fc.SetFriendID(u.ID)
}
// Mutation returns the FriendshipMutation object of the builder.
func (fc *FriendshipCreate) Mutation() *FriendshipMutation {
return fc.mutation
}
// Save creates the Friendship in the database.
func (fc *FriendshipCreate) Save(ctx context.Context) (*Friendship, error) {
fc.defaults()
return withHooks(ctx, fc.sqlSave, fc.mutation, fc.hooks)
}
// SaveX calls Save and panics if Save returns an error.
func (fc *FriendshipCreate) SaveX(ctx context.Context) *Friendship {
v, err := fc.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (fc *FriendshipCreate) Exec(ctx context.Context) error {
_, err := fc.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (fc *FriendshipCreate) ExecX(ctx context.Context) {
if err := fc.Exec(ctx); err != nil {
panic(err)
}
}
// defaults sets the default values of the builder before save.
func (fc *FriendshipCreate) defaults() {
if _, ok := fc.mutation.Weight(); !ok {
v := friendship.DefaultWeight
fc.mutation.SetWeight(v)
}
if _, ok := fc.mutation.CreatedAt(); !ok {
v := friendship.DefaultCreatedAt()
fc.mutation.SetCreatedAt(v)
}
}
// check runs all checks and user-defined validators on the builder.
func (fc *FriendshipCreate) check() error {
if _, ok := fc.mutation.Weight(); !ok {
return &ValidationError{Name: "weight", err: errors.New(`versioned: missing required field "Friendship.weight"`)}
}
if _, ok := fc.mutation.CreatedAt(); !ok {
return &ValidationError{Name: "created_at", err: errors.New(`versioned: missing required field "Friendship.created_at"`)}
}
if _, ok := fc.mutation.UserID(); !ok {
return &ValidationError{Name: "user_id", err: errors.New(`versioned: missing required field "Friendship.user_id"`)}
}
if _, ok := fc.mutation.FriendID(); !ok {
return &ValidationError{Name: "friend_id", err: errors.New(`versioned: missing required field "Friendship.friend_id"`)}
}
if _, ok := fc.mutation.UserID(); !ok {
return &ValidationError{Name: "user", err: errors.New(`versioned: missing required edge "Friendship.user"`)}
}
if _, ok := fc.mutation.FriendID(); !ok {
return &ValidationError{Name: "friend", err: errors.New(`versioned: missing required edge "Friendship.friend"`)}
}
return nil
}
func (fc *FriendshipCreate) sqlSave(ctx context.Context) (*Friendship, error) {
if err := fc.check(); err != nil {
return nil, err
}
_node, _spec := fc.createSpec()
if err := sqlgraph.CreateNode(ctx, fc.driver, _spec); err != nil {
if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
return nil, err
}
id := _spec.ID.Value.(int64)
_node.ID = int(id)
fc.mutation.id = &_node.ID
fc.mutation.done = true
return _node, nil
}
func (fc *FriendshipCreate) createSpec() (*Friendship, *sqlgraph.CreateSpec) {
var (
_node = &Friendship{config: fc.config}
_spec = sqlgraph.NewCreateSpec(friendship.Table, sqlgraph.NewFieldSpec(friendship.FieldID, field.TypeInt))
)
_spec.Schema = fc.schemaConfig.Friendship
if value, ok := fc.mutation.Weight(); ok {
_spec.SetField(friendship.FieldWeight, field.TypeInt, value)
_node.Weight = value
}
if value, ok := fc.mutation.CreatedAt(); ok {
_spec.SetField(friendship.FieldCreatedAt, field.TypeTime, value)
_node.CreatedAt = value
}
if nodes := fc.mutation.UserIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: false,
Table: friendship.UserTable,
Columns: []string{friendship.UserColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
},
}
edge.Schema = fc.schemaConfig.Friendship
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_node.UserID = nodes[0]
_spec.Edges = append(_spec.Edges, edge)
}
if nodes := fc.mutation.FriendIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: false,
Table: friendship.FriendTable,
Columns: []string{friendship.FriendColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
},
}
edge.Schema = fc.schemaConfig.Friendship
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_node.FriendID = nodes[0]
_spec.Edges = append(_spec.Edges, edge)
}
return _node, _spec
}
// FriendshipCreateBulk is the builder for creating many Friendship entities in bulk.
type FriendshipCreateBulk struct {
config
err error
builders []*FriendshipCreate
}
// Save creates the Friendship entities in the database.
func (fcb *FriendshipCreateBulk) Save(ctx context.Context) ([]*Friendship, error) {
if fcb.err != nil {
return nil, fcb.err
}
specs := make([]*sqlgraph.CreateSpec, len(fcb.builders))
nodes := make([]*Friendship, len(fcb.builders))
mutators := make([]Mutator, len(fcb.builders))
for i := range fcb.builders {
func(i int, root context.Context) {
builder := fcb.builders[i]
builder.defaults()
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
mutation, ok := m.(*FriendshipMutation)
if !ok {
return nil, fmt.Errorf("unexpected mutation type %T", m)
}
if err := builder.check(); err != nil {
return nil, err
}
builder.mutation = mutation
var err error
nodes[i], specs[i] = builder.createSpec()
if i < len(mutators)-1 {
_, err = mutators[i+1].Mutate(root, fcb.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, fcb.driver, spec); err != nil {
if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
}
}
if err != nil {
return nil, err
}
mutation.id = &nodes[i].ID
if specs[i].ID.Value != nil {
id := specs[i].ID.Value.(int64)
nodes[i].ID = int(id)
}
mutation.done = true
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, fcb.builders[0].mutation); err != nil {
return nil, err
}
}
return nodes, nil
}
// SaveX is like Save, but panics if an error occurs.
func (fcb *FriendshipCreateBulk) SaveX(ctx context.Context) []*Friendship {
v, err := fcb.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (fcb *FriendshipCreateBulk) Exec(ctx context.Context) error {
_, err := fcb.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (fcb *FriendshipCreateBulk) ExecX(ctx context.Context) {
if err := fcb.Exec(ctx); err != nil {
panic(err)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/damengde/ent.git
git@gitee.com:damengde/ent.git
damengde
ent
Ent
90870c5ba095

搜索帮助