mirror of https://github.com/cloudreve/Cloudreve
363 lines
10 KiB
Go
363 lines
10 KiB
Go
// 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/predicate"
|
|
"github.com/cloudreve/Cloudreve/v4/ent/setting"
|
|
)
|
|
|
|
// SettingUpdate is the builder for updating Setting entities.
|
|
type SettingUpdate struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *SettingMutation
|
|
}
|
|
|
|
// Where appends a list predicates to the SettingUpdate builder.
|
|
func (su *SettingUpdate) Where(ps ...predicate.Setting) *SettingUpdate {
|
|
su.mutation.Where(ps...)
|
|
return su
|
|
}
|
|
|
|
// SetUpdatedAt sets the "updated_at" field.
|
|
func (su *SettingUpdate) SetUpdatedAt(t time.Time) *SettingUpdate {
|
|
su.mutation.SetUpdatedAt(t)
|
|
return su
|
|
}
|
|
|
|
// SetDeletedAt sets the "deleted_at" field.
|
|
func (su *SettingUpdate) SetDeletedAt(t time.Time) *SettingUpdate {
|
|
su.mutation.SetDeletedAt(t)
|
|
return su
|
|
}
|
|
|
|
// SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
|
|
func (su *SettingUpdate) SetNillableDeletedAt(t *time.Time) *SettingUpdate {
|
|
if t != nil {
|
|
su.SetDeletedAt(*t)
|
|
}
|
|
return su
|
|
}
|
|
|
|
// ClearDeletedAt clears the value of the "deleted_at" field.
|
|
func (su *SettingUpdate) ClearDeletedAt() *SettingUpdate {
|
|
su.mutation.ClearDeletedAt()
|
|
return su
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (su *SettingUpdate) SetName(s string) *SettingUpdate {
|
|
su.mutation.SetName(s)
|
|
return su
|
|
}
|
|
|
|
// SetNillableName sets the "name" field if the given value is not nil.
|
|
func (su *SettingUpdate) SetNillableName(s *string) *SettingUpdate {
|
|
if s != nil {
|
|
su.SetName(*s)
|
|
}
|
|
return su
|
|
}
|
|
|
|
// SetValue sets the "value" field.
|
|
func (su *SettingUpdate) SetValue(s string) *SettingUpdate {
|
|
su.mutation.SetValue(s)
|
|
return su
|
|
}
|
|
|
|
// SetNillableValue sets the "value" field if the given value is not nil.
|
|
func (su *SettingUpdate) SetNillableValue(s *string) *SettingUpdate {
|
|
if s != nil {
|
|
su.SetValue(*s)
|
|
}
|
|
return su
|
|
}
|
|
|
|
// ClearValue clears the value of the "value" field.
|
|
func (su *SettingUpdate) ClearValue() *SettingUpdate {
|
|
su.mutation.ClearValue()
|
|
return su
|
|
}
|
|
|
|
// Mutation returns the SettingMutation object of the builder.
|
|
func (su *SettingUpdate) Mutation() *SettingMutation {
|
|
return su.mutation
|
|
}
|
|
|
|
// Save executes the query and returns the number of nodes affected by the update operation.
|
|
func (su *SettingUpdate) Save(ctx context.Context) (int, error) {
|
|
if err := su.defaults(); err != nil {
|
|
return 0, err
|
|
}
|
|
return withHooks(ctx, su.sqlSave, su.mutation, su.hooks)
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (su *SettingUpdate) SaveX(ctx context.Context) int {
|
|
affected, err := su.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return affected
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (su *SettingUpdate) Exec(ctx context.Context) error {
|
|
_, err := su.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (su *SettingUpdate) ExecX(ctx context.Context) {
|
|
if err := su.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// defaults sets the default values of the builder before save.
|
|
func (su *SettingUpdate) defaults() error {
|
|
if _, ok := su.mutation.UpdatedAt(); !ok {
|
|
if setting.UpdateDefaultUpdatedAt == nil {
|
|
return fmt.Errorf("ent: uninitialized setting.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
|
|
}
|
|
v := setting.UpdateDefaultUpdatedAt()
|
|
su.mutation.SetUpdatedAt(v)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (su *SettingUpdate) sqlSave(ctx context.Context) (n int, err error) {
|
|
_spec := sqlgraph.NewUpdateSpec(setting.Table, setting.Columns, sqlgraph.NewFieldSpec(setting.FieldID, field.TypeInt))
|
|
if ps := su.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := su.mutation.UpdatedAt(); ok {
|
|
_spec.SetField(setting.FieldUpdatedAt, field.TypeTime, value)
|
|
}
|
|
if value, ok := su.mutation.DeletedAt(); ok {
|
|
_spec.SetField(setting.FieldDeletedAt, field.TypeTime, value)
|
|
}
|
|
if su.mutation.DeletedAtCleared() {
|
|
_spec.ClearField(setting.FieldDeletedAt, field.TypeTime)
|
|
}
|
|
if value, ok := su.mutation.Name(); ok {
|
|
_spec.SetField(setting.FieldName, field.TypeString, value)
|
|
}
|
|
if value, ok := su.mutation.Value(); ok {
|
|
_spec.SetField(setting.FieldValue, field.TypeString, value)
|
|
}
|
|
if su.mutation.ValueCleared() {
|
|
_spec.ClearField(setting.FieldValue, field.TypeString)
|
|
}
|
|
if n, err = sqlgraph.UpdateNodes(ctx, su.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{setting.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return 0, err
|
|
}
|
|
su.mutation.done = true
|
|
return n, nil
|
|
}
|
|
|
|
// SettingUpdateOne is the builder for updating a single Setting entity.
|
|
type SettingUpdateOne struct {
|
|
config
|
|
fields []string
|
|
hooks []Hook
|
|
mutation *SettingMutation
|
|
}
|
|
|
|
// SetUpdatedAt sets the "updated_at" field.
|
|
func (suo *SettingUpdateOne) SetUpdatedAt(t time.Time) *SettingUpdateOne {
|
|
suo.mutation.SetUpdatedAt(t)
|
|
return suo
|
|
}
|
|
|
|
// SetDeletedAt sets the "deleted_at" field.
|
|
func (suo *SettingUpdateOne) SetDeletedAt(t time.Time) *SettingUpdateOne {
|
|
suo.mutation.SetDeletedAt(t)
|
|
return suo
|
|
}
|
|
|
|
// SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
|
|
func (suo *SettingUpdateOne) SetNillableDeletedAt(t *time.Time) *SettingUpdateOne {
|
|
if t != nil {
|
|
suo.SetDeletedAt(*t)
|
|
}
|
|
return suo
|
|
}
|
|
|
|
// ClearDeletedAt clears the value of the "deleted_at" field.
|
|
func (suo *SettingUpdateOne) ClearDeletedAt() *SettingUpdateOne {
|
|
suo.mutation.ClearDeletedAt()
|
|
return suo
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (suo *SettingUpdateOne) SetName(s string) *SettingUpdateOne {
|
|
suo.mutation.SetName(s)
|
|
return suo
|
|
}
|
|
|
|
// SetNillableName sets the "name" field if the given value is not nil.
|
|
func (suo *SettingUpdateOne) SetNillableName(s *string) *SettingUpdateOne {
|
|
if s != nil {
|
|
suo.SetName(*s)
|
|
}
|
|
return suo
|
|
}
|
|
|
|
// SetValue sets the "value" field.
|
|
func (suo *SettingUpdateOne) SetValue(s string) *SettingUpdateOne {
|
|
suo.mutation.SetValue(s)
|
|
return suo
|
|
}
|
|
|
|
// SetNillableValue sets the "value" field if the given value is not nil.
|
|
func (suo *SettingUpdateOne) SetNillableValue(s *string) *SettingUpdateOne {
|
|
if s != nil {
|
|
suo.SetValue(*s)
|
|
}
|
|
return suo
|
|
}
|
|
|
|
// ClearValue clears the value of the "value" field.
|
|
func (suo *SettingUpdateOne) ClearValue() *SettingUpdateOne {
|
|
suo.mutation.ClearValue()
|
|
return suo
|
|
}
|
|
|
|
// Mutation returns the SettingMutation object of the builder.
|
|
func (suo *SettingUpdateOne) Mutation() *SettingMutation {
|
|
return suo.mutation
|
|
}
|
|
|
|
// Where appends a list predicates to the SettingUpdate builder.
|
|
func (suo *SettingUpdateOne) Where(ps ...predicate.Setting) *SettingUpdateOne {
|
|
suo.mutation.Where(ps...)
|
|
return suo
|
|
}
|
|
|
|
// Select allows selecting one or more fields (columns) of the returned entity.
|
|
// The default is selecting all fields defined in the entity schema.
|
|
func (suo *SettingUpdateOne) Select(field string, fields ...string) *SettingUpdateOne {
|
|
suo.fields = append([]string{field}, fields...)
|
|
return suo
|
|
}
|
|
|
|
// Save executes the query and returns the updated Setting entity.
|
|
func (suo *SettingUpdateOne) Save(ctx context.Context) (*Setting, error) {
|
|
if err := suo.defaults(); err != nil {
|
|
return nil, err
|
|
}
|
|
return withHooks(ctx, suo.sqlSave, suo.mutation, suo.hooks)
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (suo *SettingUpdateOne) SaveX(ctx context.Context) *Setting {
|
|
node, err := suo.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// Exec executes the query on the entity.
|
|
func (suo *SettingUpdateOne) Exec(ctx context.Context) error {
|
|
_, err := suo.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (suo *SettingUpdateOne) ExecX(ctx context.Context) {
|
|
if err := suo.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// defaults sets the default values of the builder before save.
|
|
func (suo *SettingUpdateOne) defaults() error {
|
|
if _, ok := suo.mutation.UpdatedAt(); !ok {
|
|
if setting.UpdateDefaultUpdatedAt == nil {
|
|
return fmt.Errorf("ent: uninitialized setting.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
|
|
}
|
|
v := setting.UpdateDefaultUpdatedAt()
|
|
suo.mutation.SetUpdatedAt(v)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (suo *SettingUpdateOne) sqlSave(ctx context.Context) (_node *Setting, err error) {
|
|
_spec := sqlgraph.NewUpdateSpec(setting.Table, setting.Columns, sqlgraph.NewFieldSpec(setting.FieldID, field.TypeInt))
|
|
id, ok := suo.mutation.ID()
|
|
if !ok {
|
|
return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Setting.id" for update`)}
|
|
}
|
|
_spec.Node.ID.Value = id
|
|
if fields := suo.fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, setting.FieldID)
|
|
for _, f := range fields {
|
|
if !setting.ValidColumn(f) {
|
|
return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
if f != setting.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, f)
|
|
}
|
|
}
|
|
}
|
|
if ps := suo.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := suo.mutation.UpdatedAt(); ok {
|
|
_spec.SetField(setting.FieldUpdatedAt, field.TypeTime, value)
|
|
}
|
|
if value, ok := suo.mutation.DeletedAt(); ok {
|
|
_spec.SetField(setting.FieldDeletedAt, field.TypeTime, value)
|
|
}
|
|
if suo.mutation.DeletedAtCleared() {
|
|
_spec.ClearField(setting.FieldDeletedAt, field.TypeTime)
|
|
}
|
|
if value, ok := suo.mutation.Name(); ok {
|
|
_spec.SetField(setting.FieldName, field.TypeString, value)
|
|
}
|
|
if value, ok := suo.mutation.Value(); ok {
|
|
_spec.SetField(setting.FieldValue, field.TypeString, value)
|
|
}
|
|
if suo.mutation.ValueCleared() {
|
|
_spec.ClearField(setting.FieldValue, field.TypeString)
|
|
}
|
|
_node = &Setting{config: suo.config}
|
|
_spec.Assign = _node.assignValues
|
|
_spec.ScanValues = _node.scanValues
|
|
if err = sqlgraph.UpdateNode(ctx, suo.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{setting.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return nil, err
|
|
}
|
|
suo.mutation.done = true
|
|
return _node, nil
|
|
}
|