2022-10-06 12:55:42 +00:00
|
|
|
// Code generated by ent, DO NOT EDIT.
|
2020-11-30 09:37:17 +00:00
|
|
|
|
|
|
|
package ent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2021-03-15 17:46:52 +00:00
|
|
|
"entgo.io/ent/dialect/sql"
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
|
|
"entgo.io/ent/schema/field"
|
2020-11-30 09:37:17 +00:00
|
|
|
"github.com/crowdsecurity/crowdsec/pkg/database/ent/machine"
|
|
|
|
"github.com/crowdsecurity/crowdsec/pkg/database/ent/predicate"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MachineDelete is the builder for deleting a Machine entity.
|
|
|
|
type MachineDelete struct {
|
|
|
|
config
|
2021-01-14 15:27:45 +00:00
|
|
|
hooks []Hook
|
|
|
|
mutation *MachineMutation
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
|
2021-10-22 14:15:57 +00:00
|
|
|
// Where appends a list predicates to the MachineDelete builder.
|
2020-11-30 09:37:17 +00:00
|
|
|
func (md *MachineDelete) Where(ps ...predicate.Machine) *MachineDelete {
|
2021-10-22 14:15:57 +00:00
|
|
|
md.mutation.Where(ps...)
|
2020-11-30 09:37:17 +00:00
|
|
|
return md
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exec executes the deletion query and returns how many vertices were deleted.
|
|
|
|
func (md *MachineDelete) Exec(ctx context.Context) (int, error) {
|
2024-02-14 10:19:13 +00:00
|
|
|
return withHooks(ctx, md.sqlExec, md.mutation, md.hooks)
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
|
|
func (md *MachineDelete) ExecX(ctx context.Context) int {
|
|
|
|
n, err := md.Exec(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
|
|
|
|
func (md *MachineDelete) sqlExec(ctx context.Context) (int, error) {
|
2024-02-14 10:19:13 +00:00
|
|
|
_spec := sqlgraph.NewDeleteSpec(machine.Table, sqlgraph.NewFieldSpec(machine.FieldID, field.TypeInt))
|
2021-01-14 15:27:45 +00:00
|
|
|
if ps := md.mutation.predicates; len(ps) > 0 {
|
2020-11-30 09:37:17 +00:00
|
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
|
|
for i := range ps {
|
|
|
|
ps[i](selector)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-10-06 12:55:42 +00:00
|
|
|
affected, err := sqlgraph.DeleteNodes(ctx, md.driver, _spec)
|
|
|
|
if err != nil && sqlgraph.IsConstraintError(err) {
|
|
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
|
|
}
|
2024-02-14 10:19:13 +00:00
|
|
|
md.mutation.done = true
|
2022-10-06 12:55:42 +00:00
|
|
|
return affected, err
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MachineDeleteOne is the builder for deleting a single Machine entity.
|
|
|
|
type MachineDeleteOne struct {
|
|
|
|
md *MachineDelete
|
|
|
|
}
|
|
|
|
|
2024-02-14 10:19:13 +00:00
|
|
|
// Where appends a list predicates to the MachineDelete builder.
|
|
|
|
func (mdo *MachineDeleteOne) Where(ps ...predicate.Machine) *MachineDeleteOne {
|
|
|
|
mdo.md.mutation.Where(ps...)
|
|
|
|
return mdo
|
|
|
|
}
|
|
|
|
|
2020-11-30 09:37:17 +00:00
|
|
|
// Exec executes the deletion query.
|
|
|
|
func (mdo *MachineDeleteOne) Exec(ctx context.Context) error {
|
|
|
|
n, err := mdo.md.Exec(ctx)
|
|
|
|
switch {
|
|
|
|
case err != nil:
|
|
|
|
return err
|
|
|
|
case n == 0:
|
|
|
|
return &NotFoundError{machine.Label}
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
|
|
func (mdo *MachineDeleteOne) ExecX(ctx context.Context) {
|
2024-02-14 10:19:13 +00:00
|
|
|
if err := mdo.Exec(ctx); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|