forked from mirrors/homebox
111 lines
2.7 KiB
Go
111 lines
2.7 KiB
Go
// Code generated by entc, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
"github.com/hay-kot/git-web-template/backend/ent/authtokens"
|
|
"github.com/hay-kot/git-web-template/backend/ent/predicate"
|
|
)
|
|
|
|
// AuthTokensDelete is the builder for deleting a AuthTokens entity.
|
|
type AuthTokensDelete struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *AuthTokensMutation
|
|
}
|
|
|
|
// Where appends a list predicates to the AuthTokensDelete builder.
|
|
func (atd *AuthTokensDelete) Where(ps ...predicate.AuthTokens) *AuthTokensDelete {
|
|
atd.mutation.Where(ps...)
|
|
return atd
|
|
}
|
|
|
|
// Exec executes the deletion query and returns how many vertices were deleted.
|
|
func (atd *AuthTokensDelete) Exec(ctx context.Context) (int, error) {
|
|
var (
|
|
err error
|
|
affected int
|
|
)
|
|
if len(atd.hooks) == 0 {
|
|
affected, err = atd.sqlExec(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*AuthTokensMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
atd.mutation = mutation
|
|
affected, err = atd.sqlExec(ctx)
|
|
mutation.done = true
|
|
return affected, err
|
|
})
|
|
for i := len(atd.hooks) - 1; i >= 0; i-- {
|
|
if atd.hooks[i] == nil {
|
|
return 0, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
|
|
}
|
|
mut = atd.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, atd.mutation); err != nil {
|
|
return 0, err
|
|
}
|
|
}
|
|
return affected, err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (atd *AuthTokensDelete) ExecX(ctx context.Context) int {
|
|
n, err := atd.Exec(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (atd *AuthTokensDelete) sqlExec(ctx context.Context) (int, error) {
|
|
_spec := &sqlgraph.DeleteSpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: authtokens.Table,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: authtokens.FieldID,
|
|
},
|
|
},
|
|
}
|
|
if ps := atd.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
return sqlgraph.DeleteNodes(ctx, atd.driver, _spec)
|
|
}
|
|
|
|
// AuthTokensDeleteOne is the builder for deleting a single AuthTokens entity.
|
|
type AuthTokensDeleteOne struct {
|
|
atd *AuthTokensDelete
|
|
}
|
|
|
|
// Exec executes the deletion query.
|
|
func (atdo *AuthTokensDeleteOne) Exec(ctx context.Context) error {
|
|
n, err := atdo.atd.Exec(ctx)
|
|
switch {
|
|
case err != nil:
|
|
return err
|
|
case n == 0:
|
|
return &NotFoundError{authtokens.Label}
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (atdo *AuthTokensDeleteOne) ExecX(ctx context.Context) {
|
|
atdo.atd.ExecX(ctx)
|
|
}
|