112 lines
2.6 KiB
Go
112 lines
2.6 KiB
Go
|
// Code generated by entc, DO NOT EDIT.
|
||
|
|
||
|
package ent
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
|
||
|
"code.icod.de/postfix/manager/ent/mailbox"
|
||
|
"code.icod.de/postfix/manager/ent/predicate"
|
||
|
"entgo.io/ent/dialect/sql"
|
||
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
||
|
"entgo.io/ent/schema/field"
|
||
|
)
|
||
|
|
||
|
// MailboxDelete is the builder for deleting a Mailbox entity.
|
||
|
type MailboxDelete struct {
|
||
|
config
|
||
|
hooks []Hook
|
||
|
mutation *MailboxMutation
|
||
|
}
|
||
|
|
||
|
// Where appends a list predicates to the MailboxDelete builder.
|
||
|
func (md *MailboxDelete) Where(ps ...predicate.Mailbox) *MailboxDelete {
|
||
|
md.mutation.Where(ps...)
|
||
|
return md
|
||
|
}
|
||
|
|
||
|
// Exec executes the deletion query and returns how many vertices were deleted.
|
||
|
func (md *MailboxDelete) Exec(ctx context.Context) (int, error) {
|
||
|
var (
|
||
|
err error
|
||
|
affected int
|
||
|
)
|
||
|
if len(md.hooks) == 0 {
|
||
|
affected, err = md.sqlExec(ctx)
|
||
|
} else {
|
||
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
||
|
mutation, ok := m.(*MailboxMutation)
|
||
|
if !ok {
|
||
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
||
|
}
|
||
|
md.mutation = mutation
|
||
|
affected, err = md.sqlExec(ctx)
|
||
|
mutation.done = true
|
||
|
return affected, err
|
||
|
})
|
||
|
for i := len(md.hooks) - 1; i >= 0; i-- {
|
||
|
if md.hooks[i] == nil {
|
||
|
return 0, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
|
||
|
}
|
||
|
mut = md.hooks[i](mut)
|
||
|
}
|
||
|
if _, err := mut.Mutate(ctx, md.mutation); err != nil {
|
||
|
return 0, err
|
||
|
}
|
||
|
}
|
||
|
return affected, err
|
||
|
}
|
||
|
|
||
|
// ExecX is like Exec, but panics if an error occurs.
|
||
|
func (md *MailboxDelete) ExecX(ctx context.Context) int {
|
||
|
n, err := md.Exec(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return n
|
||
|
}
|
||
|
|
||
|
func (md *MailboxDelete) sqlExec(ctx context.Context) (int, error) {
|
||
|
_spec := &sqlgraph.DeleteSpec{
|
||
|
Node: &sqlgraph.NodeSpec{
|
||
|
Table: mailbox.Table,
|
||
|
ID: &sqlgraph.FieldSpec{
|
||
|
Type: field.TypeInt64,
|
||
|
Column: mailbox.FieldID,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
if ps := md.mutation.predicates; len(ps) > 0 {
|
||
|
_spec.Predicate = func(selector *sql.Selector) {
|
||
|
for i := range ps {
|
||
|
ps[i](selector)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return sqlgraph.DeleteNodes(ctx, md.driver, _spec)
|
||
|
}
|
||
|
|
||
|
// MailboxDeleteOne is the builder for deleting a single Mailbox entity.
|
||
|
type MailboxDeleteOne struct {
|
||
|
md *MailboxDelete
|
||
|
}
|
||
|
|
||
|
// Exec executes the deletion query.
|
||
|
func (mdo *MailboxDeleteOne) Exec(ctx context.Context) error {
|
||
|
n, err := mdo.md.Exec(ctx)
|
||
|
switch {
|
||
|
case err != nil:
|
||
|
return err
|
||
|
case n == 0:
|
||
|
return &NotFoundError{mailbox.Label}
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ExecX is like Exec, but panics if an error occurs.
|
||
|
func (mdo *MailboxDeleteOne) ExecX(ctx context.Context) {
|
||
|
mdo.md.ExecX(ctx)
|
||
|
}
|