mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-14 13:24:34 +02:00
546 lines
15 KiB
Go
546 lines
15 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package event
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"github.com/crowdsecurity/crowdsec/pkg/database/ent/predicate"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id int) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
v := make([]any, len(ids))
|
|
for i := range v {
|
|
v[i] = ids[i]
|
|
}
|
|
s.Where(sql.In(s.C(FieldID), v...))
|
|
})
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
v := make([]any, len(ids))
|
|
for i := range v {
|
|
v[i] = ids[i]
|
|
}
|
|
s.Where(sql.NotIn(s.C(FieldID), v...))
|
|
})
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
|
|
func CreatedAt(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
|
|
func UpdatedAt(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldUpdatedAt), v))
|
|
})
|
|
}
|
|
|
|
// Time applies equality check predicate on the "time" field. It's identical to TimeEQ.
|
|
func Time(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldTime), v))
|
|
})
|
|
}
|
|
|
|
// Serialized applies equality check predicate on the "serialized" field. It's identical to SerializedEQ.
|
|
func Serialized(v string) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldSerialized), v))
|
|
})
|
|
}
|
|
|
|
// AlertEvents applies equality check predicate on the "alert_events" field. It's identical to AlertEventsEQ.
|
|
func AlertEvents(v int) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldAlertEvents), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
|
func CreatedAtEQ(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
|
func CreatedAtNEQ(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAtIn applies the In predicate on the "created_at" field.
|
|
func CreatedAtIn(vs ...time.Time) predicate.Event {
|
|
v := make([]any, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.In(s.C(FieldCreatedAt), v...))
|
|
})
|
|
}
|
|
|
|
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
|
func CreatedAtNotIn(vs ...time.Time) predicate.Event {
|
|
v := make([]any, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NotIn(s.C(FieldCreatedAt), v...))
|
|
})
|
|
}
|
|
|
|
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
|
func CreatedAtGT(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
|
func CreatedAtGTE(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
|
func CreatedAtLT(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
|
func CreatedAtLTE(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAtIsNil applies the IsNil predicate on the "created_at" field.
|
|
func CreatedAtIsNil() predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.IsNull(s.C(FieldCreatedAt)))
|
|
})
|
|
}
|
|
|
|
// CreatedAtNotNil applies the NotNil predicate on the "created_at" field.
|
|
func CreatedAtNotNil() predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NotNull(s.C(FieldCreatedAt)))
|
|
})
|
|
}
|
|
|
|
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
|
func UpdatedAtEQ(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldUpdatedAt), v))
|
|
})
|
|
}
|
|
|
|
// UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
|
|
func UpdatedAtNEQ(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldUpdatedAt), v))
|
|
})
|
|
}
|
|
|
|
// UpdatedAtIn applies the In predicate on the "updated_at" field.
|
|
func UpdatedAtIn(vs ...time.Time) predicate.Event {
|
|
v := make([]any, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.In(s.C(FieldUpdatedAt), v...))
|
|
})
|
|
}
|
|
|
|
// UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
|
|
func UpdatedAtNotIn(vs ...time.Time) predicate.Event {
|
|
v := make([]any, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NotIn(s.C(FieldUpdatedAt), v...))
|
|
})
|
|
}
|
|
|
|
// UpdatedAtGT applies the GT predicate on the "updated_at" field.
|
|
func UpdatedAtGT(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldUpdatedAt), v))
|
|
})
|
|
}
|
|
|
|
// UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
|
|
func UpdatedAtGTE(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldUpdatedAt), v))
|
|
})
|
|
}
|
|
|
|
// UpdatedAtLT applies the LT predicate on the "updated_at" field.
|
|
func UpdatedAtLT(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldUpdatedAt), v))
|
|
})
|
|
}
|
|
|
|
// UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
|
|
func UpdatedAtLTE(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldUpdatedAt), v))
|
|
})
|
|
}
|
|
|
|
// UpdatedAtIsNil applies the IsNil predicate on the "updated_at" field.
|
|
func UpdatedAtIsNil() predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.IsNull(s.C(FieldUpdatedAt)))
|
|
})
|
|
}
|
|
|
|
// UpdatedAtNotNil applies the NotNil predicate on the "updated_at" field.
|
|
func UpdatedAtNotNil() predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NotNull(s.C(FieldUpdatedAt)))
|
|
})
|
|
}
|
|
|
|
// TimeEQ applies the EQ predicate on the "time" field.
|
|
func TimeEQ(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldTime), v))
|
|
})
|
|
}
|
|
|
|
// TimeNEQ applies the NEQ predicate on the "time" field.
|
|
func TimeNEQ(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldTime), v))
|
|
})
|
|
}
|
|
|
|
// TimeIn applies the In predicate on the "time" field.
|
|
func TimeIn(vs ...time.Time) predicate.Event {
|
|
v := make([]any, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.In(s.C(FieldTime), v...))
|
|
})
|
|
}
|
|
|
|
// TimeNotIn applies the NotIn predicate on the "time" field.
|
|
func TimeNotIn(vs ...time.Time) predicate.Event {
|
|
v := make([]any, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NotIn(s.C(FieldTime), v...))
|
|
})
|
|
}
|
|
|
|
// TimeGT applies the GT predicate on the "time" field.
|
|
func TimeGT(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldTime), v))
|
|
})
|
|
}
|
|
|
|
// TimeGTE applies the GTE predicate on the "time" field.
|
|
func TimeGTE(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldTime), v))
|
|
})
|
|
}
|
|
|
|
// TimeLT applies the LT predicate on the "time" field.
|
|
func TimeLT(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldTime), v))
|
|
})
|
|
}
|
|
|
|
// TimeLTE applies the LTE predicate on the "time" field.
|
|
func TimeLTE(v time.Time) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldTime), v))
|
|
})
|
|
}
|
|
|
|
// SerializedEQ applies the EQ predicate on the "serialized" field.
|
|
func SerializedEQ(v string) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldSerialized), v))
|
|
})
|
|
}
|
|
|
|
// SerializedNEQ applies the NEQ predicate on the "serialized" field.
|
|
func SerializedNEQ(v string) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldSerialized), v))
|
|
})
|
|
}
|
|
|
|
// SerializedIn applies the In predicate on the "serialized" field.
|
|
func SerializedIn(vs ...string) predicate.Event {
|
|
v := make([]any, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.In(s.C(FieldSerialized), v...))
|
|
})
|
|
}
|
|
|
|
// SerializedNotIn applies the NotIn predicate on the "serialized" field.
|
|
func SerializedNotIn(vs ...string) predicate.Event {
|
|
v := make([]any, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NotIn(s.C(FieldSerialized), v...))
|
|
})
|
|
}
|
|
|
|
// SerializedGT applies the GT predicate on the "serialized" field.
|
|
func SerializedGT(v string) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldSerialized), v))
|
|
})
|
|
}
|
|
|
|
// SerializedGTE applies the GTE predicate on the "serialized" field.
|
|
func SerializedGTE(v string) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldSerialized), v))
|
|
})
|
|
}
|
|
|
|
// SerializedLT applies the LT predicate on the "serialized" field.
|
|
func SerializedLT(v string) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldSerialized), v))
|
|
})
|
|
}
|
|
|
|
// SerializedLTE applies the LTE predicate on the "serialized" field.
|
|
func SerializedLTE(v string) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldSerialized), v))
|
|
})
|
|
}
|
|
|
|
// SerializedContains applies the Contains predicate on the "serialized" field.
|
|
func SerializedContains(v string) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.Contains(s.C(FieldSerialized), v))
|
|
})
|
|
}
|
|
|
|
// SerializedHasPrefix applies the HasPrefix predicate on the "serialized" field.
|
|
func SerializedHasPrefix(v string) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.HasPrefix(s.C(FieldSerialized), v))
|
|
})
|
|
}
|
|
|
|
// SerializedHasSuffix applies the HasSuffix predicate on the "serialized" field.
|
|
func SerializedHasSuffix(v string) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.HasSuffix(s.C(FieldSerialized), v))
|
|
})
|
|
}
|
|
|
|
// SerializedEqualFold applies the EqualFold predicate on the "serialized" field.
|
|
func SerializedEqualFold(v string) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.EqualFold(s.C(FieldSerialized), v))
|
|
})
|
|
}
|
|
|
|
// SerializedContainsFold applies the ContainsFold predicate on the "serialized" field.
|
|
func SerializedContainsFold(v string) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.ContainsFold(s.C(FieldSerialized), v))
|
|
})
|
|
}
|
|
|
|
// AlertEventsEQ applies the EQ predicate on the "alert_events" field.
|
|
func AlertEventsEQ(v int) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldAlertEvents), v))
|
|
})
|
|
}
|
|
|
|
// AlertEventsNEQ applies the NEQ predicate on the "alert_events" field.
|
|
func AlertEventsNEQ(v int) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldAlertEvents), v))
|
|
})
|
|
}
|
|
|
|
// AlertEventsIn applies the In predicate on the "alert_events" field.
|
|
func AlertEventsIn(vs ...int) predicate.Event {
|
|
v := make([]any, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.In(s.C(FieldAlertEvents), v...))
|
|
})
|
|
}
|
|
|
|
// AlertEventsNotIn applies the NotIn predicate on the "alert_events" field.
|
|
func AlertEventsNotIn(vs ...int) predicate.Event {
|
|
v := make([]any, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NotIn(s.C(FieldAlertEvents), v...))
|
|
})
|
|
}
|
|
|
|
// AlertEventsIsNil applies the IsNil predicate on the "alert_events" field.
|
|
func AlertEventsIsNil() predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.IsNull(s.C(FieldAlertEvents)))
|
|
})
|
|
}
|
|
|
|
// AlertEventsNotNil applies the NotNil predicate on the "alert_events" field.
|
|
func AlertEventsNotNil() predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s.Where(sql.NotNull(s.C(FieldAlertEvents)))
|
|
})
|
|
}
|
|
|
|
// HasOwner applies the HasEdge predicate on the "owner" edge.
|
|
func HasOwner() predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.To(OwnerTable, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, OwnerTable, OwnerColumn),
|
|
)
|
|
sqlgraph.HasNeighbors(s, step)
|
|
})
|
|
}
|
|
|
|
// HasOwnerWith applies the HasEdge predicate on the "owner" edge with a given conditions (other predicates).
|
|
func HasOwnerWith(preds ...predicate.Alert) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.To(OwnerInverseTable, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, OwnerTable, OwnerColumn),
|
|
)
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
for _, p := range preds {
|
|
p(s)
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
// And groups predicates with the AND operator between them.
|
|
func And(predicates ...predicate.Event) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s1 := s.Clone().SetP(nil)
|
|
for _, p := range predicates {
|
|
p(s1)
|
|
}
|
|
s.Where(s1.P())
|
|
})
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.Event) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
s1 := s.Clone().SetP(nil)
|
|
for i, p := range predicates {
|
|
if i > 0 {
|
|
s1.Or()
|
|
}
|
|
p(s1)
|
|
}
|
|
s.Where(s1.P())
|
|
})
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.Event) predicate.Event {
|
|
return predicate.Event(func(s *sql.Selector) {
|
|
p(s.Not())
|
|
})
|
|
}
|