8108e4156d
* CI: "make generate" target; pin tool versions * use ent 0.12.5 * fix make help * fix model generation target; re-run swagger
244 lines
6.6 KiB
Go
244 lines
6.6 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
"github.com/crowdsecurity/crowdsec/pkg/database/ent/lock"
|
|
"github.com/crowdsecurity/crowdsec/pkg/database/ent/predicate"
|
|
)
|
|
|
|
// LockUpdate is the builder for updating Lock entities.
|
|
type LockUpdate struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *LockMutation
|
|
}
|
|
|
|
// Where appends a list predicates to the LockUpdate builder.
|
|
func (lu *LockUpdate) Where(ps ...predicate.Lock) *LockUpdate {
|
|
lu.mutation.Where(ps...)
|
|
return lu
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (lu *LockUpdate) SetName(s string) *LockUpdate {
|
|
lu.mutation.SetName(s)
|
|
return lu
|
|
}
|
|
|
|
// SetNillableName sets the "name" field if the given value is not nil.
|
|
func (lu *LockUpdate) SetNillableName(s *string) *LockUpdate {
|
|
if s != nil {
|
|
lu.SetName(*s)
|
|
}
|
|
return lu
|
|
}
|
|
|
|
// SetCreatedAt sets the "created_at" field.
|
|
func (lu *LockUpdate) SetCreatedAt(t time.Time) *LockUpdate {
|
|
lu.mutation.SetCreatedAt(t)
|
|
return lu
|
|
}
|
|
|
|
// SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
|
|
func (lu *LockUpdate) SetNillableCreatedAt(t *time.Time) *LockUpdate {
|
|
if t != nil {
|
|
lu.SetCreatedAt(*t)
|
|
}
|
|
return lu
|
|
}
|
|
|
|
// Mutation returns the LockMutation object of the builder.
|
|
func (lu *LockUpdate) Mutation() *LockMutation {
|
|
return lu.mutation
|
|
}
|
|
|
|
// Save executes the query and returns the number of nodes affected by the update operation.
|
|
func (lu *LockUpdate) Save(ctx context.Context) (int, error) {
|
|
return withHooks(ctx, lu.sqlSave, lu.mutation, lu.hooks)
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (lu *LockUpdate) SaveX(ctx context.Context) int {
|
|
affected, err := lu.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return affected
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (lu *LockUpdate) Exec(ctx context.Context) error {
|
|
_, err := lu.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (lu *LockUpdate) ExecX(ctx context.Context) {
|
|
if err := lu.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (lu *LockUpdate) sqlSave(ctx context.Context) (n int, err error) {
|
|
_spec := sqlgraph.NewUpdateSpec(lock.Table, lock.Columns, sqlgraph.NewFieldSpec(lock.FieldID, field.TypeInt))
|
|
if ps := lu.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := lu.mutation.Name(); ok {
|
|
_spec.SetField(lock.FieldName, field.TypeString, value)
|
|
}
|
|
if value, ok := lu.mutation.CreatedAt(); ok {
|
|
_spec.SetField(lock.FieldCreatedAt, field.TypeTime, value)
|
|
}
|
|
if n, err = sqlgraph.UpdateNodes(ctx, lu.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{lock.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return 0, err
|
|
}
|
|
lu.mutation.done = true
|
|
return n, nil
|
|
}
|
|
|
|
// LockUpdateOne is the builder for updating a single Lock entity.
|
|
type LockUpdateOne struct {
|
|
config
|
|
fields []string
|
|
hooks []Hook
|
|
mutation *LockMutation
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (luo *LockUpdateOne) SetName(s string) *LockUpdateOne {
|
|
luo.mutation.SetName(s)
|
|
return luo
|
|
}
|
|
|
|
// SetNillableName sets the "name" field if the given value is not nil.
|
|
func (luo *LockUpdateOne) SetNillableName(s *string) *LockUpdateOne {
|
|
if s != nil {
|
|
luo.SetName(*s)
|
|
}
|
|
return luo
|
|
}
|
|
|
|
// SetCreatedAt sets the "created_at" field.
|
|
func (luo *LockUpdateOne) SetCreatedAt(t time.Time) *LockUpdateOne {
|
|
luo.mutation.SetCreatedAt(t)
|
|
return luo
|
|
}
|
|
|
|
// SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
|
|
func (luo *LockUpdateOne) SetNillableCreatedAt(t *time.Time) *LockUpdateOne {
|
|
if t != nil {
|
|
luo.SetCreatedAt(*t)
|
|
}
|
|
return luo
|
|
}
|
|
|
|
// Mutation returns the LockMutation object of the builder.
|
|
func (luo *LockUpdateOne) Mutation() *LockMutation {
|
|
return luo.mutation
|
|
}
|
|
|
|
// Where appends a list predicates to the LockUpdate builder.
|
|
func (luo *LockUpdateOne) Where(ps ...predicate.Lock) *LockUpdateOne {
|
|
luo.mutation.Where(ps...)
|
|
return luo
|
|
}
|
|
|
|
// Select allows selecting one or more fields (columns) of the returned entity.
|
|
// The default is selecting all fields defined in the entity schema.
|
|
func (luo *LockUpdateOne) Select(field string, fields ...string) *LockUpdateOne {
|
|
luo.fields = append([]string{field}, fields...)
|
|
return luo
|
|
}
|
|
|
|
// Save executes the query and returns the updated Lock entity.
|
|
func (luo *LockUpdateOne) Save(ctx context.Context) (*Lock, error) {
|
|
return withHooks(ctx, luo.sqlSave, luo.mutation, luo.hooks)
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (luo *LockUpdateOne) SaveX(ctx context.Context) *Lock {
|
|
node, err := luo.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// Exec executes the query on the entity.
|
|
func (luo *LockUpdateOne) Exec(ctx context.Context) error {
|
|
_, err := luo.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (luo *LockUpdateOne) ExecX(ctx context.Context) {
|
|
if err := luo.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (luo *LockUpdateOne) sqlSave(ctx context.Context) (_node *Lock, err error) {
|
|
_spec := sqlgraph.NewUpdateSpec(lock.Table, lock.Columns, sqlgraph.NewFieldSpec(lock.FieldID, field.TypeInt))
|
|
id, ok := luo.mutation.ID()
|
|
if !ok {
|
|
return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Lock.id" for update`)}
|
|
}
|
|
_spec.Node.ID.Value = id
|
|
if fields := luo.fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, lock.FieldID)
|
|
for _, f := range fields {
|
|
if !lock.ValidColumn(f) {
|
|
return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
if f != lock.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, f)
|
|
}
|
|
}
|
|
}
|
|
if ps := luo.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := luo.mutation.Name(); ok {
|
|
_spec.SetField(lock.FieldName, field.TypeString, value)
|
|
}
|
|
if value, ok := luo.mutation.CreatedAt(); ok {
|
|
_spec.SetField(lock.FieldCreatedAt, field.TypeTime, value)
|
|
}
|
|
_node = &Lock{config: luo.config}
|
|
_spec.Assign = _node.assignValues
|
|
_spec.ScanValues = _node.scanValues
|
|
if err = sqlgraph.UpdateNode(ctx, luo.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{lock.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return nil, err
|
|
}
|
|
luo.mutation.done = true
|
|
return _node, nil
|
|
}
|