mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
4.2 KiB
138 lines
4.2 KiB
// Code generated by ent, DO NOT EDIT. |
|
|
|
package db |
|
|
|
import ( |
|
"fmt" |
|
"strings" |
|
|
|
"entgo.io/ent" |
|
"entgo.io/ent/dialect/sql" |
|
"github.com/dexidp/dex/storage/ent/db/password" |
|
) |
|
|
|
// Password is the model entity for the Password schema. |
|
type Password struct { |
|
config `json:"-"` |
|
// ID of the ent. |
|
ID int `json:"id,omitempty"` |
|
// Email holds the value of the "email" field. |
|
Email string `json:"email,omitempty"` |
|
// Hash holds the value of the "hash" field. |
|
Hash []byte `json:"hash,omitempty"` |
|
// Username holds the value of the "username" field. |
|
Username string `json:"username,omitempty"` |
|
// UserID holds the value of the "user_id" field. |
|
UserID string `json:"user_id,omitempty"` |
|
selectValues sql.SelectValues |
|
} |
|
|
|
// scanValues returns the types for scanning values from sql.Rows. |
|
func (*Password) scanValues(columns []string) ([]any, error) { |
|
values := make([]any, len(columns)) |
|
for i := range columns { |
|
switch columns[i] { |
|
case password.FieldHash: |
|
values[i] = new([]byte) |
|
case password.FieldID: |
|
values[i] = new(sql.NullInt64) |
|
case password.FieldEmail, password.FieldUsername, password.FieldUserID: |
|
values[i] = new(sql.NullString) |
|
default: |
|
values[i] = new(sql.UnknownType) |
|
} |
|
} |
|
return values, nil |
|
} |
|
|
|
// assignValues assigns the values that were returned from sql.Rows (after scanning) |
|
// to the Password fields. |
|
func (pa *Password) 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 password.FieldID: |
|
value, ok := values[i].(*sql.NullInt64) |
|
if !ok { |
|
return fmt.Errorf("unexpected type %T for field id", value) |
|
} |
|
pa.ID = int(value.Int64) |
|
case password.FieldEmail: |
|
if value, ok := values[i].(*sql.NullString); !ok { |
|
return fmt.Errorf("unexpected type %T for field email", values[i]) |
|
} else if value.Valid { |
|
pa.Email = value.String |
|
} |
|
case password.FieldHash: |
|
if value, ok := values[i].(*[]byte); !ok { |
|
return fmt.Errorf("unexpected type %T for field hash", values[i]) |
|
} else if value != nil { |
|
pa.Hash = *value |
|
} |
|
case password.FieldUsername: |
|
if value, ok := values[i].(*sql.NullString); !ok { |
|
return fmt.Errorf("unexpected type %T for field username", values[i]) |
|
} else if value.Valid { |
|
pa.Username = value.String |
|
} |
|
case password.FieldUserID: |
|
if value, ok := values[i].(*sql.NullString); !ok { |
|
return fmt.Errorf("unexpected type %T for field user_id", values[i]) |
|
} else if value.Valid { |
|
pa.UserID = value.String |
|
} |
|
default: |
|
pa.selectValues.Set(columns[i], values[i]) |
|
} |
|
} |
|
return nil |
|
} |
|
|
|
// Value returns the ent.Value that was dynamically selected and assigned to the Password. |
|
// This includes values selected through modifiers, order, etc. |
|
func (pa *Password) Value(name string) (ent.Value, error) { |
|
return pa.selectValues.Get(name) |
|
} |
|
|
|
// Update returns a builder for updating this Password. |
|
// Note that you need to call Password.Unwrap() before calling this method if this Password |
|
// was returned from a transaction, and the transaction was committed or rolled back. |
|
func (pa *Password) Update() *PasswordUpdateOne { |
|
return NewPasswordClient(pa.config).UpdateOne(pa) |
|
} |
|
|
|
// Unwrap unwraps the Password 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 (pa *Password) Unwrap() *Password { |
|
_tx, ok := pa.config.driver.(*txDriver) |
|
if !ok { |
|
panic("db: Password is not a transactional entity") |
|
} |
|
pa.config.driver = _tx.drv |
|
return pa |
|
} |
|
|
|
// String implements the fmt.Stringer. |
|
func (pa *Password) String() string { |
|
var builder strings.Builder |
|
builder.WriteString("Password(") |
|
builder.WriteString(fmt.Sprintf("id=%v, ", pa.ID)) |
|
builder.WriteString("email=") |
|
builder.WriteString(pa.Email) |
|
builder.WriteString(", ") |
|
builder.WriteString("hash=") |
|
builder.WriteString(fmt.Sprintf("%v", pa.Hash)) |
|
builder.WriteString(", ") |
|
builder.WriteString("username=") |
|
builder.WriteString(pa.Username) |
|
builder.WriteString(", ") |
|
builder.WriteString("user_id=") |
|
builder.WriteString(pa.UserID) |
|
builder.WriteByte(')') |
|
return builder.String() |
|
} |
|
|
|
// Passwords is a parsable slice of Password. |
|
type Passwords []*Password
|
|
|