mirror of
https://github.com/netbirdio/dex.git
synced 2026-05-22 18:43:53 -07:00
259 lines
7.3 KiB
Go
259 lines
7.3 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
"github.com/dexidp/dex/storage/ent/db/connector"
|
|
)
|
|
|
|
// ConnectorCreate is the builder for creating a Connector entity.
|
|
type ConnectorCreate struct {
|
|
config
|
|
mutation *ConnectorMutation
|
|
hooks []Hook
|
|
}
|
|
|
|
// SetType sets the "type" field.
|
|
func (_c *ConnectorCreate) SetType(v string) *ConnectorCreate {
|
|
_c.mutation.SetType(v)
|
|
return _c
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (_c *ConnectorCreate) SetName(v string) *ConnectorCreate {
|
|
_c.mutation.SetName(v)
|
|
return _c
|
|
}
|
|
|
|
// SetResourceVersion sets the "resource_version" field.
|
|
func (_c *ConnectorCreate) SetResourceVersion(v string) *ConnectorCreate {
|
|
_c.mutation.SetResourceVersion(v)
|
|
return _c
|
|
}
|
|
|
|
// SetConfig sets the "config" field.
|
|
func (_c *ConnectorCreate) SetConfig(v []byte) *ConnectorCreate {
|
|
_c.mutation.SetConfig(v)
|
|
return _c
|
|
}
|
|
|
|
// SetGrantTypes sets the "grant_types" field.
|
|
func (_c *ConnectorCreate) SetGrantTypes(v []string) *ConnectorCreate {
|
|
_c.mutation.SetGrantTypes(v)
|
|
return _c
|
|
}
|
|
|
|
// SetID sets the "id" field.
|
|
func (_c *ConnectorCreate) SetID(v string) *ConnectorCreate {
|
|
_c.mutation.SetID(v)
|
|
return _c
|
|
}
|
|
|
|
// Mutation returns the ConnectorMutation object of the builder.
|
|
func (_c *ConnectorCreate) Mutation() *ConnectorMutation {
|
|
return _c.mutation
|
|
}
|
|
|
|
// Save creates the Connector in the database.
|
|
func (_c *ConnectorCreate) Save(ctx context.Context) (*Connector, error) {
|
|
return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks)
|
|
}
|
|
|
|
// SaveX calls Save and panics if Save returns an error.
|
|
func (_c *ConnectorCreate) SaveX(ctx context.Context) *Connector {
|
|
v, err := _c.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (_c *ConnectorCreate) Exec(ctx context.Context) error {
|
|
_, err := _c.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (_c *ConnectorCreate) ExecX(ctx context.Context) {
|
|
if err := _c.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// check runs all checks and user-defined validators on the builder.
|
|
func (_c *ConnectorCreate) check() error {
|
|
if _, ok := _c.mutation.GetType(); !ok {
|
|
return &ValidationError{Name: "type", err: errors.New(`db: missing required field "Connector.type"`)}
|
|
}
|
|
if v, ok := _c.mutation.GetType(); ok {
|
|
if err := connector.TypeValidator(v); err != nil {
|
|
return &ValidationError{Name: "type", err: fmt.Errorf(`db: validator failed for field "Connector.type": %w`, err)}
|
|
}
|
|
}
|
|
if _, ok := _c.mutation.Name(); !ok {
|
|
return &ValidationError{Name: "name", err: errors.New(`db: missing required field "Connector.name"`)}
|
|
}
|
|
if v, ok := _c.mutation.Name(); ok {
|
|
if err := connector.NameValidator(v); err != nil {
|
|
return &ValidationError{Name: "name", err: fmt.Errorf(`db: validator failed for field "Connector.name": %w`, err)}
|
|
}
|
|
}
|
|
if _, ok := _c.mutation.ResourceVersion(); !ok {
|
|
return &ValidationError{Name: "resource_version", err: errors.New(`db: missing required field "Connector.resource_version"`)}
|
|
}
|
|
if _, ok := _c.mutation.Config(); !ok {
|
|
return &ValidationError{Name: "config", err: errors.New(`db: missing required field "Connector.config"`)}
|
|
}
|
|
if v, ok := _c.mutation.ID(); ok {
|
|
if err := connector.IDValidator(v); err != nil {
|
|
return &ValidationError{Name: "id", err: fmt.Errorf(`db: validator failed for field "Connector.id": %w`, err)}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (_c *ConnectorCreate) sqlSave(ctx context.Context) (*Connector, error) {
|
|
if err := _c.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
_node, _spec := _c.createSpec()
|
|
if err := sqlgraph.CreateNode(ctx, _c.driver, _spec); err != nil {
|
|
if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return nil, err
|
|
}
|
|
if _spec.ID.Value != nil {
|
|
if id, ok := _spec.ID.Value.(string); ok {
|
|
_node.ID = id
|
|
} else {
|
|
return nil, fmt.Errorf("unexpected Connector.ID type: %T", _spec.ID.Value)
|
|
}
|
|
}
|
|
_c.mutation.id = &_node.ID
|
|
_c.mutation.done = true
|
|
return _node, nil
|
|
}
|
|
|
|
func (_c *ConnectorCreate) createSpec() (*Connector, *sqlgraph.CreateSpec) {
|
|
var (
|
|
_node = &Connector{config: _c.config}
|
|
_spec = sqlgraph.NewCreateSpec(connector.Table, sqlgraph.NewFieldSpec(connector.FieldID, field.TypeString))
|
|
)
|
|
if id, ok := _c.mutation.ID(); ok {
|
|
_node.ID = id
|
|
_spec.ID.Value = id
|
|
}
|
|
if value, ok := _c.mutation.GetType(); ok {
|
|
_spec.SetField(connector.FieldType, field.TypeString, value)
|
|
_node.Type = value
|
|
}
|
|
if value, ok := _c.mutation.Name(); ok {
|
|
_spec.SetField(connector.FieldName, field.TypeString, value)
|
|
_node.Name = value
|
|
}
|
|
if value, ok := _c.mutation.ResourceVersion(); ok {
|
|
_spec.SetField(connector.FieldResourceVersion, field.TypeString, value)
|
|
_node.ResourceVersion = value
|
|
}
|
|
if value, ok := _c.mutation.Config(); ok {
|
|
_spec.SetField(connector.FieldConfig, field.TypeBytes, value)
|
|
_node.Config = value
|
|
}
|
|
if value, ok := _c.mutation.GrantTypes(); ok {
|
|
_spec.SetField(connector.FieldGrantTypes, field.TypeJSON, value)
|
|
_node.GrantTypes = value
|
|
}
|
|
return _node, _spec
|
|
}
|
|
|
|
// ConnectorCreateBulk is the builder for creating many Connector entities in bulk.
|
|
type ConnectorCreateBulk struct {
|
|
config
|
|
err error
|
|
builders []*ConnectorCreate
|
|
}
|
|
|
|
// Save creates the Connector entities in the database.
|
|
func (_c *ConnectorCreateBulk) Save(ctx context.Context) ([]*Connector, error) {
|
|
if _c.err != nil {
|
|
return nil, _c.err
|
|
}
|
|
specs := make([]*sqlgraph.CreateSpec, len(_c.builders))
|
|
nodes := make([]*Connector, len(_c.builders))
|
|
mutators := make([]Mutator, len(_c.builders))
|
|
for i := range _c.builders {
|
|
func(i int, root context.Context) {
|
|
builder := _c.builders[i]
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*ConnectorMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
if err := builder.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
builder.mutation = mutation
|
|
var err error
|
|
nodes[i], specs[i] = builder.createSpec()
|
|
if i < len(mutators)-1 {
|
|
_, err = mutators[i+1].Mutate(root, _c.builders[i+1].mutation)
|
|
} else {
|
|
spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
|
|
// Invoke the actual operation on the latest mutation in the chain.
|
|
if err = sqlgraph.BatchCreate(ctx, _c.driver, spec); err != nil {
|
|
if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
}
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
mutation.id = &nodes[i].ID
|
|
mutation.done = true
|
|
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, _c.builders[0].mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (_c *ConnectorCreateBulk) SaveX(ctx context.Context) []*Connector {
|
|
v, err := _c.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (_c *ConnectorCreateBulk) Exec(ctx context.Context) error {
|
|
_, err := _c.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (_c *ConnectorCreateBulk) ExecX(ctx context.Context) {
|
|
if err := _c.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|