Add ent autogenerated code
Signed-off-by: m.nabokikh <maksim.nabokikh@flant.com>
This commit is contained in:
351
storage/ent/db/connector_update.go
Normal file
351
storage/ent/db/connector_update.go
Normal file
@@ -0,0 +1,351 @@
|
||||
// Code generated by entc, DO NOT EDIT.
|
||||
|
||||
package db
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
|
||||
"github.com/dexidp/dex/storage/ent/db/connector"
|
||||
"github.com/dexidp/dex/storage/ent/db/predicate"
|
||||
"github.com/facebook/ent/dialect/sql"
|
||||
"github.com/facebook/ent/dialect/sql/sqlgraph"
|
||||
"github.com/facebook/ent/schema/field"
|
||||
)
|
||||
|
||||
// ConnectorUpdate is the builder for updating Connector entities.
|
||||
type ConnectorUpdate struct {
|
||||
config
|
||||
hooks []Hook
|
||||
mutation *ConnectorMutation
|
||||
}
|
||||
|
||||
// Where adds a new predicate for the ConnectorUpdate builder.
|
||||
func (cu *ConnectorUpdate) Where(ps ...predicate.Connector) *ConnectorUpdate {
|
||||
cu.mutation.predicates = append(cu.mutation.predicates, ps...)
|
||||
return cu
|
||||
}
|
||||
|
||||
// SetType sets the "type" field.
|
||||
func (cu *ConnectorUpdate) SetType(s string) *ConnectorUpdate {
|
||||
cu.mutation.SetType(s)
|
||||
return cu
|
||||
}
|
||||
|
||||
// SetName sets the "name" field.
|
||||
func (cu *ConnectorUpdate) SetName(s string) *ConnectorUpdate {
|
||||
cu.mutation.SetName(s)
|
||||
return cu
|
||||
}
|
||||
|
||||
// SetResourceVersion sets the "resource_version" field.
|
||||
func (cu *ConnectorUpdate) SetResourceVersion(s string) *ConnectorUpdate {
|
||||
cu.mutation.SetResourceVersion(s)
|
||||
return cu
|
||||
}
|
||||
|
||||
// SetConfig sets the "config" field.
|
||||
func (cu *ConnectorUpdate) SetConfig(b []byte) *ConnectorUpdate {
|
||||
cu.mutation.SetConfig(b)
|
||||
return cu
|
||||
}
|
||||
|
||||
// Mutation returns the ConnectorMutation object of the builder.
|
||||
func (cu *ConnectorUpdate) Mutation() *ConnectorMutation {
|
||||
return cu.mutation
|
||||
}
|
||||
|
||||
// Save executes the query and returns the number of nodes affected by the update operation.
|
||||
func (cu *ConnectorUpdate) Save(ctx context.Context) (int, error) {
|
||||
var (
|
||||
err error
|
||||
affected int
|
||||
)
|
||||
if len(cu.hooks) == 0 {
|
||||
if err = cu.check(); err != nil {
|
||||
return 0, err
|
||||
}
|
||||
affected, err = cu.sqlSave(ctx)
|
||||
} else {
|
||||
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 = cu.check(); err != nil {
|
||||
return 0, err
|
||||
}
|
||||
cu.mutation = mutation
|
||||
affected, err = cu.sqlSave(ctx)
|
||||
mutation.done = true
|
||||
return affected, err
|
||||
})
|
||||
for i := len(cu.hooks) - 1; i >= 0; i-- {
|
||||
mut = cu.hooks[i](mut)
|
||||
}
|
||||
if _, err := mut.Mutate(ctx, cu.mutation); err != nil {
|
||||
return 0, err
|
||||
}
|
||||
}
|
||||
return affected, err
|
||||
}
|
||||
|
||||
// SaveX is like Save, but panics if an error occurs.
|
||||
func (cu *ConnectorUpdate) SaveX(ctx context.Context) int {
|
||||
affected, err := cu.Save(ctx)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return affected
|
||||
}
|
||||
|
||||
// Exec executes the query.
|
||||
func (cu *ConnectorUpdate) Exec(ctx context.Context) error {
|
||||
_, err := cu.Save(ctx)
|
||||
return err
|
||||
}
|
||||
|
||||
// ExecX is like Exec, but panics if an error occurs.
|
||||
func (cu *ConnectorUpdate) ExecX(ctx context.Context) {
|
||||
if err := cu.Exec(ctx); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
|
||||
// check runs all checks and user-defined validators on the builder.
|
||||
func (cu *ConnectorUpdate) check() error {
|
||||
if v, ok := cu.mutation.GetType(); ok {
|
||||
if err := connector.TypeValidator(v); err != nil {
|
||||
return &ValidationError{Name: "type", err: fmt.Errorf("db: validator failed for field \"type\": %w", err)}
|
||||
}
|
||||
}
|
||||
if v, ok := cu.mutation.Name(); ok {
|
||||
if err := connector.NameValidator(v); err != nil {
|
||||
return &ValidationError{Name: "name", err: fmt.Errorf("db: validator failed for field \"name\": %w", err)}
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (cu *ConnectorUpdate) sqlSave(ctx context.Context) (n int, err error) {
|
||||
_spec := &sqlgraph.UpdateSpec{
|
||||
Node: &sqlgraph.NodeSpec{
|
||||
Table: connector.Table,
|
||||
Columns: connector.Columns,
|
||||
ID: &sqlgraph.FieldSpec{
|
||||
Type: field.TypeString,
|
||||
Column: connector.FieldID,
|
||||
},
|
||||
},
|
||||
}
|
||||
if ps := cu.mutation.predicates; len(ps) > 0 {
|
||||
_spec.Predicate = func(selector *sql.Selector) {
|
||||
for i := range ps {
|
||||
ps[i](selector)
|
||||
}
|
||||
}
|
||||
}
|
||||
if value, ok := cu.mutation.GetType(); ok {
|
||||
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
||||
Type: field.TypeString,
|
||||
Value: value,
|
||||
Column: connector.FieldType,
|
||||
})
|
||||
}
|
||||
if value, ok := cu.mutation.Name(); ok {
|
||||
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
||||
Type: field.TypeString,
|
||||
Value: value,
|
||||
Column: connector.FieldName,
|
||||
})
|
||||
}
|
||||
if value, ok := cu.mutation.ResourceVersion(); ok {
|
||||
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
||||
Type: field.TypeString,
|
||||
Value: value,
|
||||
Column: connector.FieldResourceVersion,
|
||||
})
|
||||
}
|
||||
if value, ok := cu.mutation.Config(); ok {
|
||||
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
||||
Type: field.TypeBytes,
|
||||
Value: value,
|
||||
Column: connector.FieldConfig,
|
||||
})
|
||||
}
|
||||
if n, err = sqlgraph.UpdateNodes(ctx, cu.driver, _spec); err != nil {
|
||||
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
||||
err = &NotFoundError{connector.Label}
|
||||
} else if cerr, ok := isSQLConstraintError(err); ok {
|
||||
err = cerr
|
||||
}
|
||||
return 0, err
|
||||
}
|
||||
return n, nil
|
||||
}
|
||||
|
||||
// ConnectorUpdateOne is the builder for updating a single Connector entity.
|
||||
type ConnectorUpdateOne struct {
|
||||
config
|
||||
hooks []Hook
|
||||
mutation *ConnectorMutation
|
||||
}
|
||||
|
||||
// SetType sets the "type" field.
|
||||
func (cuo *ConnectorUpdateOne) SetType(s string) *ConnectorUpdateOne {
|
||||
cuo.mutation.SetType(s)
|
||||
return cuo
|
||||
}
|
||||
|
||||
// SetName sets the "name" field.
|
||||
func (cuo *ConnectorUpdateOne) SetName(s string) *ConnectorUpdateOne {
|
||||
cuo.mutation.SetName(s)
|
||||
return cuo
|
||||
}
|
||||
|
||||
// SetResourceVersion sets the "resource_version" field.
|
||||
func (cuo *ConnectorUpdateOne) SetResourceVersion(s string) *ConnectorUpdateOne {
|
||||
cuo.mutation.SetResourceVersion(s)
|
||||
return cuo
|
||||
}
|
||||
|
||||
// SetConfig sets the "config" field.
|
||||
func (cuo *ConnectorUpdateOne) SetConfig(b []byte) *ConnectorUpdateOne {
|
||||
cuo.mutation.SetConfig(b)
|
||||
return cuo
|
||||
}
|
||||
|
||||
// Mutation returns the ConnectorMutation object of the builder.
|
||||
func (cuo *ConnectorUpdateOne) Mutation() *ConnectorMutation {
|
||||
return cuo.mutation
|
||||
}
|
||||
|
||||
// Save executes the query and returns the updated Connector entity.
|
||||
func (cuo *ConnectorUpdateOne) Save(ctx context.Context) (*Connector, error) {
|
||||
var (
|
||||
err error
|
||||
node *Connector
|
||||
)
|
||||
if len(cuo.hooks) == 0 {
|
||||
if err = cuo.check(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
node, err = cuo.sqlSave(ctx)
|
||||
} else {
|
||||
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 = cuo.check(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
cuo.mutation = mutation
|
||||
node, err = cuo.sqlSave(ctx)
|
||||
mutation.done = true
|
||||
return node, err
|
||||
})
|
||||
for i := len(cuo.hooks) - 1; i >= 0; i-- {
|
||||
mut = cuo.hooks[i](mut)
|
||||
}
|
||||
if _, err := mut.Mutate(ctx, cuo.mutation); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
return node, err
|
||||
}
|
||||
|
||||
// SaveX is like Save, but panics if an error occurs.
|
||||
func (cuo *ConnectorUpdateOne) SaveX(ctx context.Context) *Connector {
|
||||
node, err := cuo.Save(ctx)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return node
|
||||
}
|
||||
|
||||
// Exec executes the query on the entity.
|
||||
func (cuo *ConnectorUpdateOne) Exec(ctx context.Context) error {
|
||||
_, err := cuo.Save(ctx)
|
||||
return err
|
||||
}
|
||||
|
||||
// ExecX is like Exec, but panics if an error occurs.
|
||||
func (cuo *ConnectorUpdateOne) ExecX(ctx context.Context) {
|
||||
if err := cuo.Exec(ctx); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
|
||||
// check runs all checks and user-defined validators on the builder.
|
||||
func (cuo *ConnectorUpdateOne) check() error {
|
||||
if v, ok := cuo.mutation.GetType(); ok {
|
||||
if err := connector.TypeValidator(v); err != nil {
|
||||
return &ValidationError{Name: "type", err: fmt.Errorf("db: validator failed for field \"type\": %w", err)}
|
||||
}
|
||||
}
|
||||
if v, ok := cuo.mutation.Name(); ok {
|
||||
if err := connector.NameValidator(v); err != nil {
|
||||
return &ValidationError{Name: "name", err: fmt.Errorf("db: validator failed for field \"name\": %w", err)}
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (cuo *ConnectorUpdateOne) sqlSave(ctx context.Context) (_node *Connector, err error) {
|
||||
_spec := &sqlgraph.UpdateSpec{
|
||||
Node: &sqlgraph.NodeSpec{
|
||||
Table: connector.Table,
|
||||
Columns: connector.Columns,
|
||||
ID: &sqlgraph.FieldSpec{
|
||||
Type: field.TypeString,
|
||||
Column: connector.FieldID,
|
||||
},
|
||||
},
|
||||
}
|
||||
id, ok := cuo.mutation.ID()
|
||||
if !ok {
|
||||
return nil, &ValidationError{Name: "ID", err: fmt.Errorf("missing Connector.ID for update")}
|
||||
}
|
||||
_spec.Node.ID.Value = id
|
||||
if value, ok := cuo.mutation.GetType(); ok {
|
||||
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
||||
Type: field.TypeString,
|
||||
Value: value,
|
||||
Column: connector.FieldType,
|
||||
})
|
||||
}
|
||||
if value, ok := cuo.mutation.Name(); ok {
|
||||
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
||||
Type: field.TypeString,
|
||||
Value: value,
|
||||
Column: connector.FieldName,
|
||||
})
|
||||
}
|
||||
if value, ok := cuo.mutation.ResourceVersion(); ok {
|
||||
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
||||
Type: field.TypeString,
|
||||
Value: value,
|
||||
Column: connector.FieldResourceVersion,
|
||||
})
|
||||
}
|
||||
if value, ok := cuo.mutation.Config(); ok {
|
||||
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
||||
Type: field.TypeBytes,
|
||||
Value: value,
|
||||
Column: connector.FieldConfig,
|
||||
})
|
||||
}
|
||||
_node = &Connector{config: cuo.config}
|
||||
_spec.Assign = _node.assignValues
|
||||
_spec.ScanValues = _node.scanValues
|
||||
if err = sqlgraph.UpdateNode(ctx, cuo.driver, _spec); err != nil {
|
||||
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
||||
err = &NotFoundError{connector.Label}
|
||||
} else if cerr, ok := isSQLConstraintError(err); ok {
|
||||
err = cerr
|
||||
}
|
||||
return nil, err
|
||||
}
|
||||
return _node, nil
|
||||
}
|
Reference in New Issue
Block a user