123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- // Code generated by entc, DO NOT EDIT.
- package ent
- import (
- "context"
- "errors"
- "fmt"
- "time"
- "entgo.io/ent/dialect/sql/sqlgraph"
- "entgo.io/ent/schema/field"
- "github.com/crowdsecurity/crowdsec/pkg/database/ent/alert"
- "github.com/crowdsecurity/crowdsec/pkg/database/ent/event"
- )
- // EventCreate is the builder for creating a Event entity.
- type EventCreate struct {
- config
- mutation *EventMutation
- hooks []Hook
- }
- // SetCreatedAt sets the "created_at" field.
- func (ec *EventCreate) SetCreatedAt(t time.Time) *EventCreate {
- ec.mutation.SetCreatedAt(t)
- return ec
- }
- // SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
- func (ec *EventCreate) SetNillableCreatedAt(t *time.Time) *EventCreate {
- if t != nil {
- ec.SetCreatedAt(*t)
- }
- return ec
- }
- // SetUpdatedAt sets the "updated_at" field.
- func (ec *EventCreate) SetUpdatedAt(t time.Time) *EventCreate {
- ec.mutation.SetUpdatedAt(t)
- return ec
- }
- // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
- func (ec *EventCreate) SetNillableUpdatedAt(t *time.Time) *EventCreate {
- if t != nil {
- ec.SetUpdatedAt(*t)
- }
- return ec
- }
- // SetTime sets the "time" field.
- func (ec *EventCreate) SetTime(t time.Time) *EventCreate {
- ec.mutation.SetTime(t)
- return ec
- }
- // SetSerialized sets the "serialized" field.
- func (ec *EventCreate) SetSerialized(s string) *EventCreate {
- ec.mutation.SetSerialized(s)
- return ec
- }
- // SetOwnerID sets the "owner" edge to the Alert entity by ID.
- func (ec *EventCreate) SetOwnerID(id int) *EventCreate {
- ec.mutation.SetOwnerID(id)
- return ec
- }
- // SetNillableOwnerID sets the "owner" edge to the Alert entity by ID if the given value is not nil.
- func (ec *EventCreate) SetNillableOwnerID(id *int) *EventCreate {
- if id != nil {
- ec = ec.SetOwnerID(*id)
- }
- return ec
- }
- // SetOwner sets the "owner" edge to the Alert entity.
- func (ec *EventCreate) SetOwner(a *Alert) *EventCreate {
- return ec.SetOwnerID(a.ID)
- }
- // Mutation returns the EventMutation object of the builder.
- func (ec *EventCreate) Mutation() *EventMutation {
- return ec.mutation
- }
- // Save creates the Event in the database.
- func (ec *EventCreate) Save(ctx context.Context) (*Event, error) {
- var (
- err error
- node *Event
- )
- ec.defaults()
- if len(ec.hooks) == 0 {
- if err = ec.check(); err != nil {
- return nil, err
- }
- node, err = ec.sqlSave(ctx)
- } else {
- var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
- mutation, ok := m.(*EventMutation)
- if !ok {
- return nil, fmt.Errorf("unexpected mutation type %T", m)
- }
- if err = ec.check(); err != nil {
- return nil, err
- }
- ec.mutation = mutation
- if node, err = ec.sqlSave(ctx); err != nil {
- return nil, err
- }
- mutation.id = &node.ID
- mutation.done = true
- return node, err
- })
- for i := len(ec.hooks) - 1; i >= 0; i-- {
- if ec.hooks[i] == nil {
- return nil, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
- }
- mut = ec.hooks[i](mut)
- }
- if _, err := mut.Mutate(ctx, ec.mutation); err != nil {
- return nil, err
- }
- }
- return node, err
- }
- // SaveX calls Save and panics if Save returns an error.
- func (ec *EventCreate) SaveX(ctx context.Context) *Event {
- v, err := ec.Save(ctx)
- if err != nil {
- panic(err)
- }
- return v
- }
- // Exec executes the query.
- func (ec *EventCreate) Exec(ctx context.Context) error {
- _, err := ec.Save(ctx)
- return err
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (ec *EventCreate) ExecX(ctx context.Context) {
- if err := ec.Exec(ctx); err != nil {
- panic(err)
- }
- }
- // defaults sets the default values of the builder before save.
- func (ec *EventCreate) defaults() {
- if _, ok := ec.mutation.CreatedAt(); !ok {
- v := event.DefaultCreatedAt()
- ec.mutation.SetCreatedAt(v)
- }
- if _, ok := ec.mutation.UpdatedAt(); !ok {
- v := event.DefaultUpdatedAt()
- ec.mutation.SetUpdatedAt(v)
- }
- }
- // check runs all checks and user-defined validators on the builder.
- func (ec *EventCreate) check() error {
- if _, ok := ec.mutation.Time(); !ok {
- return &ValidationError{Name: "time", err: errors.New(`ent: missing required field "time"`)}
- }
- if _, ok := ec.mutation.Serialized(); !ok {
- return &ValidationError{Name: "serialized", err: errors.New(`ent: missing required field "serialized"`)}
- }
- if v, ok := ec.mutation.Serialized(); ok {
- if err := event.SerializedValidator(v); err != nil {
- return &ValidationError{Name: "serialized", err: fmt.Errorf(`ent: validator failed for field "serialized": %w`, err)}
- }
- }
- return nil
- }
- func (ec *EventCreate) sqlSave(ctx context.Context) (*Event, error) {
- _node, _spec := ec.createSpec()
- if err := sqlgraph.CreateNode(ctx, ec.driver, _spec); err != nil {
- if sqlgraph.IsConstraintError(err) {
- err = &ConstraintError{err.Error(), err}
- }
- return nil, err
- }
- id := _spec.ID.Value.(int64)
- _node.ID = int(id)
- return _node, nil
- }
- func (ec *EventCreate) createSpec() (*Event, *sqlgraph.CreateSpec) {
- var (
- _node = &Event{config: ec.config}
- _spec = &sqlgraph.CreateSpec{
- Table: event.Table,
- ID: &sqlgraph.FieldSpec{
- Type: field.TypeInt,
- Column: event.FieldID,
- },
- }
- )
- if value, ok := ec.mutation.CreatedAt(); ok {
- _spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
- Type: field.TypeTime,
- Value: value,
- Column: event.FieldCreatedAt,
- })
- _node.CreatedAt = &value
- }
- if value, ok := ec.mutation.UpdatedAt(); ok {
- _spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
- Type: field.TypeTime,
- Value: value,
- Column: event.FieldUpdatedAt,
- })
- _node.UpdatedAt = &value
- }
- if value, ok := ec.mutation.Time(); ok {
- _spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
- Type: field.TypeTime,
- Value: value,
- Column: event.FieldTime,
- })
- _node.Time = value
- }
- if value, ok := ec.mutation.Serialized(); ok {
- _spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
- Type: field.TypeString,
- Value: value,
- Column: event.FieldSerialized,
- })
- _node.Serialized = value
- }
- if nodes := ec.mutation.OwnerIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2O,
- Inverse: true,
- Table: event.OwnerTable,
- Columns: []string{event.OwnerColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: &sqlgraph.FieldSpec{
- Type: field.TypeInt,
- Column: alert.FieldID,
- },
- },
- }
- for _, k := range nodes {
- edge.Target.Nodes = append(edge.Target.Nodes, k)
- }
- _node.alert_events = &nodes[0]
- _spec.Edges = append(_spec.Edges, edge)
- }
- return _node, _spec
- }
- // EventCreateBulk is the builder for creating many Event entities in bulk.
- type EventCreateBulk struct {
- config
- builders []*EventCreate
- }
- // Save creates the Event entities in the database.
- func (ecb *EventCreateBulk) Save(ctx context.Context) ([]*Event, error) {
- specs := make([]*sqlgraph.CreateSpec, len(ecb.builders))
- nodes := make([]*Event, len(ecb.builders))
- mutators := make([]Mutator, len(ecb.builders))
- for i := range ecb.builders {
- func(i int, root context.Context) {
- builder := ecb.builders[i]
- builder.defaults()
- var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
- mutation, ok := m.(*EventMutation)
- if !ok {
- return nil, fmt.Errorf("unexpected mutation type %T", m)
- }
- if err := builder.check(); err != nil {
- return nil, err
- }
- builder.mutation = mutation
- nodes[i], specs[i] = builder.createSpec()
- var err error
- if i < len(mutators)-1 {
- _, err = mutators[i+1].Mutate(root, ecb.builders[i+1].mutation)
- } else {
- spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
- // Invoke the actual operation on the latest mutation in the chain.
- if err = sqlgraph.BatchCreate(ctx, ecb.driver, spec); err != nil {
- if sqlgraph.IsConstraintError(err) {
- err = &ConstraintError{err.Error(), err}
- }
- }
- }
- if err != nil {
- return nil, err
- }
- mutation.id = &nodes[i].ID
- mutation.done = true
- if specs[i].ID.Value != nil {
- id := specs[i].ID.Value.(int64)
- nodes[i].ID = int(id)
- }
- return nodes[i], nil
- })
- for i := len(builder.hooks) - 1; i >= 0; i-- {
- mut = builder.hooks[i](mut)
- }
- mutators[i] = mut
- }(i, ctx)
- }
- if len(mutators) > 0 {
- if _, err := mutators[0].Mutate(ctx, ecb.builders[0].mutation); err != nil {
- return nil, err
- }
- }
- return nodes, nil
- }
- // SaveX is like Save, but panics if an error occurs.
- func (ecb *EventCreateBulk) SaveX(ctx context.Context) []*Event {
- v, err := ecb.Save(ctx)
- if err != nil {
- panic(err)
- }
- return v
- }
- // Exec executes the query.
- func (ecb *EventCreateBulk) Exec(ctx context.Context) error {
- _, err := ecb.Save(ctx)
- return err
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (ecb *EventCreateBulk) ExecX(ctx context.Context) {
- if err := ecb.Exec(ctx); err != nil {
- panic(err)
- }
- }
|