mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-14 13:24:34 +02:00
Co-authored-by: alteredCoder <kevin@crowdsec.net> Co-authored-by: he2ss <hamza.essahely@gmail.com> Co-authored-by: Sebastien Blot <sebastien@crowdsec.net>
82 lines
2.2 KiB
Go
82 lines
2.2 KiB
Go
package schema
|
|
|
|
import (
|
|
"entgo.io/ent"
|
|
"entgo.io/ent/dialect/entsql"
|
|
"entgo.io/ent/schema/edge"
|
|
"entgo.io/ent/schema/field"
|
|
"entgo.io/ent/schema/index"
|
|
"github.com/crowdsecurity/crowdsec/pkg/types"
|
|
)
|
|
|
|
// Alert holds the schema definition for the Alert entity.
|
|
type Alert struct {
|
|
ent.Schema
|
|
}
|
|
|
|
// Fields of the Alert.
|
|
func (Alert) Fields() []ent.Field {
|
|
return []ent.Field{
|
|
field.Time("created_at").
|
|
Default(types.UtcNow).
|
|
UpdateDefault(types.UtcNow).Nillable().Optional(),
|
|
field.Time("updated_at").
|
|
Default(types.UtcNow).
|
|
UpdateDefault(types.UtcNow).Nillable().Optional(),
|
|
field.String("scenario"),
|
|
field.String("bucketId").Default("").Optional(),
|
|
field.String("message").Default("").Optional(),
|
|
field.Int32("eventsCount").Default(0).Optional(),
|
|
field.Time("startedAt").Default(types.UtcNow).Optional(),
|
|
field.Time("stoppedAt").Default(types.UtcNow).Optional(),
|
|
field.String("sourceIp").
|
|
Optional(),
|
|
field.String("sourceRange").
|
|
Optional(),
|
|
field.String("sourceAsNumber").
|
|
Optional(),
|
|
field.String("sourceAsName").
|
|
Optional(),
|
|
field.String("sourceCountry").
|
|
Optional(),
|
|
field.Float32("sourceLatitude").
|
|
Optional(),
|
|
field.Float32("sourceLongitude").
|
|
Optional(),
|
|
field.String("sourceScope").Optional(),
|
|
field.String("sourceValue").Optional(),
|
|
field.Int32("capacity").Optional(),
|
|
field.String("leakSpeed").Optional(),
|
|
field.String("scenarioVersion").Optional(),
|
|
field.String("scenarioHash").Optional(),
|
|
field.Bool("simulated").Default(false),
|
|
field.String("uuid").Optional(), //this uuid is mostly here to ensure that CAPI/PAPI has a unique id for each alert
|
|
}
|
|
}
|
|
|
|
// Edges of the Alert.
|
|
func (Alert) Edges() []ent.Edge {
|
|
return []ent.Edge{
|
|
edge.From("owner", Machine.Type).
|
|
Ref("alerts").
|
|
Unique(),
|
|
edge.To("decisions", Decision.Type).
|
|
Annotations(entsql.Annotation{
|
|
OnDelete: entsql.Cascade,
|
|
}),
|
|
edge.To("events", Event.Type).
|
|
Annotations(entsql.Annotation{
|
|
OnDelete: entsql.Cascade,
|
|
}),
|
|
edge.To("metas", Meta.Type).
|
|
Annotations(entsql.Annotation{
|
|
OnDelete: entsql.Cascade,
|
|
}),
|
|
}
|
|
}
|
|
|
|
func (Alert) Indexes() []ent.Index {
|
|
return []ent.Index{
|
|
index.Fields("id"),
|
|
}
|
|
}
|