mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-11 04:15:54 +02:00
321 lines
9.1 KiB
Go
321 lines
9.1 KiB
Go
// Code generated by ent, 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/allowlist"
|
|
"github.com/crowdsecurity/crowdsec/pkg/database/ent/allowlistitem"
|
|
)
|
|
|
|
// AllowListCreate is the builder for creating a AllowList entity.
|
|
type AllowListCreate struct {
|
|
config
|
|
mutation *AllowListMutation
|
|
hooks []Hook
|
|
}
|
|
|
|
// SetCreatedAt sets the "created_at" field.
|
|
func (alc *AllowListCreate) SetCreatedAt(t time.Time) *AllowListCreate {
|
|
alc.mutation.SetCreatedAt(t)
|
|
return alc
|
|
}
|
|
|
|
// SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
|
|
func (alc *AllowListCreate) SetNillableCreatedAt(t *time.Time) *AllowListCreate {
|
|
if t != nil {
|
|
alc.SetCreatedAt(*t)
|
|
}
|
|
return alc
|
|
}
|
|
|
|
// SetUpdatedAt sets the "updated_at" field.
|
|
func (alc *AllowListCreate) SetUpdatedAt(t time.Time) *AllowListCreate {
|
|
alc.mutation.SetUpdatedAt(t)
|
|
return alc
|
|
}
|
|
|
|
// SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
|
|
func (alc *AllowListCreate) SetNillableUpdatedAt(t *time.Time) *AllowListCreate {
|
|
if t != nil {
|
|
alc.SetUpdatedAt(*t)
|
|
}
|
|
return alc
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (alc *AllowListCreate) SetName(s string) *AllowListCreate {
|
|
alc.mutation.SetName(s)
|
|
return alc
|
|
}
|
|
|
|
// SetFromConsole sets the "from_console" field.
|
|
func (alc *AllowListCreate) SetFromConsole(b bool) *AllowListCreate {
|
|
alc.mutation.SetFromConsole(b)
|
|
return alc
|
|
}
|
|
|
|
// SetDescription sets the "description" field.
|
|
func (alc *AllowListCreate) SetDescription(s string) *AllowListCreate {
|
|
alc.mutation.SetDescription(s)
|
|
return alc
|
|
}
|
|
|
|
// SetNillableDescription sets the "description" field if the given value is not nil.
|
|
func (alc *AllowListCreate) SetNillableDescription(s *string) *AllowListCreate {
|
|
if s != nil {
|
|
alc.SetDescription(*s)
|
|
}
|
|
return alc
|
|
}
|
|
|
|
// SetAllowlistID sets the "allowlist_id" field.
|
|
func (alc *AllowListCreate) SetAllowlistID(s string) *AllowListCreate {
|
|
alc.mutation.SetAllowlistID(s)
|
|
return alc
|
|
}
|
|
|
|
// SetNillableAllowlistID sets the "allowlist_id" field if the given value is not nil.
|
|
func (alc *AllowListCreate) SetNillableAllowlistID(s *string) *AllowListCreate {
|
|
if s != nil {
|
|
alc.SetAllowlistID(*s)
|
|
}
|
|
return alc
|
|
}
|
|
|
|
// AddAllowlistItemIDs adds the "allowlist_items" edge to the AllowListItem entity by IDs.
|
|
func (alc *AllowListCreate) AddAllowlistItemIDs(ids ...int) *AllowListCreate {
|
|
alc.mutation.AddAllowlistItemIDs(ids...)
|
|
return alc
|
|
}
|
|
|
|
// AddAllowlistItems adds the "allowlist_items" edges to the AllowListItem entity.
|
|
func (alc *AllowListCreate) AddAllowlistItems(a ...*AllowListItem) *AllowListCreate {
|
|
ids := make([]int, len(a))
|
|
for i := range a {
|
|
ids[i] = a[i].ID
|
|
}
|
|
return alc.AddAllowlistItemIDs(ids...)
|
|
}
|
|
|
|
// Mutation returns the AllowListMutation object of the builder.
|
|
func (alc *AllowListCreate) Mutation() *AllowListMutation {
|
|
return alc.mutation
|
|
}
|
|
|
|
// Save creates the AllowList in the database.
|
|
func (alc *AllowListCreate) Save(ctx context.Context) (*AllowList, error) {
|
|
alc.defaults()
|
|
return withHooks(ctx, alc.sqlSave, alc.mutation, alc.hooks)
|
|
}
|
|
|
|
// SaveX calls Save and panics if Save returns an error.
|
|
func (alc *AllowListCreate) SaveX(ctx context.Context) *AllowList {
|
|
v, err := alc.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (alc *AllowListCreate) Exec(ctx context.Context) error {
|
|
_, err := alc.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (alc *AllowListCreate) ExecX(ctx context.Context) {
|
|
if err := alc.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// defaults sets the default values of the builder before save.
|
|
func (alc *AllowListCreate) defaults() {
|
|
if _, ok := alc.mutation.CreatedAt(); !ok {
|
|
v := allowlist.DefaultCreatedAt()
|
|
alc.mutation.SetCreatedAt(v)
|
|
}
|
|
if _, ok := alc.mutation.UpdatedAt(); !ok {
|
|
v := allowlist.DefaultUpdatedAt()
|
|
alc.mutation.SetUpdatedAt(v)
|
|
}
|
|
}
|
|
|
|
// check runs all checks and user-defined validators on the builder.
|
|
func (alc *AllowListCreate) check() error {
|
|
if _, ok := alc.mutation.CreatedAt(); !ok {
|
|
return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "AllowList.created_at"`)}
|
|
}
|
|
if _, ok := alc.mutation.UpdatedAt(); !ok {
|
|
return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "AllowList.updated_at"`)}
|
|
}
|
|
if _, ok := alc.mutation.Name(); !ok {
|
|
return &ValidationError{Name: "name", err: errors.New(`ent: missing required field "AllowList.name"`)}
|
|
}
|
|
if _, ok := alc.mutation.FromConsole(); !ok {
|
|
return &ValidationError{Name: "from_console", err: errors.New(`ent: missing required field "AllowList.from_console"`)}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (alc *AllowListCreate) sqlSave(ctx context.Context) (*AllowList, error) {
|
|
if err := alc.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
_node, _spec := alc.createSpec()
|
|
if err := sqlgraph.CreateNode(ctx, alc.driver, _spec); err != nil {
|
|
if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return nil, err
|
|
}
|
|
id := _spec.ID.Value.(int64)
|
|
_node.ID = int(id)
|
|
alc.mutation.id = &_node.ID
|
|
alc.mutation.done = true
|
|
return _node, nil
|
|
}
|
|
|
|
func (alc *AllowListCreate) createSpec() (*AllowList, *sqlgraph.CreateSpec) {
|
|
var (
|
|
_node = &AllowList{config: alc.config}
|
|
_spec = sqlgraph.NewCreateSpec(allowlist.Table, sqlgraph.NewFieldSpec(allowlist.FieldID, field.TypeInt))
|
|
)
|
|
if value, ok := alc.mutation.CreatedAt(); ok {
|
|
_spec.SetField(allowlist.FieldCreatedAt, field.TypeTime, value)
|
|
_node.CreatedAt = value
|
|
}
|
|
if value, ok := alc.mutation.UpdatedAt(); ok {
|
|
_spec.SetField(allowlist.FieldUpdatedAt, field.TypeTime, value)
|
|
_node.UpdatedAt = value
|
|
}
|
|
if value, ok := alc.mutation.Name(); ok {
|
|
_spec.SetField(allowlist.FieldName, field.TypeString, value)
|
|
_node.Name = value
|
|
}
|
|
if value, ok := alc.mutation.FromConsole(); ok {
|
|
_spec.SetField(allowlist.FieldFromConsole, field.TypeBool, value)
|
|
_node.FromConsole = value
|
|
}
|
|
if value, ok := alc.mutation.Description(); ok {
|
|
_spec.SetField(allowlist.FieldDescription, field.TypeString, value)
|
|
_node.Description = value
|
|
}
|
|
if value, ok := alc.mutation.AllowlistID(); ok {
|
|
_spec.SetField(allowlist.FieldAllowlistID, field.TypeString, value)
|
|
_node.AllowlistID = value
|
|
}
|
|
if nodes := alc.mutation.AllowlistItemsIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: false,
|
|
Table: allowlist.AllowlistItemsTable,
|
|
Columns: allowlist.AllowlistItemsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(allowlistitem.FieldID, field.TypeInt),
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges = append(_spec.Edges, edge)
|
|
}
|
|
return _node, _spec
|
|
}
|
|
|
|
// AllowListCreateBulk is the builder for creating many AllowList entities in bulk.
|
|
type AllowListCreateBulk struct {
|
|
config
|
|
err error
|
|
builders []*AllowListCreate
|
|
}
|
|
|
|
// Save creates the AllowList entities in the database.
|
|
func (alcb *AllowListCreateBulk) Save(ctx context.Context) ([]*AllowList, error) {
|
|
if alcb.err != nil {
|
|
return nil, alcb.err
|
|
}
|
|
specs := make([]*sqlgraph.CreateSpec, len(alcb.builders))
|
|
nodes := make([]*AllowList, len(alcb.builders))
|
|
mutators := make([]Mutator, len(alcb.builders))
|
|
for i := range alcb.builders {
|
|
func(i int, root context.Context) {
|
|
builder := alcb.builders[i]
|
|
builder.defaults()
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*AllowListMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
if err := builder.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
builder.mutation = mutation
|
|
var err error
|
|
nodes[i], specs[i] = builder.createSpec()
|
|
if i < len(mutators)-1 {
|
|
_, err = mutators[i+1].Mutate(root, alcb.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, alcb.driver, spec); err != nil {
|
|
if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
}
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
mutation.id = &nodes[i].ID
|
|
if specs[i].ID.Value != nil {
|
|
id := specs[i].ID.Value.(int64)
|
|
nodes[i].ID = int(id)
|
|
}
|
|
mutation.done = true
|
|
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, alcb.builders[0].mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (alcb *AllowListCreateBulk) SaveX(ctx context.Context) []*AllowList {
|
|
v, err := alcb.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (alcb *AllowListCreateBulk) Exec(ctx context.Context) error {
|
|
_, err := alcb.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (alcb *AllowListCreateBulk) ExecX(ctx context.Context) {
|
|
if err := alcb.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|