Files
juwan-backend/app/shop/rpc/internal/models/shopinvitations_create.go
T
2026-02-28 05:33:16 +08:00

302 lines
8.8 KiB
Go

// Code generated by ent, DO NOT EDIT.
package models
import (
"context"
"errors"
"fmt"
"juwan-backend/app/shop/rpc/internal/models/shopinvitations"
"time"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
)
// ShopInvitationsCreate is the builder for creating a ShopInvitations entity.
type ShopInvitationsCreate struct {
config
mutation *ShopInvitationsMutation
hooks []Hook
}
// SetShopID sets the "shop_id" field.
func (_c *ShopInvitationsCreate) SetShopID(v int64) *ShopInvitationsCreate {
_c.mutation.SetShopID(v)
return _c
}
// SetPlayerID sets the "player_id" field.
func (_c *ShopInvitationsCreate) SetPlayerID(v int64) *ShopInvitationsCreate {
_c.mutation.SetPlayerID(v)
return _c
}
// SetStatus sets the "status" field.
func (_c *ShopInvitationsCreate) SetStatus(v string) *ShopInvitationsCreate {
_c.mutation.SetStatus(v)
return _c
}
// SetNillableStatus sets the "status" field if the given value is not nil.
func (_c *ShopInvitationsCreate) SetNillableStatus(v *string) *ShopInvitationsCreate {
if v != nil {
_c.SetStatus(*v)
}
return _c
}
// SetInvitedBy sets the "invited_by" field.
func (_c *ShopInvitationsCreate) SetInvitedBy(v int64) *ShopInvitationsCreate {
_c.mutation.SetInvitedBy(v)
return _c
}
// SetCreatedAt sets the "created_at" field.
func (_c *ShopInvitationsCreate) SetCreatedAt(v time.Time) *ShopInvitationsCreate {
_c.mutation.SetCreatedAt(v)
return _c
}
// SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
func (_c *ShopInvitationsCreate) SetNillableCreatedAt(v *time.Time) *ShopInvitationsCreate {
if v != nil {
_c.SetCreatedAt(*v)
}
return _c
}
// SetRespondedAt sets the "responded_at" field.
func (_c *ShopInvitationsCreate) SetRespondedAt(v time.Time) *ShopInvitationsCreate {
_c.mutation.SetRespondedAt(v)
return _c
}
// SetNillableRespondedAt sets the "responded_at" field if the given value is not nil.
func (_c *ShopInvitationsCreate) SetNillableRespondedAt(v *time.Time) *ShopInvitationsCreate {
if v != nil {
_c.SetRespondedAt(*v)
}
return _c
}
// SetID sets the "id" field.
func (_c *ShopInvitationsCreate) SetID(v int64) *ShopInvitationsCreate {
_c.mutation.SetID(v)
return _c
}
// Mutation returns the ShopInvitationsMutation object of the builder.
func (_c *ShopInvitationsCreate) Mutation() *ShopInvitationsMutation {
return _c.mutation
}
// Save creates the ShopInvitations in the database.
func (_c *ShopInvitationsCreate) Save(ctx context.Context) (*ShopInvitations, error) {
_c.defaults()
return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks)
}
// SaveX calls Save and panics if Save returns an error.
func (_c *ShopInvitationsCreate) SaveX(ctx context.Context) *ShopInvitations {
v, err := _c.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (_c *ShopInvitationsCreate) Exec(ctx context.Context) error {
_, err := _c.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (_c *ShopInvitationsCreate) ExecX(ctx context.Context) {
if err := _c.Exec(ctx); err != nil {
panic(err)
}
}
// defaults sets the default values of the builder before save.
func (_c *ShopInvitationsCreate) defaults() {
if _, ok := _c.mutation.Status(); !ok {
v := shopinvitations.DefaultStatus
_c.mutation.SetStatus(v)
}
if _, ok := _c.mutation.CreatedAt(); !ok {
v := shopinvitations.DefaultCreatedAt()
_c.mutation.SetCreatedAt(v)
}
}
// check runs all checks and user-defined validators on the builder.
func (_c *ShopInvitationsCreate) check() error {
if _, ok := _c.mutation.ShopID(); !ok {
return &ValidationError{Name: "shop_id", err: errors.New(`models: missing required field "ShopInvitations.shop_id"`)}
}
if _, ok := _c.mutation.PlayerID(); !ok {
return &ValidationError{Name: "player_id", err: errors.New(`models: missing required field "ShopInvitations.player_id"`)}
}
if _, ok := _c.mutation.Status(); !ok {
return &ValidationError{Name: "status", err: errors.New(`models: missing required field "ShopInvitations.status"`)}
}
if v, ok := _c.mutation.Status(); ok {
if err := shopinvitations.StatusValidator(v); err != nil {
return &ValidationError{Name: "status", err: fmt.Errorf(`models: validator failed for field "ShopInvitations.status": %w`, err)}
}
}
if _, ok := _c.mutation.InvitedBy(); !ok {
return &ValidationError{Name: "invited_by", err: errors.New(`models: missing required field "ShopInvitations.invited_by"`)}
}
if _, ok := _c.mutation.CreatedAt(); !ok {
return &ValidationError{Name: "created_at", err: errors.New(`models: missing required field "ShopInvitations.created_at"`)}
}
return nil
}
func (_c *ShopInvitationsCreate) sqlSave(ctx context.Context) (*ShopInvitations, error) {
if err := _c.check(); err != nil {
return nil, err
}
_node, _spec := _c.createSpec()
if err := sqlgraph.CreateNode(ctx, _c.driver, _spec); err != nil {
if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
return nil, err
}
if _spec.ID.Value != _node.ID {
id := _spec.ID.Value.(int64)
_node.ID = int64(id)
}
_c.mutation.id = &_node.ID
_c.mutation.done = true
return _node, nil
}
func (_c *ShopInvitationsCreate) createSpec() (*ShopInvitations, *sqlgraph.CreateSpec) {
var (
_node = &ShopInvitations{config: _c.config}
_spec = sqlgraph.NewCreateSpec(shopinvitations.Table, sqlgraph.NewFieldSpec(shopinvitations.FieldID, field.TypeInt64))
)
if id, ok := _c.mutation.ID(); ok {
_node.ID = id
_spec.ID.Value = id
}
if value, ok := _c.mutation.ShopID(); ok {
_spec.SetField(shopinvitations.FieldShopID, field.TypeInt64, value)
_node.ShopID = value
}
if value, ok := _c.mutation.PlayerID(); ok {
_spec.SetField(shopinvitations.FieldPlayerID, field.TypeInt64, value)
_node.PlayerID = value
}
if value, ok := _c.mutation.Status(); ok {
_spec.SetField(shopinvitations.FieldStatus, field.TypeString, value)
_node.Status = value
}
if value, ok := _c.mutation.InvitedBy(); ok {
_spec.SetField(shopinvitations.FieldInvitedBy, field.TypeInt64, value)
_node.InvitedBy = value
}
if value, ok := _c.mutation.CreatedAt(); ok {
_spec.SetField(shopinvitations.FieldCreatedAt, field.TypeTime, value)
_node.CreatedAt = value
}
if value, ok := _c.mutation.RespondedAt(); ok {
_spec.SetField(shopinvitations.FieldRespondedAt, field.TypeTime, value)
_node.RespondedAt = &value
}
return _node, _spec
}
// ShopInvitationsCreateBulk is the builder for creating many ShopInvitations entities in bulk.
type ShopInvitationsCreateBulk struct {
config
err error
builders []*ShopInvitationsCreate
}
// Save creates the ShopInvitations entities in the database.
func (_c *ShopInvitationsCreateBulk) Save(ctx context.Context) ([]*ShopInvitations, error) {
if _c.err != nil {
return nil, _c.err
}
specs := make([]*sqlgraph.CreateSpec, len(_c.builders))
nodes := make([]*ShopInvitations, len(_c.builders))
mutators := make([]Mutator, len(_c.builders))
for i := range _c.builders {
func(i int, root context.Context) {
builder := _c.builders[i]
builder.defaults()
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
mutation, ok := m.(*ShopInvitationsMutation)
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, _c.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, _c.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 && nodes[i].ID == 0 {
id := specs[i].ID.Value.(int64)
nodes[i].ID = int64(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, _c.builders[0].mutation); err != nil {
return nil, err
}
}
return nodes, nil
}
// SaveX is like Save, but panics if an error occurs.
func (_c *ShopInvitationsCreateBulk) SaveX(ctx context.Context) []*ShopInvitations {
v, err := _c.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (_c *ShopInvitationsCreateBulk) Exec(ctx context.Context) error {
_, err := _c.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (_c *ShopInvitationsCreateBulk) ExecX(ctx context.Context) {
if err := _c.Exec(ctx); err != nil {
panic(err)
}
}