apikey_delete.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "context"
  5. "wechat-api/ent/apikey"
  6. "wechat-api/ent/predicate"
  7. "entgo.io/ent/dialect/sql"
  8. "entgo.io/ent/dialect/sql/sqlgraph"
  9. "entgo.io/ent/schema/field"
  10. )
  11. // ApiKeyDelete is the builder for deleting a ApiKey entity.
  12. type ApiKeyDelete struct {
  13. config
  14. hooks []Hook
  15. mutation *ApiKeyMutation
  16. }
  17. // Where appends a list predicates to the ApiKeyDelete builder.
  18. func (akd *ApiKeyDelete) Where(ps ...predicate.ApiKey) *ApiKeyDelete {
  19. akd.mutation.Where(ps...)
  20. return akd
  21. }
  22. // Exec executes the deletion query and returns how many vertices were deleted.
  23. func (akd *ApiKeyDelete) Exec(ctx context.Context) (int, error) {
  24. return withHooks(ctx, akd.sqlExec, akd.mutation, akd.hooks)
  25. }
  26. // ExecX is like Exec, but panics if an error occurs.
  27. func (akd *ApiKeyDelete) ExecX(ctx context.Context) int {
  28. n, err := akd.Exec(ctx)
  29. if err != nil {
  30. panic(err)
  31. }
  32. return n
  33. }
  34. func (akd *ApiKeyDelete) sqlExec(ctx context.Context) (int, error) {
  35. _spec := sqlgraph.NewDeleteSpec(apikey.Table, sqlgraph.NewFieldSpec(apikey.FieldID, field.TypeUint64))
  36. if ps := akd.mutation.predicates; len(ps) > 0 {
  37. _spec.Predicate = func(selector *sql.Selector) {
  38. for i := range ps {
  39. ps[i](selector)
  40. }
  41. }
  42. }
  43. affected, err := sqlgraph.DeleteNodes(ctx, akd.driver, _spec)
  44. if err != nil && sqlgraph.IsConstraintError(err) {
  45. err = &ConstraintError{msg: err.Error(), wrap: err}
  46. }
  47. akd.mutation.done = true
  48. return affected, err
  49. }
  50. // ApiKeyDeleteOne is the builder for deleting a single ApiKey entity.
  51. type ApiKeyDeleteOne struct {
  52. akd *ApiKeyDelete
  53. }
  54. // Where appends a list predicates to the ApiKeyDelete builder.
  55. func (akdo *ApiKeyDeleteOne) Where(ps ...predicate.ApiKey) *ApiKeyDeleteOne {
  56. akdo.akd.mutation.Where(ps...)
  57. return akdo
  58. }
  59. // Exec executes the deletion query.
  60. func (akdo *ApiKeyDeleteOne) Exec(ctx context.Context) error {
  61. n, err := akdo.akd.Exec(ctx)
  62. switch {
  63. case err != nil:
  64. return err
  65. case n == 0:
  66. return &NotFoundError{apikey.Label}
  67. default:
  68. return nil
  69. }
  70. }
  71. // ExecX is like Exec, but panics if an error occurs.
  72. func (akdo *ApiKeyDeleteOne) ExecX(ctx context.Context) {
  73. if err := akdo.Exec(ctx); err != nil {
  74. panic(err)
  75. }
  76. }