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