251 lines
8.3 KiB
Go
251 lines
8.3 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"entgo.io/ent"
|
|
"entgo.io/ent/dialect/sql"
|
|
"git.dotya.ml/mirre-mt/pcmt/ent/agekey"
|
|
"git.dotya.ml/mirre-mt/pcmt/ent/user"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// User is the model entity for the User schema.
|
|
type User struct {
|
|
config `json:"-"`
|
|
// ID of the ent.
|
|
ID uuid.UUID `json:"id,omitempty"`
|
|
// user's handle, allowed `<>~+-_` symbols and alphanumeric ASCII characters, including capital letters
|
|
Username string `json:"username,omitempty"`
|
|
// Email holds the value of the "email" field.
|
|
Email string `json:"email,omitempty"`
|
|
// Password holds the value of the "password" field.
|
|
Password []byte `json:"-"`
|
|
// IsAdmin holds the value of the "is_admin" field.
|
|
IsAdmin bool `json:"is_admin,omitempty"`
|
|
// IsActive holds the value of the "is_active" field.
|
|
IsActive bool `json:"is_active,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"`
|
|
// LastLogin holds the value of the "last_login" field.
|
|
LastLogin time.Time `json:"last_login,omitempty"`
|
|
// Edges holds the relations/edges for other nodes in the graph.
|
|
// The values are being populated by the UserQuery when eager-loading is set.
|
|
Edges UserEdges `json:"edges"`
|
|
selectValues sql.SelectValues
|
|
}
|
|
|
|
// UserEdges holds the relations/edges for other nodes in the graph.
|
|
type UserEdges struct {
|
|
// Agekey holds the value of the agekey edge.
|
|
Agekey *AgeKey `json:"agekey,omitempty"`
|
|
// TrackedBreaches holds the value of the tracked_breaches edge.
|
|
TrackedBreaches []*TrackedBreaches `json:"tracked_breaches,omitempty"`
|
|
// SearchQueries holds the value of the search_queries edge.
|
|
SearchQueries []*SearchQuery `json:"search_queries,omitempty"`
|
|
// loadedTypes holds the information for reporting if a
|
|
// type was loaded (or requested) in eager-loading or not.
|
|
loadedTypes [3]bool
|
|
}
|
|
|
|
// AgekeyOrErr returns the Agekey value or an error if the edge
|
|
// was not loaded in eager-loading, or loaded but was not found.
|
|
func (e UserEdges) AgekeyOrErr() (*AgeKey, error) {
|
|
if e.loadedTypes[0] {
|
|
if e.Agekey == nil {
|
|
// Edge was loaded but was not found.
|
|
return nil, &NotFoundError{label: agekey.Label}
|
|
}
|
|
return e.Agekey, nil
|
|
}
|
|
return nil, &NotLoadedError{edge: "agekey"}
|
|
}
|
|
|
|
// TrackedBreachesOrErr returns the TrackedBreaches value or an error if the edge
|
|
// was not loaded in eager-loading.
|
|
func (e UserEdges) TrackedBreachesOrErr() ([]*TrackedBreaches, error) {
|
|
if e.loadedTypes[1] {
|
|
return e.TrackedBreaches, nil
|
|
}
|
|
return nil, &NotLoadedError{edge: "tracked_breaches"}
|
|
}
|
|
|
|
// SearchQueriesOrErr returns the SearchQueries value or an error if the edge
|
|
// was not loaded in eager-loading.
|
|
func (e UserEdges) SearchQueriesOrErr() ([]*SearchQuery, error) {
|
|
if e.loadedTypes[2] {
|
|
return e.SearchQueries, nil
|
|
}
|
|
return nil, &NotLoadedError{edge: "search_queries"}
|
|
}
|
|
|
|
// scanValues returns the types for scanning values from sql.Rows.
|
|
func (*User) scanValues(columns []string) ([]any, error) {
|
|
values := make([]any, len(columns))
|
|
for i := range columns {
|
|
switch columns[i] {
|
|
case user.FieldPassword:
|
|
values[i] = new([]byte)
|
|
case user.FieldIsAdmin, user.FieldIsActive:
|
|
values[i] = new(sql.NullBool)
|
|
case user.FieldUsername, user.FieldEmail:
|
|
values[i] = new(sql.NullString)
|
|
case user.FieldCreatedAt, user.FieldUpdatedAt, user.FieldLastLogin:
|
|
values[i] = new(sql.NullTime)
|
|
case user.FieldID:
|
|
values[i] = new(uuid.UUID)
|
|
default:
|
|
values[i] = new(sql.UnknownType)
|
|
}
|
|
}
|
|
return values, nil
|
|
}
|
|
|
|
// assignValues assigns the values that were returned from sql.Rows (after scanning)
|
|
// to the User fields.
|
|
func (u *User) assignValues(columns []string, values []any) 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 user.FieldID:
|
|
if value, ok := values[i].(*uuid.UUID); !ok {
|
|
return fmt.Errorf("unexpected type %T for field id", values[i])
|
|
} else if value != nil {
|
|
u.ID = *value
|
|
}
|
|
case user.FieldUsername:
|
|
if value, ok := values[i].(*sql.NullString); !ok {
|
|
return fmt.Errorf("unexpected type %T for field username", values[i])
|
|
} else if value.Valid {
|
|
u.Username = value.String
|
|
}
|
|
case user.FieldEmail:
|
|
if value, ok := values[i].(*sql.NullString); !ok {
|
|
return fmt.Errorf("unexpected type %T for field email", values[i])
|
|
} else if value.Valid {
|
|
u.Email = value.String
|
|
}
|
|
case user.FieldPassword:
|
|
if value, ok := values[i].(*[]byte); !ok {
|
|
return fmt.Errorf("unexpected type %T for field password", values[i])
|
|
} else if value != nil {
|
|
u.Password = *value
|
|
}
|
|
case user.FieldIsAdmin:
|
|
if value, ok := values[i].(*sql.NullBool); !ok {
|
|
return fmt.Errorf("unexpected type %T for field is_admin", values[i])
|
|
} else if value.Valid {
|
|
u.IsAdmin = value.Bool
|
|
}
|
|
case user.FieldIsActive:
|
|
if value, ok := values[i].(*sql.NullBool); !ok {
|
|
return fmt.Errorf("unexpected type %T for field is_active", values[i])
|
|
} else if value.Valid {
|
|
u.IsActive = value.Bool
|
|
}
|
|
case user.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 {
|
|
u.CreatedAt = value.Time
|
|
}
|
|
case user.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 {
|
|
u.UpdatedAt = value.Time
|
|
}
|
|
case user.FieldLastLogin:
|
|
if value, ok := values[i].(*sql.NullTime); !ok {
|
|
return fmt.Errorf("unexpected type %T for field last_login", values[i])
|
|
} else if value.Valid {
|
|
u.LastLogin = value.Time
|
|
}
|
|
default:
|
|
u.selectValues.Set(columns[i], values[i])
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Value returns the ent.Value that was dynamically selected and assigned to the User.
|
|
// This includes values selected through modifiers, order, etc.
|
|
func (u *User) Value(name string) (ent.Value, error) {
|
|
return u.selectValues.Get(name)
|
|
}
|
|
|
|
// QueryAgekey queries the "agekey" edge of the User entity.
|
|
func (u *User) QueryAgekey() *AgeKeyQuery {
|
|
return NewUserClient(u.config).QueryAgekey(u)
|
|
}
|
|
|
|
// QueryTrackedBreaches queries the "tracked_breaches" edge of the User entity.
|
|
func (u *User) QueryTrackedBreaches() *TrackedBreachesQuery {
|
|
return NewUserClient(u.config).QueryTrackedBreaches(u)
|
|
}
|
|
|
|
// QuerySearchQueries queries the "search_queries" edge of the User entity.
|
|
func (u *User) QuerySearchQueries() *SearchQueryQuery {
|
|
return NewUserClient(u.config).QuerySearchQueries(u)
|
|
}
|
|
|
|
// Update returns a builder for updating this User.
|
|
// Note that you need to call User.Unwrap() before calling this method if this User
|
|
// was returned from a transaction, and the transaction was committed or rolled back.
|
|
func (u *User) Update() *UserUpdateOne {
|
|
return NewUserClient(u.config).UpdateOne(u)
|
|
}
|
|
|
|
// Unwrap unwraps the User 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 (u *User) Unwrap() *User {
|
|
_tx, ok := u.config.driver.(*txDriver)
|
|
if !ok {
|
|
panic("ent: User is not a transactional entity")
|
|
}
|
|
u.config.driver = _tx.drv
|
|
return u
|
|
}
|
|
|
|
// String implements the fmt.Stringer.
|
|
func (u *User) String() string {
|
|
var builder strings.Builder
|
|
builder.WriteString("User(")
|
|
builder.WriteString(fmt.Sprintf("id=%v, ", u.ID))
|
|
builder.WriteString("username=")
|
|
builder.WriteString(u.Username)
|
|
builder.WriteString(", ")
|
|
builder.WriteString("email=")
|
|
builder.WriteString(u.Email)
|
|
builder.WriteString(", ")
|
|
builder.WriteString("password=<sensitive>")
|
|
builder.WriteString(", ")
|
|
builder.WriteString("is_admin=")
|
|
builder.WriteString(fmt.Sprintf("%v", u.IsAdmin))
|
|
builder.WriteString(", ")
|
|
builder.WriteString("is_active=")
|
|
builder.WriteString(fmt.Sprintf("%v", u.IsActive))
|
|
builder.WriteString(", ")
|
|
builder.WriteString("created_at=")
|
|
builder.WriteString(u.CreatedAt.Format(time.ANSIC))
|
|
builder.WriteString(", ")
|
|
builder.WriteString("updated_at=")
|
|
builder.WriteString(u.UpdatedAt.Format(time.ANSIC))
|
|
builder.WriteString(", ")
|
|
builder.WriteString("last_login=")
|
|
builder.WriteString(u.LastLogin.Format(time.ANSIC))
|
|
builder.WriteByte(')')
|
|
return builder.String()
|
|
}
|
|
|
|
// Users is a parsable slice of User.
|
|
type Users []*User
|