Files
voidraft/internal/models/ent/keybinding_create.go
2025-12-20 16:43:04 +08:00

520 lines
15 KiB
Go

// Code generated by ent, DO NOT EDIT.
package ent
import (
"context"
"errors"
"fmt"
"voidraft/internal/models/ent/keybinding"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
)
// KeyBindingCreate is the builder for creating a KeyBinding entity.
type KeyBindingCreate struct {
config
mutation *KeyBindingMutation
hooks []Hook
}
// SetUUID sets the "uuid" field.
func (_c *KeyBindingCreate) SetUUID(v string) *KeyBindingCreate {
_c.mutation.SetUUID(v)
return _c
}
// SetNillableUUID sets the "uuid" field if the given value is not nil.
func (_c *KeyBindingCreate) SetNillableUUID(v *string) *KeyBindingCreate {
if v != nil {
_c.SetUUID(*v)
}
return _c
}
// SetCreatedAt sets the "created_at" field.
func (_c *KeyBindingCreate) SetCreatedAt(v string) *KeyBindingCreate {
_c.mutation.SetCreatedAt(v)
return _c
}
// SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
func (_c *KeyBindingCreate) SetNillableCreatedAt(v *string) *KeyBindingCreate {
if v != nil {
_c.SetCreatedAt(*v)
}
return _c
}
// SetUpdatedAt sets the "updated_at" field.
func (_c *KeyBindingCreate) SetUpdatedAt(v string) *KeyBindingCreate {
_c.mutation.SetUpdatedAt(v)
return _c
}
// SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
func (_c *KeyBindingCreate) SetNillableUpdatedAt(v *string) *KeyBindingCreate {
if v != nil {
_c.SetUpdatedAt(*v)
}
return _c
}
// SetDeletedAt sets the "deleted_at" field.
func (_c *KeyBindingCreate) SetDeletedAt(v string) *KeyBindingCreate {
_c.mutation.SetDeletedAt(v)
return _c
}
// SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
func (_c *KeyBindingCreate) SetNillableDeletedAt(v *string) *KeyBindingCreate {
if v != nil {
_c.SetDeletedAt(*v)
}
return _c
}
// SetName sets the "name" field.
func (_c *KeyBindingCreate) SetName(v string) *KeyBindingCreate {
_c.mutation.SetName(v)
return _c
}
// SetType sets the "type" field.
func (_c *KeyBindingCreate) SetType(v string) *KeyBindingCreate {
_c.mutation.SetType(v)
return _c
}
// SetNillableType sets the "type" field if the given value is not nil.
func (_c *KeyBindingCreate) SetNillableType(v *string) *KeyBindingCreate {
if v != nil {
_c.SetType(*v)
}
return _c
}
// SetKey sets the "key" field.
func (_c *KeyBindingCreate) SetKey(v string) *KeyBindingCreate {
_c.mutation.SetKey(v)
return _c
}
// SetNillableKey sets the "key" field if the given value is not nil.
func (_c *KeyBindingCreate) SetNillableKey(v *string) *KeyBindingCreate {
if v != nil {
_c.SetKey(*v)
}
return _c
}
// SetMacos sets the "macos" field.
func (_c *KeyBindingCreate) SetMacos(v string) *KeyBindingCreate {
_c.mutation.SetMacos(v)
return _c
}
// SetNillableMacos sets the "macos" field if the given value is not nil.
func (_c *KeyBindingCreate) SetNillableMacos(v *string) *KeyBindingCreate {
if v != nil {
_c.SetMacos(*v)
}
return _c
}
// SetWindows sets the "windows" field.
func (_c *KeyBindingCreate) SetWindows(v string) *KeyBindingCreate {
_c.mutation.SetWindows(v)
return _c
}
// SetNillableWindows sets the "windows" field if the given value is not nil.
func (_c *KeyBindingCreate) SetNillableWindows(v *string) *KeyBindingCreate {
if v != nil {
_c.SetWindows(*v)
}
return _c
}
// SetLinux sets the "linux" field.
func (_c *KeyBindingCreate) SetLinux(v string) *KeyBindingCreate {
_c.mutation.SetLinux(v)
return _c
}
// SetNillableLinux sets the "linux" field if the given value is not nil.
func (_c *KeyBindingCreate) SetNillableLinux(v *string) *KeyBindingCreate {
if v != nil {
_c.SetLinux(*v)
}
return _c
}
// SetExtension sets the "extension" field.
func (_c *KeyBindingCreate) SetExtension(v string) *KeyBindingCreate {
_c.mutation.SetExtension(v)
return _c
}
// SetEnabled sets the "enabled" field.
func (_c *KeyBindingCreate) SetEnabled(v bool) *KeyBindingCreate {
_c.mutation.SetEnabled(v)
return _c
}
// SetNillableEnabled sets the "enabled" field if the given value is not nil.
func (_c *KeyBindingCreate) SetNillableEnabled(v *bool) *KeyBindingCreate {
if v != nil {
_c.SetEnabled(*v)
}
return _c
}
// SetPreventDefault sets the "prevent_default" field.
func (_c *KeyBindingCreate) SetPreventDefault(v bool) *KeyBindingCreate {
_c.mutation.SetPreventDefault(v)
return _c
}
// SetNillablePreventDefault sets the "prevent_default" field if the given value is not nil.
func (_c *KeyBindingCreate) SetNillablePreventDefault(v *bool) *KeyBindingCreate {
if v != nil {
_c.SetPreventDefault(*v)
}
return _c
}
// SetScope sets the "scope" field.
func (_c *KeyBindingCreate) SetScope(v string) *KeyBindingCreate {
_c.mutation.SetScope(v)
return _c
}
// SetNillableScope sets the "scope" field if the given value is not nil.
func (_c *KeyBindingCreate) SetNillableScope(v *string) *KeyBindingCreate {
if v != nil {
_c.SetScope(*v)
}
return _c
}
// Mutation returns the KeyBindingMutation object of the builder.
func (_c *KeyBindingCreate) Mutation() *KeyBindingMutation {
return _c.mutation
}
// Save creates the KeyBinding in the database.
func (_c *KeyBindingCreate) Save(ctx context.Context) (*KeyBinding, error) {
if err := _c.defaults(); err != nil {
return nil, err
}
return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks)
}
// SaveX calls Save and panics if Save returns an error.
func (_c *KeyBindingCreate) SaveX(ctx context.Context) *KeyBinding {
v, err := _c.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (_c *KeyBindingCreate) Exec(ctx context.Context) error {
_, err := _c.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (_c *KeyBindingCreate) ExecX(ctx context.Context) {
if err := _c.Exec(ctx); err != nil {
panic(err)
}
}
// defaults sets the default values of the builder before save.
func (_c *KeyBindingCreate) defaults() error {
if _, ok := _c.mutation.UUID(); !ok {
if keybinding.DefaultUUID == nil {
return fmt.Errorf("ent: uninitialized keybinding.DefaultUUID (forgotten import ent/runtime?)")
}
v := keybinding.DefaultUUID()
_c.mutation.SetUUID(v)
}
if _, ok := _c.mutation.CreatedAt(); !ok {
if keybinding.DefaultCreatedAt == nil {
return fmt.Errorf("ent: uninitialized keybinding.DefaultCreatedAt (forgotten import ent/runtime?)")
}
v := keybinding.DefaultCreatedAt()
_c.mutation.SetCreatedAt(v)
}
if _, ok := _c.mutation.UpdatedAt(); !ok {
if keybinding.DefaultUpdatedAt == nil {
return fmt.Errorf("ent: uninitialized keybinding.DefaultUpdatedAt (forgotten import ent/runtime?)")
}
v := keybinding.DefaultUpdatedAt()
_c.mutation.SetUpdatedAt(v)
}
if _, ok := _c.mutation.GetType(); !ok {
v := keybinding.DefaultType
_c.mutation.SetType(v)
}
if _, ok := _c.mutation.Enabled(); !ok {
v := keybinding.DefaultEnabled
_c.mutation.SetEnabled(v)
}
if _, ok := _c.mutation.PreventDefault(); !ok {
v := keybinding.DefaultPreventDefault
_c.mutation.SetPreventDefault(v)
}
if _, ok := _c.mutation.Scope(); !ok {
v := keybinding.DefaultScope
_c.mutation.SetScope(v)
}
return nil
}
// check runs all checks and user-defined validators on the builder.
func (_c *KeyBindingCreate) check() error {
if _, ok := _c.mutation.UUID(); !ok {
return &ValidationError{Name: "uuid", err: errors.New(`ent: missing required field "KeyBinding.uuid"`)}
}
if _, ok := _c.mutation.CreatedAt(); !ok {
return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "KeyBinding.created_at"`)}
}
if _, ok := _c.mutation.UpdatedAt(); !ok {
return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "KeyBinding.updated_at"`)}
}
if _, ok := _c.mutation.Name(); !ok {
return &ValidationError{Name: "name", err: errors.New(`ent: missing required field "KeyBinding.name"`)}
}
if v, ok := _c.mutation.Name(); ok {
if err := keybinding.NameValidator(v); err != nil {
return &ValidationError{Name: "name", err: fmt.Errorf(`ent: validator failed for field "KeyBinding.name": %w`, err)}
}
}
if _, ok := _c.mutation.GetType(); !ok {
return &ValidationError{Name: "type", err: errors.New(`ent: missing required field "KeyBinding.type"`)}
}
if v, ok := _c.mutation.GetType(); ok {
if err := keybinding.TypeValidator(v); err != nil {
return &ValidationError{Name: "type", err: fmt.Errorf(`ent: validator failed for field "KeyBinding.type": %w`, err)}
}
}
if v, ok := _c.mutation.Key(); ok {
if err := keybinding.KeyValidator(v); err != nil {
return &ValidationError{Name: "key", err: fmt.Errorf(`ent: validator failed for field "KeyBinding.key": %w`, err)}
}
}
if v, ok := _c.mutation.Macos(); ok {
if err := keybinding.MacosValidator(v); err != nil {
return &ValidationError{Name: "macos", err: fmt.Errorf(`ent: validator failed for field "KeyBinding.macos": %w`, err)}
}
}
if v, ok := _c.mutation.Windows(); ok {
if err := keybinding.WindowsValidator(v); err != nil {
return &ValidationError{Name: "windows", err: fmt.Errorf(`ent: validator failed for field "KeyBinding.windows": %w`, err)}
}
}
if v, ok := _c.mutation.Linux(); ok {
if err := keybinding.LinuxValidator(v); err != nil {
return &ValidationError{Name: "linux", err: fmt.Errorf(`ent: validator failed for field "KeyBinding.linux": %w`, err)}
}
}
if _, ok := _c.mutation.Extension(); !ok {
return &ValidationError{Name: "extension", err: errors.New(`ent: missing required field "KeyBinding.extension"`)}
}
if v, ok := _c.mutation.Extension(); ok {
if err := keybinding.ExtensionValidator(v); err != nil {
return &ValidationError{Name: "extension", err: fmt.Errorf(`ent: validator failed for field "KeyBinding.extension": %w`, err)}
}
}
if _, ok := _c.mutation.Enabled(); !ok {
return &ValidationError{Name: "enabled", err: errors.New(`ent: missing required field "KeyBinding.enabled"`)}
}
if _, ok := _c.mutation.PreventDefault(); !ok {
return &ValidationError{Name: "prevent_default", err: errors.New(`ent: missing required field "KeyBinding.prevent_default"`)}
}
if _, ok := _c.mutation.Scope(); !ok {
return &ValidationError{Name: "scope", err: errors.New(`ent: missing required field "KeyBinding.scope"`)}
}
if v, ok := _c.mutation.Scope(); ok {
if err := keybinding.ScopeValidator(v); err != nil {
return &ValidationError{Name: "scope", err: fmt.Errorf(`ent: validator failed for field "KeyBinding.scope": %w`, err)}
}
}
return nil
}
func (_c *KeyBindingCreate) sqlSave(ctx context.Context) (*KeyBinding, 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
}
id := _spec.ID.Value.(int64)
_node.ID = int(id)
_c.mutation.id = &_node.ID
_c.mutation.done = true
return _node, nil
}
func (_c *KeyBindingCreate) createSpec() (*KeyBinding, *sqlgraph.CreateSpec) {
var (
_node = &KeyBinding{config: _c.config}
_spec = sqlgraph.NewCreateSpec(keybinding.Table, sqlgraph.NewFieldSpec(keybinding.FieldID, field.TypeInt))
)
if value, ok := _c.mutation.UUID(); ok {
_spec.SetField(keybinding.FieldUUID, field.TypeString, value)
_node.UUID = value
}
if value, ok := _c.mutation.CreatedAt(); ok {
_spec.SetField(keybinding.FieldCreatedAt, field.TypeString, value)
_node.CreatedAt = value
}
if value, ok := _c.mutation.UpdatedAt(); ok {
_spec.SetField(keybinding.FieldUpdatedAt, field.TypeString, value)
_node.UpdatedAt = value
}
if value, ok := _c.mutation.DeletedAt(); ok {
_spec.SetField(keybinding.FieldDeletedAt, field.TypeString, value)
_node.DeletedAt = &value
}
if value, ok := _c.mutation.Name(); ok {
_spec.SetField(keybinding.FieldName, field.TypeString, value)
_node.Name = value
}
if value, ok := _c.mutation.GetType(); ok {
_spec.SetField(keybinding.FieldType, field.TypeString, value)
_node.Type = value
}
if value, ok := _c.mutation.Key(); ok {
_spec.SetField(keybinding.FieldKey, field.TypeString, value)
_node.Key = value
}
if value, ok := _c.mutation.Macos(); ok {
_spec.SetField(keybinding.FieldMacos, field.TypeString, value)
_node.Macos = value
}
if value, ok := _c.mutation.Windows(); ok {
_spec.SetField(keybinding.FieldWindows, field.TypeString, value)
_node.Windows = value
}
if value, ok := _c.mutation.Linux(); ok {
_spec.SetField(keybinding.FieldLinux, field.TypeString, value)
_node.Linux = value
}
if value, ok := _c.mutation.Extension(); ok {
_spec.SetField(keybinding.FieldExtension, field.TypeString, value)
_node.Extension = value
}
if value, ok := _c.mutation.Enabled(); ok {
_spec.SetField(keybinding.FieldEnabled, field.TypeBool, value)
_node.Enabled = value
}
if value, ok := _c.mutation.PreventDefault(); ok {
_spec.SetField(keybinding.FieldPreventDefault, field.TypeBool, value)
_node.PreventDefault = value
}
if value, ok := _c.mutation.Scope(); ok {
_spec.SetField(keybinding.FieldScope, field.TypeString, value)
_node.Scope = value
}
return _node, _spec
}
// KeyBindingCreateBulk is the builder for creating many KeyBinding entities in bulk.
type KeyBindingCreateBulk struct {
config
err error
builders []*KeyBindingCreate
}
// Save creates the KeyBinding entities in the database.
func (_c *KeyBindingCreateBulk) Save(ctx context.Context) ([]*KeyBinding, error) {
if _c.err != nil {
return nil, _c.err
}
specs := make([]*sqlgraph.CreateSpec, len(_c.builders))
nodes := make([]*KeyBinding, len(_c.builders))
mutators := make([]Mutator, len(_c.builders))
for i := range _c.builders {
func(i int, root context.Context) {
builder := _c.builders[i]
builder.defaults()
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
mutation, ok := m.(*KeyBindingMutation)
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
if specs[i].ID.Value != nil {
id := specs[i].ID.Value.(int64)
nodes[i].ID = int(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 *KeyBindingCreateBulk) SaveX(ctx context.Context) []*KeyBinding {
v, err := _c.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (_c *KeyBindingCreateBulk) Exec(ctx context.Context) error {
_, err := _c.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (_c *KeyBindingCreateBulk) ExecX(ctx context.Context) {
if err := _c.Exec(ctx); err != nil {
panic(err)
}
}