mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-14 13:24:34 +02:00
47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
package schema
|
|
|
|
import (
|
|
"entgo.io/ent"
|
|
"entgo.io/ent/schema/edge"
|
|
"entgo.io/ent/schema/field"
|
|
"github.com/crowdsecurity/crowdsec/pkg/types"
|
|
)
|
|
|
|
// Machine holds the schema definition for the Machine entity.
|
|
type Machine struct {
|
|
ent.Schema
|
|
}
|
|
|
|
// Fields of the Machine.
|
|
func (Machine) 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.Time("last_push").
|
|
Default(types.UtcNow).
|
|
UpdateDefault(types.UtcNow).Nillable().Optional(),
|
|
field.Time("last_heartbeat").
|
|
Default(types.UtcNow).
|
|
UpdateDefault(types.UtcNow).Nillable().Optional(),
|
|
field.String("machineId").Unique(),
|
|
field.String("password").Sensitive(),
|
|
field.String("ipAddress"),
|
|
field.String("scenarios").MaxLen(100000).Optional(),
|
|
field.String("version").Optional(),
|
|
field.Bool("isValidated").
|
|
Default(false),
|
|
field.String("status").Optional(),
|
|
field.String("auth_type").Default(types.PasswordAuthType).StructTag(`json:"auth_type"`),
|
|
}
|
|
}
|
|
|
|
// Edges of the Machine.
|
|
func (Machine) Edges() []ent.Edge {
|
|
return []ent.Edge{
|
|
edge.To("alerts", Alert.Type),
|
|
}
|
|
}
|