// Code generated by ent, DO NOT EDIT. package ent import ( "context" "errors" "fmt" "time" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" "github.com/cloudreve/Cloudreve/v4/ent/setting" ) // SettingCreate is the builder for creating a Setting entity. type SettingCreate struct { config mutation *SettingMutation hooks []Hook conflict []sql.ConflictOption } // SetCreatedAt sets the "created_at" field. func (sc *SettingCreate) SetCreatedAt(t time.Time) *SettingCreate { sc.mutation.SetCreatedAt(t) return sc } // SetNillableCreatedAt sets the "created_at" field if the given value is not nil. func (sc *SettingCreate) SetNillableCreatedAt(t *time.Time) *SettingCreate { if t != nil { sc.SetCreatedAt(*t) } return sc } // SetUpdatedAt sets the "updated_at" field. func (sc *SettingCreate) SetUpdatedAt(t time.Time) *SettingCreate { sc.mutation.SetUpdatedAt(t) return sc } // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil. func (sc *SettingCreate) SetNillableUpdatedAt(t *time.Time) *SettingCreate { if t != nil { sc.SetUpdatedAt(*t) } return sc } // SetDeletedAt sets the "deleted_at" field. func (sc *SettingCreate) SetDeletedAt(t time.Time) *SettingCreate { sc.mutation.SetDeletedAt(t) return sc } // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil. func (sc *SettingCreate) SetNillableDeletedAt(t *time.Time) *SettingCreate { if t != nil { sc.SetDeletedAt(*t) } return sc } // SetName sets the "name" field. func (sc *SettingCreate) SetName(s string) *SettingCreate { sc.mutation.SetName(s) return sc } // SetValue sets the "value" field. func (sc *SettingCreate) SetValue(s string) *SettingCreate { sc.mutation.SetValue(s) return sc } // SetNillableValue sets the "value" field if the given value is not nil. func (sc *SettingCreate) SetNillableValue(s *string) *SettingCreate { if s != nil { sc.SetValue(*s) } return sc } // Mutation returns the SettingMutation object of the builder. func (sc *SettingCreate) Mutation() *SettingMutation { return sc.mutation } // Save creates the Setting in the database. func (sc *SettingCreate) Save(ctx context.Context) (*Setting, error) { if err := sc.defaults(); err != nil { return nil, err } return withHooks(ctx, sc.sqlSave, sc.mutation, sc.hooks) } // SaveX calls Save and panics if Save returns an error. func (sc *SettingCreate) SaveX(ctx context.Context) *Setting { v, err := sc.Save(ctx) if err != nil { panic(err) } return v } // Exec executes the query. func (sc *SettingCreate) Exec(ctx context.Context) error { _, err := sc.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (sc *SettingCreate) ExecX(ctx context.Context) { if err := sc.Exec(ctx); err != nil { panic(err) } } // defaults sets the default values of the builder before save. func (sc *SettingCreate) defaults() error { if _, ok := sc.mutation.CreatedAt(); !ok { if setting.DefaultCreatedAt == nil { return fmt.Errorf("ent: uninitialized setting.DefaultCreatedAt (forgotten import ent/runtime?)") } v := setting.DefaultCreatedAt() sc.mutation.SetCreatedAt(v) } if _, ok := sc.mutation.UpdatedAt(); !ok { if setting.DefaultUpdatedAt == nil { return fmt.Errorf("ent: uninitialized setting.DefaultUpdatedAt (forgotten import ent/runtime?)") } v := setting.DefaultUpdatedAt() sc.mutation.SetUpdatedAt(v) } return nil } // check runs all checks and user-defined validators on the builder. func (sc *SettingCreate) check() error { if _, ok := sc.mutation.CreatedAt(); !ok { return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "Setting.created_at"`)} } if _, ok := sc.mutation.UpdatedAt(); !ok { return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "Setting.updated_at"`)} } if _, ok := sc.mutation.Name(); !ok { return &ValidationError{Name: "name", err: errors.New(`ent: missing required field "Setting.name"`)} } return nil } func (sc *SettingCreate) sqlSave(ctx context.Context) (*Setting, error) { if err := sc.check(); err != nil { return nil, err } _node, _spec := sc.createSpec() if err := sqlgraph.CreateNode(ctx, sc.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) sc.mutation.id = &_node.ID sc.mutation.done = true return _node, nil } func (sc *SettingCreate) createSpec() (*Setting, *sqlgraph.CreateSpec) { var ( _node = &Setting{config: sc.config} _spec = sqlgraph.NewCreateSpec(setting.Table, sqlgraph.NewFieldSpec(setting.FieldID, field.TypeInt)) ) if id, ok := sc.mutation.ID(); ok { _node.ID = id id64 := int64(id) _spec.ID.Value = id64 } _spec.OnConflict = sc.conflict if value, ok := sc.mutation.CreatedAt(); ok { _spec.SetField(setting.FieldCreatedAt, field.TypeTime, value) _node.CreatedAt = value } if value, ok := sc.mutation.UpdatedAt(); ok { _spec.SetField(setting.FieldUpdatedAt, field.TypeTime, value) _node.UpdatedAt = value } if value, ok := sc.mutation.DeletedAt(); ok { _spec.SetField(setting.FieldDeletedAt, field.TypeTime, value) _node.DeletedAt = &value } if value, ok := sc.mutation.Name(); ok { _spec.SetField(setting.FieldName, field.TypeString, value) _node.Name = value } if value, ok := sc.mutation.Value(); ok { _spec.SetField(setting.FieldValue, field.TypeString, value) _node.Value = value } return _node, _spec } // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause // of the `INSERT` statement. For example: // // client.Setting.Create(). // SetCreatedAt(v). // OnConflict( // // Update the row with the new values // // the was proposed for insertion. // sql.ResolveWithNewValues(), // ). // // Override some of the fields with custom // // update values. // Update(func(u *ent.SettingUpsert) { // SetCreatedAt(v+v). // }). // Exec(ctx) func (sc *SettingCreate) OnConflict(opts ...sql.ConflictOption) *SettingUpsertOne { sc.conflict = opts return &SettingUpsertOne{ create: sc, } } // OnConflictColumns calls `OnConflict` and configures the columns // as conflict target. Using this option is equivalent to using: // // client.Setting.Create(). // OnConflict(sql.ConflictColumns(columns...)). // Exec(ctx) func (sc *SettingCreate) OnConflictColumns(columns ...string) *SettingUpsertOne { sc.conflict = append(sc.conflict, sql.ConflictColumns(columns...)) return &SettingUpsertOne{ create: sc, } } type ( // SettingUpsertOne is the builder for "upsert"-ing // one Setting node. SettingUpsertOne struct { create *SettingCreate } // SettingUpsert is the "OnConflict" setter. SettingUpsert struct { *sql.UpdateSet } ) // SetUpdatedAt sets the "updated_at" field. func (u *SettingUpsert) SetUpdatedAt(v time.Time) *SettingUpsert { u.Set(setting.FieldUpdatedAt, v) return u } // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create. func (u *SettingUpsert) UpdateUpdatedAt() *SettingUpsert { u.SetExcluded(setting.FieldUpdatedAt) return u } // SetDeletedAt sets the "deleted_at" field. func (u *SettingUpsert) SetDeletedAt(v time.Time) *SettingUpsert { u.Set(setting.FieldDeletedAt, v) return u } // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create. func (u *SettingUpsert) UpdateDeletedAt() *SettingUpsert { u.SetExcluded(setting.FieldDeletedAt) return u } // ClearDeletedAt clears the value of the "deleted_at" field. func (u *SettingUpsert) ClearDeletedAt() *SettingUpsert { u.SetNull(setting.FieldDeletedAt) return u } // SetName sets the "name" field. func (u *SettingUpsert) SetName(v string) *SettingUpsert { u.Set(setting.FieldName, v) return u } // UpdateName sets the "name" field to the value that was provided on create. func (u *SettingUpsert) UpdateName() *SettingUpsert { u.SetExcluded(setting.FieldName) return u } // SetValue sets the "value" field. func (u *SettingUpsert) SetValue(v string) *SettingUpsert { u.Set(setting.FieldValue, v) return u } // UpdateValue sets the "value" field to the value that was provided on create. func (u *SettingUpsert) UpdateValue() *SettingUpsert { u.SetExcluded(setting.FieldValue) return u } // ClearValue clears the value of the "value" field. func (u *SettingUpsert) ClearValue() *SettingUpsert { u.SetNull(setting.FieldValue) return u } // UpdateNewValues updates the mutable fields using the new values that were set on create. // Using this option is equivalent to using: // // client.Setting.Create(). // OnConflict( // sql.ResolveWithNewValues(), // ). // Exec(ctx) func (u *SettingUpsertOne) UpdateNewValues() *SettingUpsertOne { u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues()) u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) { if _, exists := u.create.mutation.CreatedAt(); exists { s.SetIgnore(setting.FieldCreatedAt) } })) return u } // Ignore sets each column to itself in case of conflict. // Using this option is equivalent to using: // // client.Setting.Create(). // OnConflict(sql.ResolveWithIgnore()). // Exec(ctx) func (u *SettingUpsertOne) Ignore() *SettingUpsertOne { u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore()) return u } // DoNothing configures the conflict_action to `DO NOTHING`. // Supported only by SQLite and PostgreSQL. func (u *SettingUpsertOne) DoNothing() *SettingUpsertOne { u.create.conflict = append(u.create.conflict, sql.DoNothing()) return u } // Update allows overriding fields `UPDATE` values. See the SettingCreate.OnConflict // documentation for more info. func (u *SettingUpsertOne) Update(set func(*SettingUpsert)) *SettingUpsertOne { u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) { set(&SettingUpsert{UpdateSet: update}) })) return u } // SetUpdatedAt sets the "updated_at" field. func (u *SettingUpsertOne) SetUpdatedAt(v time.Time) *SettingUpsertOne { return u.Update(func(s *SettingUpsert) { s.SetUpdatedAt(v) }) } // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create. func (u *SettingUpsertOne) UpdateUpdatedAt() *SettingUpsertOne { return u.Update(func(s *SettingUpsert) { s.UpdateUpdatedAt() }) } // SetDeletedAt sets the "deleted_at" field. func (u *SettingUpsertOne) SetDeletedAt(v time.Time) *SettingUpsertOne { return u.Update(func(s *SettingUpsert) { s.SetDeletedAt(v) }) } // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create. func (u *SettingUpsertOne) UpdateDeletedAt() *SettingUpsertOne { return u.Update(func(s *SettingUpsert) { s.UpdateDeletedAt() }) } // ClearDeletedAt clears the value of the "deleted_at" field. func (u *SettingUpsertOne) ClearDeletedAt() *SettingUpsertOne { return u.Update(func(s *SettingUpsert) { s.ClearDeletedAt() }) } // SetName sets the "name" field. func (u *SettingUpsertOne) SetName(v string) *SettingUpsertOne { return u.Update(func(s *SettingUpsert) { s.SetName(v) }) } // UpdateName sets the "name" field to the value that was provided on create. func (u *SettingUpsertOne) UpdateName() *SettingUpsertOne { return u.Update(func(s *SettingUpsert) { s.UpdateName() }) } // SetValue sets the "value" field. func (u *SettingUpsertOne) SetValue(v string) *SettingUpsertOne { return u.Update(func(s *SettingUpsert) { s.SetValue(v) }) } // UpdateValue sets the "value" field to the value that was provided on create. func (u *SettingUpsertOne) UpdateValue() *SettingUpsertOne { return u.Update(func(s *SettingUpsert) { s.UpdateValue() }) } // ClearValue clears the value of the "value" field. func (u *SettingUpsertOne) ClearValue() *SettingUpsertOne { return u.Update(func(s *SettingUpsert) { s.ClearValue() }) } // Exec executes the query. func (u *SettingUpsertOne) Exec(ctx context.Context) error { if len(u.create.conflict) == 0 { return errors.New("ent: missing options for SettingCreate.OnConflict") } return u.create.Exec(ctx) } // ExecX is like Exec, but panics if an error occurs. func (u *SettingUpsertOne) ExecX(ctx context.Context) { if err := u.create.Exec(ctx); err != nil { panic(err) } } // Exec executes the UPSERT query and returns the inserted/updated ID. func (u *SettingUpsertOne) ID(ctx context.Context) (id int, err error) { node, err := u.create.Save(ctx) if err != nil { return id, err } return node.ID, nil } // IDX is like ID, but panics if an error occurs. func (u *SettingUpsertOne) IDX(ctx context.Context) int { id, err := u.ID(ctx) if err != nil { panic(err) } return id } func (m *SettingCreate) SetRawID(t int) *SettingCreate { m.mutation.SetRawID(t) return m } // SettingCreateBulk is the builder for creating many Setting entities in bulk. type SettingCreateBulk struct { config err error builders []*SettingCreate conflict []sql.ConflictOption } // Save creates the Setting entities in the database. func (scb *SettingCreateBulk) Save(ctx context.Context) ([]*Setting, error) { if scb.err != nil { return nil, scb.err } specs := make([]*sqlgraph.CreateSpec, len(scb.builders)) nodes := make([]*Setting, len(scb.builders)) mutators := make([]Mutator, len(scb.builders)) for i := range scb.builders { func(i int, root context.Context) { builder := scb.builders[i] builder.defaults() var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) { mutation, ok := m.(*SettingMutation) 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, scb.builders[i+1].mutation) } else { spec := &sqlgraph.BatchCreateSpec{Nodes: specs} spec.OnConflict = scb.conflict // Invoke the actual operation on the latest mutation in the chain. if err = sqlgraph.BatchCreate(ctx, scb.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, scb.builders[0].mutation); err != nil { return nil, err } } return nodes, nil } // SaveX is like Save, but panics if an error occurs. func (scb *SettingCreateBulk) SaveX(ctx context.Context) []*Setting { v, err := scb.Save(ctx) if err != nil { panic(err) } return v } // Exec executes the query. func (scb *SettingCreateBulk) Exec(ctx context.Context) error { _, err := scb.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (scb *SettingCreateBulk) ExecX(ctx context.Context) { if err := scb.Exec(ctx); err != nil { panic(err) } } // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause // of the `INSERT` statement. For example: // // client.Setting.CreateBulk(builders...). // OnConflict( // // Update the row with the new values // // the was proposed for insertion. // sql.ResolveWithNewValues(), // ). // // Override some of the fields with custom // // update values. // Update(func(u *ent.SettingUpsert) { // SetCreatedAt(v+v). // }). // Exec(ctx) func (scb *SettingCreateBulk) OnConflict(opts ...sql.ConflictOption) *SettingUpsertBulk { scb.conflict = opts return &SettingUpsertBulk{ create: scb, } } // OnConflictColumns calls `OnConflict` and configures the columns // as conflict target. Using this option is equivalent to using: // // client.Setting.Create(). // OnConflict(sql.ConflictColumns(columns...)). // Exec(ctx) func (scb *SettingCreateBulk) OnConflictColumns(columns ...string) *SettingUpsertBulk { scb.conflict = append(scb.conflict, sql.ConflictColumns(columns...)) return &SettingUpsertBulk{ create: scb, } } // SettingUpsertBulk is the builder for "upsert"-ing // a bulk of Setting nodes. type SettingUpsertBulk struct { create *SettingCreateBulk } // UpdateNewValues updates the mutable fields using the new values that // were set on create. Using this option is equivalent to using: // // client.Setting.Create(). // OnConflict( // sql.ResolveWithNewValues(), // ). // Exec(ctx) func (u *SettingUpsertBulk) UpdateNewValues() *SettingUpsertBulk { u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues()) u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) { for _, b := range u.create.builders { if _, exists := b.mutation.CreatedAt(); exists { s.SetIgnore(setting.FieldCreatedAt) } } })) return u } // Ignore sets each column to itself in case of conflict. // Using this option is equivalent to using: // // client.Setting.Create(). // OnConflict(sql.ResolveWithIgnore()). // Exec(ctx) func (u *SettingUpsertBulk) Ignore() *SettingUpsertBulk { u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore()) return u } // DoNothing configures the conflict_action to `DO NOTHING`. // Supported only by SQLite and PostgreSQL. func (u *SettingUpsertBulk) DoNothing() *SettingUpsertBulk { u.create.conflict = append(u.create.conflict, sql.DoNothing()) return u } // Update allows overriding fields `UPDATE` values. See the SettingCreateBulk.OnConflict // documentation for more info. func (u *SettingUpsertBulk) Update(set func(*SettingUpsert)) *SettingUpsertBulk { u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) { set(&SettingUpsert{UpdateSet: update}) })) return u } // SetUpdatedAt sets the "updated_at" field. func (u *SettingUpsertBulk) SetUpdatedAt(v time.Time) *SettingUpsertBulk { return u.Update(func(s *SettingUpsert) { s.SetUpdatedAt(v) }) } // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create. func (u *SettingUpsertBulk) UpdateUpdatedAt() *SettingUpsertBulk { return u.Update(func(s *SettingUpsert) { s.UpdateUpdatedAt() }) } // SetDeletedAt sets the "deleted_at" field. func (u *SettingUpsertBulk) SetDeletedAt(v time.Time) *SettingUpsertBulk { return u.Update(func(s *SettingUpsert) { s.SetDeletedAt(v) }) } // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create. func (u *SettingUpsertBulk) UpdateDeletedAt() *SettingUpsertBulk { return u.Update(func(s *SettingUpsert) { s.UpdateDeletedAt() }) } // ClearDeletedAt clears the value of the "deleted_at" field. func (u *SettingUpsertBulk) ClearDeletedAt() *SettingUpsertBulk { return u.Update(func(s *SettingUpsert) { s.ClearDeletedAt() }) } // SetName sets the "name" field. func (u *SettingUpsertBulk) SetName(v string) *SettingUpsertBulk { return u.Update(func(s *SettingUpsert) { s.SetName(v) }) } // UpdateName sets the "name" field to the value that was provided on create. func (u *SettingUpsertBulk) UpdateName() *SettingUpsertBulk { return u.Update(func(s *SettingUpsert) { s.UpdateName() }) } // SetValue sets the "value" field. func (u *SettingUpsertBulk) SetValue(v string) *SettingUpsertBulk { return u.Update(func(s *SettingUpsert) { s.SetValue(v) }) } // UpdateValue sets the "value" field to the value that was provided on create. func (u *SettingUpsertBulk) UpdateValue() *SettingUpsertBulk { return u.Update(func(s *SettingUpsert) { s.UpdateValue() }) } // ClearValue clears the value of the "value" field. func (u *SettingUpsertBulk) ClearValue() *SettingUpsertBulk { return u.Update(func(s *SettingUpsert) { s.ClearValue() }) } // Exec executes the query. func (u *SettingUpsertBulk) Exec(ctx context.Context) error { if u.create.err != nil { return u.create.err } for i, b := range u.create.builders { if len(b.conflict) != 0 { return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the SettingCreateBulk instead", i) } } if len(u.create.conflict) == 0 { return errors.New("ent: missing options for SettingCreateBulk.OnConflict") } return u.create.Exec(ctx) } // ExecX is like Exec, but panics if an error occurs. func (u *SettingUpsertBulk) ExecX(ctx context.Context) { if err := u.create.Exec(ctx); err != nil { panic(err) } }