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.
287 lines
8.3 KiB
287 lines
8.3 KiB
// Code generated by entc, DO NOT EDIT. |
|
|
|
package db |
|
|
|
import ( |
|
"context" |
|
"errors" |
|
"fmt" |
|
"time" |
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph" |
|
"entgo.io/ent/schema/field" |
|
"github.com/dexidp/dex/storage/ent/db/devicerequest" |
|
) |
|
|
|
// DeviceRequestCreate is the builder for creating a DeviceRequest entity. |
|
type DeviceRequestCreate struct { |
|
config |
|
mutation *DeviceRequestMutation |
|
hooks []Hook |
|
} |
|
|
|
// SetUserCode sets the "user_code" field. |
|
func (drc *DeviceRequestCreate) SetUserCode(s string) *DeviceRequestCreate { |
|
drc.mutation.SetUserCode(s) |
|
return drc |
|
} |
|
|
|
// SetDeviceCode sets the "device_code" field. |
|
func (drc *DeviceRequestCreate) SetDeviceCode(s string) *DeviceRequestCreate { |
|
drc.mutation.SetDeviceCode(s) |
|
return drc |
|
} |
|
|
|
// SetClientID sets the "client_id" field. |
|
func (drc *DeviceRequestCreate) SetClientID(s string) *DeviceRequestCreate { |
|
drc.mutation.SetClientID(s) |
|
return drc |
|
} |
|
|
|
// SetClientSecret sets the "client_secret" field. |
|
func (drc *DeviceRequestCreate) SetClientSecret(s string) *DeviceRequestCreate { |
|
drc.mutation.SetClientSecret(s) |
|
return drc |
|
} |
|
|
|
// SetScopes sets the "scopes" field. |
|
func (drc *DeviceRequestCreate) SetScopes(s []string) *DeviceRequestCreate { |
|
drc.mutation.SetScopes(s) |
|
return drc |
|
} |
|
|
|
// SetExpiry sets the "expiry" field. |
|
func (drc *DeviceRequestCreate) SetExpiry(t time.Time) *DeviceRequestCreate { |
|
drc.mutation.SetExpiry(t) |
|
return drc |
|
} |
|
|
|
// Mutation returns the DeviceRequestMutation object of the builder. |
|
func (drc *DeviceRequestCreate) Mutation() *DeviceRequestMutation { |
|
return drc.mutation |
|
} |
|
|
|
// Save creates the DeviceRequest in the database. |
|
func (drc *DeviceRequestCreate) Save(ctx context.Context) (*DeviceRequest, error) { |
|
var ( |
|
err error |
|
node *DeviceRequest |
|
) |
|
if len(drc.hooks) == 0 { |
|
if err = drc.check(); err != nil { |
|
return nil, err |
|
} |
|
node, err = drc.sqlSave(ctx) |
|
} else { |
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) { |
|
mutation, ok := m.(*DeviceRequestMutation) |
|
if !ok { |
|
return nil, fmt.Errorf("unexpected mutation type %T", m) |
|
} |
|
if err = drc.check(); err != nil { |
|
return nil, err |
|
} |
|
drc.mutation = mutation |
|
node, err = drc.sqlSave(ctx) |
|
mutation.done = true |
|
return node, err |
|
}) |
|
for i := len(drc.hooks) - 1; i >= 0; i-- { |
|
mut = drc.hooks[i](mut) |
|
} |
|
if _, err := mut.Mutate(ctx, drc.mutation); err != nil { |
|
return nil, err |
|
} |
|
} |
|
return node, err |
|
} |
|
|
|
// SaveX calls Save and panics if Save returns an error. |
|
func (drc *DeviceRequestCreate) SaveX(ctx context.Context) *DeviceRequest { |
|
v, err := drc.Save(ctx) |
|
if err != nil { |
|
panic(err) |
|
} |
|
return v |
|
} |
|
|
|
// check runs all checks and user-defined validators on the builder. |
|
func (drc *DeviceRequestCreate) check() error { |
|
if _, ok := drc.mutation.UserCode(); !ok { |
|
return &ValidationError{Name: "user_code", err: errors.New("db: missing required field \"user_code\"")} |
|
} |
|
if v, ok := drc.mutation.UserCode(); ok { |
|
if err := devicerequest.UserCodeValidator(v); err != nil { |
|
return &ValidationError{Name: "user_code", err: fmt.Errorf("db: validator failed for field \"user_code\": %w", err)} |
|
} |
|
} |
|
if _, ok := drc.mutation.DeviceCode(); !ok { |
|
return &ValidationError{Name: "device_code", err: errors.New("db: missing required field \"device_code\"")} |
|
} |
|
if v, ok := drc.mutation.DeviceCode(); ok { |
|
if err := devicerequest.DeviceCodeValidator(v); err != nil { |
|
return &ValidationError{Name: "device_code", err: fmt.Errorf("db: validator failed for field \"device_code\": %w", err)} |
|
} |
|
} |
|
if _, ok := drc.mutation.ClientID(); !ok { |
|
return &ValidationError{Name: "client_id", err: errors.New("db: missing required field \"client_id\"")} |
|
} |
|
if v, ok := drc.mutation.ClientID(); ok { |
|
if err := devicerequest.ClientIDValidator(v); err != nil { |
|
return &ValidationError{Name: "client_id", err: fmt.Errorf("db: validator failed for field \"client_id\": %w", err)} |
|
} |
|
} |
|
if _, ok := drc.mutation.ClientSecret(); !ok { |
|
return &ValidationError{Name: "client_secret", err: errors.New("db: missing required field \"client_secret\"")} |
|
} |
|
if v, ok := drc.mutation.ClientSecret(); ok { |
|
if err := devicerequest.ClientSecretValidator(v); err != nil { |
|
return &ValidationError{Name: "client_secret", err: fmt.Errorf("db: validator failed for field \"client_secret\": %w", err)} |
|
} |
|
} |
|
if _, ok := drc.mutation.Expiry(); !ok { |
|
return &ValidationError{Name: "expiry", err: errors.New("db: missing required field \"expiry\"")} |
|
} |
|
return nil |
|
} |
|
|
|
func (drc *DeviceRequestCreate) sqlSave(ctx context.Context) (*DeviceRequest, error) { |
|
_node, _spec := drc.createSpec() |
|
if err := sqlgraph.CreateNode(ctx, drc.driver, _spec); err != nil { |
|
if cerr, ok := isSQLConstraintError(err); ok { |
|
err = cerr |
|
} |
|
return nil, err |
|
} |
|
id := _spec.ID.Value.(int64) |
|
_node.ID = int(id) |
|
return _node, nil |
|
} |
|
|
|
func (drc *DeviceRequestCreate) createSpec() (*DeviceRequest, *sqlgraph.CreateSpec) { |
|
var ( |
|
_node = &DeviceRequest{config: drc.config} |
|
_spec = &sqlgraph.CreateSpec{ |
|
Table: devicerequest.Table, |
|
ID: &sqlgraph.FieldSpec{ |
|
Type: field.TypeInt, |
|
Column: devicerequest.FieldID, |
|
}, |
|
} |
|
) |
|
if value, ok := drc.mutation.UserCode(); ok { |
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{ |
|
Type: field.TypeString, |
|
Value: value, |
|
Column: devicerequest.FieldUserCode, |
|
}) |
|
_node.UserCode = value |
|
} |
|
if value, ok := drc.mutation.DeviceCode(); ok { |
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{ |
|
Type: field.TypeString, |
|
Value: value, |
|
Column: devicerequest.FieldDeviceCode, |
|
}) |
|
_node.DeviceCode = value |
|
} |
|
if value, ok := drc.mutation.ClientID(); ok { |
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{ |
|
Type: field.TypeString, |
|
Value: value, |
|
Column: devicerequest.FieldClientID, |
|
}) |
|
_node.ClientID = value |
|
} |
|
if value, ok := drc.mutation.ClientSecret(); ok { |
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{ |
|
Type: field.TypeString, |
|
Value: value, |
|
Column: devicerequest.FieldClientSecret, |
|
}) |
|
_node.ClientSecret = value |
|
} |
|
if value, ok := drc.mutation.Scopes(); ok { |
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{ |
|
Type: field.TypeJSON, |
|
Value: value, |
|
Column: devicerequest.FieldScopes, |
|
}) |
|
_node.Scopes = value |
|
} |
|
if value, ok := drc.mutation.Expiry(); ok { |
|
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{ |
|
Type: field.TypeTime, |
|
Value: value, |
|
Column: devicerequest.FieldExpiry, |
|
}) |
|
_node.Expiry = value |
|
} |
|
return _node, _spec |
|
} |
|
|
|
// DeviceRequestCreateBulk is the builder for creating many DeviceRequest entities in bulk. |
|
type DeviceRequestCreateBulk struct { |
|
config |
|
builders []*DeviceRequestCreate |
|
} |
|
|
|
// Save creates the DeviceRequest entities in the database. |
|
func (drcb *DeviceRequestCreateBulk) Save(ctx context.Context) ([]*DeviceRequest, error) { |
|
specs := make([]*sqlgraph.CreateSpec, len(drcb.builders)) |
|
nodes := make([]*DeviceRequest, len(drcb.builders)) |
|
mutators := make([]Mutator, len(drcb.builders)) |
|
for i := range drcb.builders { |
|
func(i int, root context.Context) { |
|
builder := drcb.builders[i] |
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) { |
|
mutation, ok := m.(*DeviceRequestMutation) |
|
if !ok { |
|
return nil, fmt.Errorf("unexpected mutation type %T", m) |
|
} |
|
if err := builder.check(); err != nil { |
|
return nil, err |
|
} |
|
builder.mutation = mutation |
|
nodes[i], specs[i] = builder.createSpec() |
|
var err error |
|
if i < len(mutators)-1 { |
|
_, err = mutators[i+1].Mutate(root, drcb.builders[i+1].mutation) |
|
} else { |
|
// Invoke the actual operation on the latest mutation in the chain. |
|
if err = sqlgraph.BatchCreate(ctx, drcb.driver, &sqlgraph.BatchCreateSpec{Nodes: specs}); err != nil { |
|
if cerr, ok := isSQLConstraintError(err); ok { |
|
err = cerr |
|
} |
|
} |
|
} |
|
mutation.done = true |
|
if err != nil { |
|
return nil, err |
|
} |
|
id := specs[i].ID.Value.(int64) |
|
nodes[i].ID = int(id) |
|
return nodes[i], nil |
|
}) |
|
for i := len(builder.hooks) - 1; i >= 0; i-- { |
|
mut = builder.hooks[i](mut) |
|
} |
|
mutators[i] = mut |
|
}(i, ctx) |
|
} |
|
if len(mutators) > 0 { |
|
if _, err := mutators[0].Mutate(ctx, drcb.builders[0].mutation); err != nil { |
|
return nil, err |
|
} |
|
} |
|
return nodes, nil |
|
} |
|
|
|
// SaveX is like Save, but panics if an error occurs. |
|
func (drcb *DeviceRequestCreateBulk) SaveX(ctx context.Context) []*DeviceRequest { |
|
v, err := drcb.Save(ctx) |
|
if err != nil { |
|
panic(err) |
|
} |
|
return v |
|
}
|
|
|