OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors
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.
 
 
 
 
 
 

148 lines
5.0 KiB

// Code generated by ent, DO NOT EDIT.
package db
import (
"encoding/json"
"fmt"
"strings"
"time"
"entgo.io/ent"
"entgo.io/ent/dialect/sql"
"github.com/dexidp/dex/storage"
"github.com/dexidp/dex/storage/ent/db/keys"
jose "github.com/go-jose/go-jose/v4"
)
// Keys is the model entity for the Keys schema.
type Keys struct {
config `json:"-"`
// ID of the ent.
ID string `json:"id,omitempty"`
// VerificationKeys holds the value of the "verification_keys" field.
VerificationKeys []storage.VerificationKey `json:"verification_keys,omitempty"`
// SigningKey holds the value of the "signing_key" field.
SigningKey jose.JSONWebKey `json:"signing_key,omitempty"`
// SigningKeyPub holds the value of the "signing_key_pub" field.
SigningKeyPub jose.JSONWebKey `json:"signing_key_pub,omitempty"`
// NextRotation holds the value of the "next_rotation" field.
NextRotation time.Time `json:"next_rotation,omitempty"`
selectValues sql.SelectValues
}
// scanValues returns the types for scanning values from sql.Rows.
func (*Keys) scanValues(columns []string) ([]any, error) {
values := make([]any, len(columns))
for i := range columns {
switch columns[i] {
case keys.FieldVerificationKeys, keys.FieldSigningKey, keys.FieldSigningKeyPub:
values[i] = new([]byte)
case keys.FieldID:
values[i] = new(sql.NullString)
case keys.FieldNextRotation:
values[i] = new(sql.NullTime)
default:
values[i] = new(sql.UnknownType)
}
}
return values, nil
}
// assignValues assigns the values that were returned from sql.Rows (after scanning)
// to the Keys fields.
func (_m *Keys) 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 keys.FieldID:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field id", values[i])
} else if value.Valid {
_m.ID = value.String
}
case keys.FieldVerificationKeys:
if value, ok := values[i].(*[]byte); !ok {
return fmt.Errorf("unexpected type %T for field verification_keys", values[i])
} else if value != nil && len(*value) > 0 {
if err := json.Unmarshal(*value, &_m.VerificationKeys); err != nil {
return fmt.Errorf("unmarshal field verification_keys: %w", err)
}
}
case keys.FieldSigningKey:
if value, ok := values[i].(*[]byte); !ok {
return fmt.Errorf("unexpected type %T for field signing_key", values[i])
} else if value != nil && len(*value) > 0 {
if err := json.Unmarshal(*value, &_m.SigningKey); err != nil {
return fmt.Errorf("unmarshal field signing_key: %w", err)
}
}
case keys.FieldSigningKeyPub:
if value, ok := values[i].(*[]byte); !ok {
return fmt.Errorf("unexpected type %T for field signing_key_pub", values[i])
} else if value != nil && len(*value) > 0 {
if err := json.Unmarshal(*value, &_m.SigningKeyPub); err != nil {
return fmt.Errorf("unmarshal field signing_key_pub: %w", err)
}
}
case keys.FieldNextRotation:
if value, ok := values[i].(*sql.NullTime); !ok {
return fmt.Errorf("unexpected type %T for field next_rotation", values[i])
} else if value.Valid {
_m.NextRotation = value.Time
}
default:
_m.selectValues.Set(columns[i], values[i])
}
}
return nil
}
// Value returns the ent.Value that was dynamically selected and assigned to the Keys.
// This includes values selected through modifiers, order, etc.
func (_m *Keys) Value(name string) (ent.Value, error) {
return _m.selectValues.Get(name)
}
// Update returns a builder for updating this Keys.
// Note that you need to call Keys.Unwrap() before calling this method if this Keys
// was returned from a transaction, and the transaction was committed or rolled back.
func (_m *Keys) Update() *KeysUpdateOne {
return NewKeysClient(_m.config).UpdateOne(_m)
}
// Unwrap unwraps the Keys 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 (_m *Keys) Unwrap() *Keys {
_tx, ok := _m.config.driver.(*txDriver)
if !ok {
panic("db: Keys is not a transactional entity")
}
_m.config.driver = _tx.drv
return _m
}
// String implements the fmt.Stringer.
func (_m *Keys) String() string {
var builder strings.Builder
builder.WriteString("Keys(")
builder.WriteString(fmt.Sprintf("id=%v, ", _m.ID))
builder.WriteString("verification_keys=")
builder.WriteString(fmt.Sprintf("%v", _m.VerificationKeys))
builder.WriteString(", ")
builder.WriteString("signing_key=")
builder.WriteString(fmt.Sprintf("%v", _m.SigningKey))
builder.WriteString(", ")
builder.WriteString("signing_key_pub=")
builder.WriteString(fmt.Sprintf("%v", _m.SigningKeyPub))
builder.WriteString(", ")
builder.WriteString("next_rotation=")
builder.WriteString(_m.NextRotation.Format(time.ANSIC))
builder.WriteByte(')')
return builder.String()
}
// KeysSlice is a parsable slice of Keys.
type KeysSlice []*Keys