mirror of
https://github.com/ent/ent.git
synced 2026-05-28 09:49:08 +03:00
596 lines
16 KiB
Go
596 lines
16 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"
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/entc/integration/customid/ent/account"
|
|
"entgo.io/ent/entc/integration/customid/ent/token"
|
|
"entgo.io/ent/entc/integration/customid/sid"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// AccountCreate is the builder for creating a Account entity.
|
|
type AccountCreate struct {
|
|
config
|
|
mutation *AccountMutation
|
|
hooks []Hook
|
|
conflict []sql.ConflictOption
|
|
}
|
|
|
|
// SetEmail sets the "email" field.
|
|
func (ac *AccountCreate) SetEmail(s string) *AccountCreate {
|
|
ac.mutation.SetEmail(s)
|
|
return ac
|
|
}
|
|
|
|
// SetID sets the "id" field.
|
|
func (ac *AccountCreate) SetID(s sid.ID) *AccountCreate {
|
|
ac.mutation.SetID(s)
|
|
return ac
|
|
}
|
|
|
|
// SetNillableID sets the "id" field if the given value is not nil.
|
|
func (ac *AccountCreate) SetNillableID(s *sid.ID) *AccountCreate {
|
|
if s != nil {
|
|
ac.SetID(*s)
|
|
}
|
|
return ac
|
|
}
|
|
|
|
// AddTokenIDs adds the "token" edge to the Token entity by IDs.
|
|
func (ac *AccountCreate) AddTokenIDs(ids ...sid.ID) *AccountCreate {
|
|
ac.mutation.AddTokenIDs(ids...)
|
|
return ac
|
|
}
|
|
|
|
// AddToken adds the "token" edges to the Token entity.
|
|
func (ac *AccountCreate) AddToken(t ...*Token) *AccountCreate {
|
|
ids := make([]sid.ID, len(t))
|
|
for i := range t {
|
|
ids[i] = t[i].ID
|
|
}
|
|
return ac.AddTokenIDs(ids...)
|
|
}
|
|
|
|
// Mutation returns the AccountMutation object of the builder.
|
|
func (ac *AccountCreate) Mutation() *AccountMutation {
|
|
return ac.mutation
|
|
}
|
|
|
|
// Save creates the Account in the database.
|
|
func (ac *AccountCreate) Save(ctx context.Context) (*Account, error) {
|
|
var (
|
|
err error
|
|
node *Account
|
|
)
|
|
ac.defaults()
|
|
if len(ac.hooks) == 0 {
|
|
if err = ac.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
node, err = ac.sqlSave(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*AccountMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
if err = ac.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
ac.mutation = mutation
|
|
if node, err = ac.sqlSave(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
mutation.id = &node.ID
|
|
mutation.done = true
|
|
return node, err
|
|
})
|
|
for i := len(ac.hooks) - 1; i >= 0; i-- {
|
|
if ac.hooks[i] == nil {
|
|
return nil, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
|
|
}
|
|
mut = ac.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, ac.mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return node, err
|
|
}
|
|
|
|
// SaveX calls Save and panics if Save returns an error.
|
|
func (ac *AccountCreate) SaveX(ctx context.Context) *Account {
|
|
v, err := ac.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (ac *AccountCreate) Exec(ctx context.Context) error {
|
|
_, err := ac.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (ac *AccountCreate) ExecX(ctx context.Context) {
|
|
if err := ac.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// defaults sets the default values of the builder before save.
|
|
func (ac *AccountCreate) defaults() {
|
|
if _, ok := ac.mutation.ID(); !ok {
|
|
v := account.DefaultID()
|
|
ac.mutation.SetID(v)
|
|
}
|
|
}
|
|
|
|
// check runs all checks and user-defined validators on the builder.
|
|
func (ac *AccountCreate) check() error {
|
|
if _, ok := ac.mutation.Email(); !ok {
|
|
return &ValidationError{Name: "email", err: errors.New(`ent: missing required field "Account.email"`)}
|
|
}
|
|
if v, ok := ac.mutation.Email(); ok {
|
|
if err := account.EmailValidator(v); err != nil {
|
|
return &ValidationError{Name: "email", err: fmt.Errorf(`ent: validator failed for field "Account.email": %w`, err)}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (ac *AccountCreate) sqlSave(ctx context.Context) (*Account, error) {
|
|
_node, _spec := ac.createSpec()
|
|
if err := sqlgraph.CreateNode(ctx, ac.driver, _spec); err != nil {
|
|
if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{err.Error(), err}
|
|
}
|
|
return nil, err
|
|
}
|
|
if _spec.ID.Value != nil {
|
|
if id, ok := _spec.ID.Value.(*sid.ID); ok {
|
|
_node.ID = *id
|
|
} else if err := _node.ID.Scan(_spec.ID.Value); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return _node, nil
|
|
}
|
|
|
|
func (ac *AccountCreate) createSpec() (*Account, *sqlgraph.CreateSpec) {
|
|
var (
|
|
_node = &Account{config: ac.config}
|
|
_spec = &sqlgraph.CreateSpec{
|
|
Table: account.Table,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeOther,
|
|
Column: account.FieldID,
|
|
},
|
|
}
|
|
)
|
|
_spec.OnConflict = ac.conflict
|
|
if id, ok := ac.mutation.ID(); ok {
|
|
_node.ID = id
|
|
_spec.ID.Value = &id
|
|
}
|
|
if value, ok := ac.mutation.Email(); ok {
|
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Value: value,
|
|
Column: account.FieldEmail,
|
|
})
|
|
_node.Email = value
|
|
}
|
|
if nodes := ac.mutation.TokenIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: account.TokenTable,
|
|
Columns: []string{account.TokenColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeOther,
|
|
Column: token.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges = append(_spec.Edges, edge)
|
|
}
|
|
return _node, _spec
|
|
}
|
|
|
|
// OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
|
|
// of the `INSERT` statement. For example:
|
|
//
|
|
// client.Account.Create().
|
|
// SetEmail(v).
|
|
// OnConflict(
|
|
// // Update the row with the new values
|
|
// // the was proposed for insertion.
|
|
// sql.ResolveWithNewValues(),
|
|
// ).
|
|
// // Override some of the fields with custom
|
|
// // update values.
|
|
// Update(func(u *ent.AccountUpsert) {
|
|
// SetEmail(v+v).
|
|
// }).
|
|
// Exec(ctx)
|
|
//
|
|
func (ac *AccountCreate) OnConflict(opts ...sql.ConflictOption) *AccountUpsertOne {
|
|
ac.conflict = opts
|
|
return &AccountUpsertOne{
|
|
create: ac,
|
|
}
|
|
}
|
|
|
|
// OnConflictColumns calls `OnConflict` and configures the columns
|
|
// as conflict target. Using this option is equivalent to using:
|
|
//
|
|
// client.Account.Create().
|
|
// OnConflict(sql.ConflictColumns(columns...)).
|
|
// Exec(ctx)
|
|
//
|
|
func (ac *AccountCreate) OnConflictColumns(columns ...string) *AccountUpsertOne {
|
|
ac.conflict = append(ac.conflict, sql.ConflictColumns(columns...))
|
|
return &AccountUpsertOne{
|
|
create: ac,
|
|
}
|
|
}
|
|
|
|
type (
|
|
// AccountUpsertOne is the builder for "upsert"-ing
|
|
// one Account node.
|
|
AccountUpsertOne struct {
|
|
create *AccountCreate
|
|
}
|
|
|
|
// AccountUpsert is the "OnConflict" setter.
|
|
AccountUpsert struct {
|
|
*sql.UpdateSet
|
|
}
|
|
)
|
|
|
|
// SetEmail sets the "email" field.
|
|
func (u *AccountUpsert) SetEmail(v string) *AccountUpsert {
|
|
u.Set(account.FieldEmail, v)
|
|
return u
|
|
}
|
|
|
|
// UpdateEmail sets the "email" field to the value that was provided on create.
|
|
func (u *AccountUpsert) UpdateEmail() *AccountUpsert {
|
|
u.SetExcluded(account.FieldEmail)
|
|
return u
|
|
}
|
|
|
|
// UpdateNewValues updates the mutable fields using the new values that were set on create except the ID field.
|
|
// Using this option is equivalent to using:
|
|
//
|
|
// client.Account.Create().
|
|
// OnConflict(
|
|
// sql.ResolveWithNewValues(),
|
|
// sql.ResolveWith(func(u *sql.UpdateSet) {
|
|
// u.SetIgnore(account.FieldID)
|
|
// }),
|
|
// ).
|
|
// Exec(ctx)
|
|
//
|
|
func (u *AccountUpsertOne) UpdateNewValues() *AccountUpsertOne {
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
|
|
if _, exists := u.create.mutation.ID(); exists {
|
|
s.SetIgnore(account.FieldID)
|
|
}
|
|
}))
|
|
return u
|
|
}
|
|
|
|
// Ignore sets each column to itself in case of conflict.
|
|
// Using this option is equivalent to using:
|
|
//
|
|
// client.Account.Create().
|
|
// OnConflict(sql.ResolveWithIgnore()).
|
|
// Exec(ctx)
|
|
//
|
|
func (u *AccountUpsertOne) Ignore() *AccountUpsertOne {
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
|
|
return u
|
|
}
|
|
|
|
// DoNothing configures the conflict_action to `DO NOTHING`.
|
|
// Supported only by SQLite and PostgreSQL.
|
|
func (u *AccountUpsertOne) DoNothing() *AccountUpsertOne {
|
|
u.create.conflict = append(u.create.conflict, sql.DoNothing())
|
|
return u
|
|
}
|
|
|
|
// Update allows overriding fields `UPDATE` values. See the AccountCreate.OnConflict
|
|
// documentation for more info.
|
|
func (u *AccountUpsertOne) Update(set func(*AccountUpsert)) *AccountUpsertOne {
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
|
|
set(&AccountUpsert{UpdateSet: update})
|
|
}))
|
|
return u
|
|
}
|
|
|
|
// SetEmail sets the "email" field.
|
|
func (u *AccountUpsertOne) SetEmail(v string) *AccountUpsertOne {
|
|
return u.Update(func(s *AccountUpsert) {
|
|
s.SetEmail(v)
|
|
})
|
|
}
|
|
|
|
// UpdateEmail sets the "email" field to the value that was provided on create.
|
|
func (u *AccountUpsertOne) UpdateEmail() *AccountUpsertOne {
|
|
return u.Update(func(s *AccountUpsert) {
|
|
s.UpdateEmail()
|
|
})
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (u *AccountUpsertOne) Exec(ctx context.Context) error {
|
|
if len(u.create.conflict) == 0 {
|
|
return errors.New("ent: missing options for AccountCreate.OnConflict")
|
|
}
|
|
return u.create.Exec(ctx)
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (u *AccountUpsertOne) ExecX(ctx context.Context) {
|
|
if err := u.create.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// Exec executes the UPSERT query and returns the inserted/updated ID.
|
|
func (u *AccountUpsertOne) ID(ctx context.Context) (id sid.ID, err error) {
|
|
if u.create.driver.Dialect() == dialect.MySQL {
|
|
// In case of "ON CONFLICT", there is no way to get back non-numeric ID
|
|
// fields from the database since MySQL does not support the RETURNING clause.
|
|
return id, errors.New("ent: AccountUpsertOne.ID is not supported by MySQL driver. Use AccountUpsertOne.Exec instead")
|
|
}
|
|
node, err := u.create.Save(ctx)
|
|
if err != nil {
|
|
return id, err
|
|
}
|
|
return node.ID, nil
|
|
}
|
|
|
|
// IDX is like ID, but panics if an error occurs.
|
|
func (u *AccountUpsertOne) IDX(ctx context.Context) sid.ID {
|
|
id, err := u.ID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// AccountCreateBulk is the builder for creating many Account entities in bulk.
|
|
type AccountCreateBulk struct {
|
|
config
|
|
builders []*AccountCreate
|
|
conflict []sql.ConflictOption
|
|
}
|
|
|
|
// Save creates the Account entities in the database.
|
|
func (acb *AccountCreateBulk) Save(ctx context.Context) ([]*Account, error) {
|
|
specs := make([]*sqlgraph.CreateSpec, len(acb.builders))
|
|
nodes := make([]*Account, len(acb.builders))
|
|
mutators := make([]Mutator, len(acb.builders))
|
|
for i := range acb.builders {
|
|
func(i int, root context.Context) {
|
|
builder := acb.builders[i]
|
|
builder.defaults()
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*AccountMutation)
|
|
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, acb.builders[i+1].mutation)
|
|
} else {
|
|
spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
|
|
spec.OnConflict = acb.conflict
|
|
// Invoke the actual operation on the latest mutation in the chain.
|
|
if err = sqlgraph.BatchCreate(ctx, acb.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
|
|
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, acb.builders[0].mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (acb *AccountCreateBulk) SaveX(ctx context.Context) []*Account {
|
|
v, err := acb.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (acb *AccountCreateBulk) Exec(ctx context.Context) error {
|
|
_, err := acb.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (acb *AccountCreateBulk) ExecX(ctx context.Context) {
|
|
if err := acb.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
|
|
// of the `INSERT` statement. For example:
|
|
//
|
|
// client.Account.CreateBulk(builders...).
|
|
// OnConflict(
|
|
// // Update the row with the new values
|
|
// // the was proposed for insertion.
|
|
// sql.ResolveWithNewValues(),
|
|
// ).
|
|
// // Override some of the fields with custom
|
|
// // update values.
|
|
// Update(func(u *ent.AccountUpsert) {
|
|
// SetEmail(v+v).
|
|
// }).
|
|
// Exec(ctx)
|
|
//
|
|
func (acb *AccountCreateBulk) OnConflict(opts ...sql.ConflictOption) *AccountUpsertBulk {
|
|
acb.conflict = opts
|
|
return &AccountUpsertBulk{
|
|
create: acb,
|
|
}
|
|
}
|
|
|
|
// OnConflictColumns calls `OnConflict` and configures the columns
|
|
// as conflict target. Using this option is equivalent to using:
|
|
//
|
|
// client.Account.Create().
|
|
// OnConflict(sql.ConflictColumns(columns...)).
|
|
// Exec(ctx)
|
|
//
|
|
func (acb *AccountCreateBulk) OnConflictColumns(columns ...string) *AccountUpsertBulk {
|
|
acb.conflict = append(acb.conflict, sql.ConflictColumns(columns...))
|
|
return &AccountUpsertBulk{
|
|
create: acb,
|
|
}
|
|
}
|
|
|
|
// AccountUpsertBulk is the builder for "upsert"-ing
|
|
// a bulk of Account nodes.
|
|
type AccountUpsertBulk struct {
|
|
create *AccountCreateBulk
|
|
}
|
|
|
|
// UpdateNewValues updates the mutable fields using the new values that
|
|
// were set on create. Using this option is equivalent to using:
|
|
//
|
|
// client.Account.Create().
|
|
// OnConflict(
|
|
// sql.ResolveWithNewValues(),
|
|
// sql.ResolveWith(func(u *sql.UpdateSet) {
|
|
// u.SetIgnore(account.FieldID)
|
|
// }),
|
|
// ).
|
|
// Exec(ctx)
|
|
//
|
|
func (u *AccountUpsertBulk) UpdateNewValues() *AccountUpsertBulk {
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
|
|
for _, b := range u.create.builders {
|
|
if _, exists := b.mutation.ID(); exists {
|
|
s.SetIgnore(account.FieldID)
|
|
return
|
|
}
|
|
}
|
|
}))
|
|
return u
|
|
}
|
|
|
|
// Ignore sets each column to itself in case of conflict.
|
|
// Using this option is equivalent to using:
|
|
//
|
|
// client.Account.Create().
|
|
// OnConflict(sql.ResolveWithIgnore()).
|
|
// Exec(ctx)
|
|
//
|
|
func (u *AccountUpsertBulk) Ignore() *AccountUpsertBulk {
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
|
|
return u
|
|
}
|
|
|
|
// DoNothing configures the conflict_action to `DO NOTHING`.
|
|
// Supported only by SQLite and PostgreSQL.
|
|
func (u *AccountUpsertBulk) DoNothing() *AccountUpsertBulk {
|
|
u.create.conflict = append(u.create.conflict, sql.DoNothing())
|
|
return u
|
|
}
|
|
|
|
// Update allows overriding fields `UPDATE` values. See the AccountCreateBulk.OnConflict
|
|
// documentation for more info.
|
|
func (u *AccountUpsertBulk) Update(set func(*AccountUpsert)) *AccountUpsertBulk {
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
|
|
set(&AccountUpsert{UpdateSet: update})
|
|
}))
|
|
return u
|
|
}
|
|
|
|
// SetEmail sets the "email" field.
|
|
func (u *AccountUpsertBulk) SetEmail(v string) *AccountUpsertBulk {
|
|
return u.Update(func(s *AccountUpsert) {
|
|
s.SetEmail(v)
|
|
})
|
|
}
|
|
|
|
// UpdateEmail sets the "email" field to the value that was provided on create.
|
|
func (u *AccountUpsertBulk) UpdateEmail() *AccountUpsertBulk {
|
|
return u.Update(func(s *AccountUpsert) {
|
|
s.UpdateEmail()
|
|
})
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (u *AccountUpsertBulk) Exec(ctx context.Context) error {
|
|
for i, b := range u.create.builders {
|
|
if len(b.conflict) != 0 {
|
|
return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the AccountCreateBulk instead", i)
|
|
}
|
|
}
|
|
if len(u.create.conflict) == 0 {
|
|
return errors.New("ent: missing options for AccountCreateBulk.OnConflict")
|
|
}
|
|
return u.create.Exec(ctx)
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (u *AccountUpsertBulk) ExecX(ctx context.Context) {
|
|
if err := u.create.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|