mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.2 KiB
88 lines
2.2 KiB
// Code generated by ent, DO NOT EDIT. |
|
|
|
package db |
|
|
|
import ( |
|
"context" |
|
|
|
"entgo.io/ent/dialect/sql" |
|
"entgo.io/ent/dialect/sql/sqlgraph" |
|
"entgo.io/ent/schema/field" |
|
"github.com/dexidp/dex/storage/ent/db/password" |
|
"github.com/dexidp/dex/storage/ent/db/predicate" |
|
) |
|
|
|
// PasswordDelete is the builder for deleting a Password entity. |
|
type PasswordDelete struct { |
|
config |
|
hooks []Hook |
|
mutation *PasswordMutation |
|
} |
|
|
|
// Where appends a list predicates to the PasswordDelete builder. |
|
func (pd *PasswordDelete) Where(ps ...predicate.Password) *PasswordDelete { |
|
pd.mutation.Where(ps...) |
|
return pd |
|
} |
|
|
|
// Exec executes the deletion query and returns how many vertices were deleted. |
|
func (pd *PasswordDelete) Exec(ctx context.Context) (int, error) { |
|
return withHooks(ctx, pd.sqlExec, pd.mutation, pd.hooks) |
|
} |
|
|
|
// ExecX is like Exec, but panics if an error occurs. |
|
func (pd *PasswordDelete) ExecX(ctx context.Context) int { |
|
n, err := pd.Exec(ctx) |
|
if err != nil { |
|
panic(err) |
|
} |
|
return n |
|
} |
|
|
|
func (pd *PasswordDelete) sqlExec(ctx context.Context) (int, error) { |
|
_spec := sqlgraph.NewDeleteSpec(password.Table, sqlgraph.NewFieldSpec(password.FieldID, field.TypeInt)) |
|
if ps := pd.mutation.predicates; len(ps) > 0 { |
|
_spec.Predicate = func(selector *sql.Selector) { |
|
for i := range ps { |
|
ps[i](selector) |
|
} |
|
} |
|
} |
|
affected, err := sqlgraph.DeleteNodes(ctx, pd.driver, _spec) |
|
if err != nil && sqlgraph.IsConstraintError(err) { |
|
err = &ConstraintError{msg: err.Error(), wrap: err} |
|
} |
|
pd.mutation.done = true |
|
return affected, err |
|
} |
|
|
|
// PasswordDeleteOne is the builder for deleting a single Password entity. |
|
type PasswordDeleteOne struct { |
|
pd *PasswordDelete |
|
} |
|
|
|
// Where appends a list predicates to the PasswordDelete builder. |
|
func (pdo *PasswordDeleteOne) Where(ps ...predicate.Password) *PasswordDeleteOne { |
|
pdo.pd.mutation.Where(ps...) |
|
return pdo |
|
} |
|
|
|
// Exec executes the deletion query. |
|
func (pdo *PasswordDeleteOne) Exec(ctx context.Context) error { |
|
n, err := pdo.pd.Exec(ctx) |
|
switch { |
|
case err != nil: |
|
return err |
|
case n == 0: |
|
return &NotFoundError{password.Label} |
|
default: |
|
return nil |
|
} |
|
} |
|
|
|
// ExecX is like Exec, but panics if an error occurs. |
|
func (pdo *PasswordDeleteOne) ExecX(ctx context.Context) { |
|
if err := pdo.Exec(ctx); err != nil { |
|
panic(err) |
|
} |
|
}
|
|
|