f22e4eb24e
* Improve MySQL performance
285 lines
9.9 KiB
Go
285 lines
9.9 KiB
Go
// Code generated by entc, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"github.com/crowdsecurity/crowdsec/pkg/database/ent/alert"
|
|
"github.com/crowdsecurity/crowdsec/pkg/database/ent/decision"
|
|
)
|
|
|
|
// Decision is the model entity for the Decision schema.
|
|
type Decision struct {
|
|
config `json:"-"`
|
|
// ID of the ent.
|
|
ID int `json:"id,omitempty"`
|
|
// CreatedAt holds the value of the "created_at" field.
|
|
CreatedAt *time.Time `json:"created_at,omitempty"`
|
|
// UpdatedAt holds the value of the "updated_at" field.
|
|
UpdatedAt *time.Time `json:"updated_at,omitempty"`
|
|
// Until holds the value of the "until" field.
|
|
Until *time.Time `json:"until,omitempty"`
|
|
// Scenario holds the value of the "scenario" field.
|
|
Scenario string `json:"scenario,omitempty"`
|
|
// Type holds the value of the "type" field.
|
|
Type string `json:"type,omitempty"`
|
|
// StartIP holds the value of the "start_ip" field.
|
|
StartIP int64 `json:"start_ip,omitempty"`
|
|
// EndIP holds the value of the "end_ip" field.
|
|
EndIP int64 `json:"end_ip,omitempty"`
|
|
// StartSuffix holds the value of the "start_suffix" field.
|
|
StartSuffix int64 `json:"start_suffix,omitempty"`
|
|
// EndSuffix holds the value of the "end_suffix" field.
|
|
EndSuffix int64 `json:"end_suffix,omitempty"`
|
|
// IPSize holds the value of the "ip_size" field.
|
|
IPSize int64 `json:"ip_size,omitempty"`
|
|
// Scope holds the value of the "scope" field.
|
|
Scope string `json:"scope,omitempty"`
|
|
// Value holds the value of the "value" field.
|
|
Value string `json:"value,omitempty"`
|
|
// Origin holds the value of the "origin" field.
|
|
Origin string `json:"origin,omitempty"`
|
|
// Simulated holds the value of the "simulated" field.
|
|
Simulated bool `json:"simulated,omitempty"`
|
|
// Edges holds the relations/edges for other nodes in the graph.
|
|
// The values are being populated by the DecisionQuery when eager-loading is set.
|
|
Edges DecisionEdges `json:"edges"`
|
|
alert_decisions *int
|
|
}
|
|
|
|
// DecisionEdges holds the relations/edges for other nodes in the graph.
|
|
type DecisionEdges struct {
|
|
// Owner holds the value of the owner edge.
|
|
Owner *Alert `json:"owner,omitempty"`
|
|
// loadedTypes holds the information for reporting if a
|
|
// type was loaded (or requested) in eager-loading or not.
|
|
loadedTypes [1]bool
|
|
}
|
|
|
|
// OwnerOrErr returns the Owner value or an error if the edge
|
|
// was not loaded in eager-loading, or loaded but was not found.
|
|
func (e DecisionEdges) OwnerOrErr() (*Alert, error) {
|
|
if e.loadedTypes[0] {
|
|
if e.Owner == nil {
|
|
// The edge owner was loaded in eager-loading,
|
|
// but was not found.
|
|
return nil, &NotFoundError{label: alert.Label}
|
|
}
|
|
return e.Owner, nil
|
|
}
|
|
return nil, &NotLoadedError{edge: "owner"}
|
|
}
|
|
|
|
// scanValues returns the types for scanning values from sql.Rows.
|
|
func (*Decision) scanValues(columns []string) ([]interface{}, error) {
|
|
values := make([]interface{}, len(columns))
|
|
for i := range columns {
|
|
switch columns[i] {
|
|
case decision.FieldSimulated:
|
|
values[i] = new(sql.NullBool)
|
|
case decision.FieldID, decision.FieldStartIP, decision.FieldEndIP, decision.FieldStartSuffix, decision.FieldEndSuffix, decision.FieldIPSize:
|
|
values[i] = new(sql.NullInt64)
|
|
case decision.FieldScenario, decision.FieldType, decision.FieldScope, decision.FieldValue, decision.FieldOrigin:
|
|
values[i] = new(sql.NullString)
|
|
case decision.FieldCreatedAt, decision.FieldUpdatedAt, decision.FieldUntil:
|
|
values[i] = new(sql.NullTime)
|
|
case decision.ForeignKeys[0]: // alert_decisions
|
|
values[i] = new(sql.NullInt64)
|
|
default:
|
|
return nil, fmt.Errorf("unexpected column %q for type Decision", columns[i])
|
|
}
|
|
}
|
|
return values, nil
|
|
}
|
|
|
|
// assignValues assigns the values that were returned from sql.Rows (after scanning)
|
|
// to the Decision fields.
|
|
func (d *Decision) assignValues(columns []string, values []interface{}) error {
|
|
if m, n := len(values), len(columns); m < n {
|
|
return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
|
|
}
|
|
for i := range columns {
|
|
switch columns[i] {
|
|
case decision.FieldID:
|
|
value, ok := values[i].(*sql.NullInt64)
|
|
if !ok {
|
|
return fmt.Errorf("unexpected type %T for field id", value)
|
|
}
|
|
d.ID = int(value.Int64)
|
|
case decision.FieldCreatedAt:
|
|
if value, ok := values[i].(*sql.NullTime); !ok {
|
|
return fmt.Errorf("unexpected type %T for field created_at", values[i])
|
|
} else if value.Valid {
|
|
d.CreatedAt = new(time.Time)
|
|
*d.CreatedAt = value.Time
|
|
}
|
|
case decision.FieldUpdatedAt:
|
|
if value, ok := values[i].(*sql.NullTime); !ok {
|
|
return fmt.Errorf("unexpected type %T for field updated_at", values[i])
|
|
} else if value.Valid {
|
|
d.UpdatedAt = new(time.Time)
|
|
*d.UpdatedAt = value.Time
|
|
}
|
|
case decision.FieldUntil:
|
|
if value, ok := values[i].(*sql.NullTime); !ok {
|
|
return fmt.Errorf("unexpected type %T for field until", values[i])
|
|
} else if value.Valid {
|
|
d.Until = new(time.Time)
|
|
*d.Until = value.Time
|
|
}
|
|
case decision.FieldScenario:
|
|
if value, ok := values[i].(*sql.NullString); !ok {
|
|
return fmt.Errorf("unexpected type %T for field scenario", values[i])
|
|
} else if value.Valid {
|
|
d.Scenario = value.String
|
|
}
|
|
case decision.FieldType:
|
|
if value, ok := values[i].(*sql.NullString); !ok {
|
|
return fmt.Errorf("unexpected type %T for field type", values[i])
|
|
} else if value.Valid {
|
|
d.Type = value.String
|
|
}
|
|
case decision.FieldStartIP:
|
|
if value, ok := values[i].(*sql.NullInt64); !ok {
|
|
return fmt.Errorf("unexpected type %T for field start_ip", values[i])
|
|
} else if value.Valid {
|
|
d.StartIP = value.Int64
|
|
}
|
|
case decision.FieldEndIP:
|
|
if value, ok := values[i].(*sql.NullInt64); !ok {
|
|
return fmt.Errorf("unexpected type %T for field end_ip", values[i])
|
|
} else if value.Valid {
|
|
d.EndIP = value.Int64
|
|
}
|
|
case decision.FieldStartSuffix:
|
|
if value, ok := values[i].(*sql.NullInt64); !ok {
|
|
return fmt.Errorf("unexpected type %T for field start_suffix", values[i])
|
|
} else if value.Valid {
|
|
d.StartSuffix = value.Int64
|
|
}
|
|
case decision.FieldEndSuffix:
|
|
if value, ok := values[i].(*sql.NullInt64); !ok {
|
|
return fmt.Errorf("unexpected type %T for field end_suffix", values[i])
|
|
} else if value.Valid {
|
|
d.EndSuffix = value.Int64
|
|
}
|
|
case decision.FieldIPSize:
|
|
if value, ok := values[i].(*sql.NullInt64); !ok {
|
|
return fmt.Errorf("unexpected type %T for field ip_size", values[i])
|
|
} else if value.Valid {
|
|
d.IPSize = value.Int64
|
|
}
|
|
case decision.FieldScope:
|
|
if value, ok := values[i].(*sql.NullString); !ok {
|
|
return fmt.Errorf("unexpected type %T for field scope", values[i])
|
|
} else if value.Valid {
|
|
d.Scope = value.String
|
|
}
|
|
case decision.FieldValue:
|
|
if value, ok := values[i].(*sql.NullString); !ok {
|
|
return fmt.Errorf("unexpected type %T for field value", values[i])
|
|
} else if value.Valid {
|
|
d.Value = value.String
|
|
}
|
|
case decision.FieldOrigin:
|
|
if value, ok := values[i].(*sql.NullString); !ok {
|
|
return fmt.Errorf("unexpected type %T for field origin", values[i])
|
|
} else if value.Valid {
|
|
d.Origin = value.String
|
|
}
|
|
case decision.FieldSimulated:
|
|
if value, ok := values[i].(*sql.NullBool); !ok {
|
|
return fmt.Errorf("unexpected type %T for field simulated", values[i])
|
|
} else if value.Valid {
|
|
d.Simulated = value.Bool
|
|
}
|
|
case decision.ForeignKeys[0]:
|
|
if value, ok := values[i].(*sql.NullInt64); !ok {
|
|
return fmt.Errorf("unexpected type %T for edge-field alert_decisions", value)
|
|
} else if value.Valid {
|
|
d.alert_decisions = new(int)
|
|
*d.alert_decisions = int(value.Int64)
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// QueryOwner queries the "owner" edge of the Decision entity.
|
|
func (d *Decision) QueryOwner() *AlertQuery {
|
|
return (&DecisionClient{config: d.config}).QueryOwner(d)
|
|
}
|
|
|
|
// Update returns a builder for updating this Decision.
|
|
// Note that you need to call Decision.Unwrap() before calling this method if this Decision
|
|
// was returned from a transaction, and the transaction was committed or rolled back.
|
|
func (d *Decision) Update() *DecisionUpdateOne {
|
|
return (&DecisionClient{config: d.config}).UpdateOne(d)
|
|
}
|
|
|
|
// Unwrap unwraps the Decision entity that was returned from a transaction after it was closed,
|
|
// so that all future queries will be executed through the driver which created the transaction.
|
|
func (d *Decision) Unwrap() *Decision {
|
|
tx, ok := d.config.driver.(*txDriver)
|
|
if !ok {
|
|
panic("ent: Decision is not a transactional entity")
|
|
}
|
|
d.config.driver = tx.drv
|
|
return d
|
|
}
|
|
|
|
// String implements the fmt.Stringer.
|
|
func (d *Decision) String() string {
|
|
var builder strings.Builder
|
|
builder.WriteString("Decision(")
|
|
builder.WriteString(fmt.Sprintf("id=%v", d.ID))
|
|
if v := d.CreatedAt; v != nil {
|
|
builder.WriteString(", created_at=")
|
|
builder.WriteString(v.Format(time.ANSIC))
|
|
}
|
|
if v := d.UpdatedAt; v != nil {
|
|
builder.WriteString(", updated_at=")
|
|
builder.WriteString(v.Format(time.ANSIC))
|
|
}
|
|
if v := d.Until; v != nil {
|
|
builder.WriteString(", until=")
|
|
builder.WriteString(v.Format(time.ANSIC))
|
|
}
|
|
builder.WriteString(", scenario=")
|
|
builder.WriteString(d.Scenario)
|
|
builder.WriteString(", type=")
|
|
builder.WriteString(d.Type)
|
|
builder.WriteString(", start_ip=")
|
|
builder.WriteString(fmt.Sprintf("%v", d.StartIP))
|
|
builder.WriteString(", end_ip=")
|
|
builder.WriteString(fmt.Sprintf("%v", d.EndIP))
|
|
builder.WriteString(", start_suffix=")
|
|
builder.WriteString(fmt.Sprintf("%v", d.StartSuffix))
|
|
builder.WriteString(", end_suffix=")
|
|
builder.WriteString(fmt.Sprintf("%v", d.EndSuffix))
|
|
builder.WriteString(", ip_size=")
|
|
builder.WriteString(fmt.Sprintf("%v", d.IPSize))
|
|
builder.WriteString(", scope=")
|
|
builder.WriteString(d.Scope)
|
|
builder.WriteString(", value=")
|
|
builder.WriteString(d.Value)
|
|
builder.WriteString(", origin=")
|
|
builder.WriteString(d.Origin)
|
|
builder.WriteString(", simulated=")
|
|
builder.WriteString(fmt.Sprintf("%v", d.Simulated))
|
|
builder.WriteByte(')')
|
|
return builder.String()
|
|
}
|
|
|
|
// Decisions is a parsable slice of Decision.
|
|
type Decisions []*Decision
|
|
|
|
func (d Decisions) config(cfg config) {
|
|
for _i := range d {
|
|
d[_i].config = cfg
|
|
}
|
|
}
|