2024-07-14 15:58:32 +00:00
|
|
|
// Code generated by ent, DO NOT EDIT.
|
|
|
|
|
|
|
|
package ent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"entgo.io/ent"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
2024-07-20 15:19:25 +00:00
|
|
|
"leafdev.top/leaf/rag/ent/document"
|
|
|
|
"leafdev.top/leaf/rag/ent/documentblock"
|
2024-07-14 17:22:40 +00:00
|
|
|
"leafdev.top/leaf/rag/ent/library"
|
|
|
|
"leafdev.top/leaf/rag/ent/predicate"
|
2024-07-14 15:58:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// Operation types.
|
|
|
|
OpCreate = ent.OpCreate
|
|
|
|
OpDelete = ent.OpDelete
|
|
|
|
OpDeleteOne = ent.OpDeleteOne
|
|
|
|
OpUpdate = ent.OpUpdate
|
|
|
|
OpUpdateOne = ent.OpUpdateOne
|
|
|
|
|
|
|
|
// Node types.
|
2024-07-20 15:19:25 +00:00
|
|
|
TypeDocument = "Document"
|
|
|
|
TypeDocumentBlock = "DocumentBlock"
|
|
|
|
TypeLibrary = "Library"
|
2024-07-14 15:58:32 +00:00
|
|
|
)
|
|
|
|
|
2024-07-20 15:19:25 +00:00
|
|
|
// DocumentMutation represents an operation that mutates the Document nodes in the graph.
|
|
|
|
type DocumentMutation struct {
|
|
|
|
config
|
|
|
|
op Op
|
|
|
|
typ string
|
|
|
|
id *int
|
|
|
|
name *string
|
|
|
|
user_id *string
|
|
|
|
created_at *time.Time
|
|
|
|
updated_at *time.Time
|
|
|
|
clearedFields map[string]struct{}
|
|
|
|
done bool
|
|
|
|
oldValue func(context.Context) (*Document, error)
|
|
|
|
predicates []predicate.Document
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ ent.Mutation = (*DocumentMutation)(nil)
|
|
|
|
|
|
|
|
// documentOption allows management of the mutation configuration using functional options.
|
|
|
|
type documentOption func(*DocumentMutation)
|
|
|
|
|
|
|
|
// newDocumentMutation creates new mutation for the Document entity.
|
|
|
|
func newDocumentMutation(c config, op Op, opts ...documentOption) *DocumentMutation {
|
|
|
|
m := &DocumentMutation{
|
|
|
|
config: c,
|
|
|
|
op: op,
|
|
|
|
typ: TypeDocument,
|
|
|
|
clearedFields: make(map[string]struct{}),
|
|
|
|
}
|
|
|
|
for _, opt := range opts {
|
|
|
|
opt(m)
|
|
|
|
}
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
// withDocumentID sets the ID field of the mutation.
|
|
|
|
func withDocumentID(id int) documentOption {
|
|
|
|
return func(m *DocumentMutation) {
|
|
|
|
var (
|
|
|
|
err error
|
|
|
|
once sync.Once
|
|
|
|
value *Document
|
|
|
|
)
|
|
|
|
m.oldValue = func(ctx context.Context) (*Document, error) {
|
|
|
|
once.Do(func() {
|
|
|
|
if m.done {
|
|
|
|
err = errors.New("querying old values post mutation is not allowed")
|
|
|
|
} else {
|
|
|
|
value, err = m.Client().Document.Get(ctx, id)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return value, err
|
|
|
|
}
|
|
|
|
m.id = &id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// withDocument sets the old Document of the mutation.
|
|
|
|
func withDocument(node *Document) documentOption {
|
|
|
|
return func(m *DocumentMutation) {
|
|
|
|
m.oldValue = func(context.Context) (*Document, error) {
|
|
|
|
return node, nil
|
|
|
|
}
|
|
|
|
m.id = &node.ID
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Client returns a new `ent.Client` from the mutation. If the mutation was
|
|
|
|
// executed in a transaction (ent.Tx), a transactional client is returned.
|
|
|
|
func (m DocumentMutation) Client() *Client {
|
|
|
|
client := &Client{config: m.config}
|
|
|
|
client.init()
|
|
|
|
return client
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tx returns an `ent.Tx` for mutations that were executed in transactions;
|
|
|
|
// it returns an error otherwise.
|
|
|
|
func (m DocumentMutation) Tx() (*Tx, error) {
|
|
|
|
if _, ok := m.driver.(*txDriver); !ok {
|
|
|
|
return nil, errors.New("ent: mutation is not running in a transaction")
|
|
|
|
}
|
|
|
|
tx := &Tx{config: m.config}
|
|
|
|
tx.init()
|
|
|
|
return tx, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ID returns the ID value in the mutation. Note that the ID is only available
|
|
|
|
// if it was provided to the builder or after it was returned from the database.
|
|
|
|
func (m *DocumentMutation) ID() (id int, exists bool) {
|
|
|
|
if m.id == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *m.id, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// IDs queries the database and returns the entity ids that match the mutation's predicate.
|
|
|
|
// That means, if the mutation is applied within a transaction with an isolation level such
|
|
|
|
// as sql.LevelSerializable, the returned ids match the ids of the rows that will be updated
|
|
|
|
// or updated by the mutation.
|
|
|
|
func (m *DocumentMutation) IDs(ctx context.Context) ([]int, error) {
|
|
|
|
switch {
|
|
|
|
case m.op.Is(OpUpdateOne | OpDeleteOne):
|
|
|
|
id, exists := m.ID()
|
|
|
|
if exists {
|
|
|
|
return []int{id}, nil
|
|
|
|
}
|
|
|
|
fallthrough
|
|
|
|
case m.op.Is(OpUpdate | OpDelete):
|
|
|
|
return m.Client().Document.Query().Where(m.predicates...).IDs(ctx)
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("IDs is not allowed on %s operations", m.op)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetName sets the "name" field.
|
|
|
|
func (m *DocumentMutation) SetName(s string) {
|
|
|
|
m.name = &s
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name returns the value of the "name" field in the mutation.
|
|
|
|
func (m *DocumentMutation) Name() (r string, exists bool) {
|
|
|
|
v := m.name
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldName returns the old "name" field's value of the Document entity.
|
|
|
|
// If the Document object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *DocumentMutation) OldName(ctx context.Context) (v string, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldName is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldName requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldName: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.Name, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetName resets all changes to the "name" field.
|
|
|
|
func (m *DocumentMutation) ResetName() {
|
|
|
|
m.name = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetUserID sets the "user_id" field.
|
|
|
|
func (m *DocumentMutation) SetUserID(s string) {
|
|
|
|
m.user_id = &s
|
|
|
|
}
|
|
|
|
|
|
|
|
// UserID returns the value of the "user_id" field in the mutation.
|
|
|
|
func (m *DocumentMutation) UserID() (r string, exists bool) {
|
|
|
|
v := m.user_id
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldUserID returns the old "user_id" field's value of the Document entity.
|
|
|
|
// If the Document object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *DocumentMutation) OldUserID(ctx context.Context) (v string, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldUserID is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldUserID requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldUserID: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.UserID, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetUserID resets all changes to the "user_id" field.
|
|
|
|
func (m *DocumentMutation) ResetUserID() {
|
|
|
|
m.user_id = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetCreatedAt sets the "created_at" field.
|
|
|
|
func (m *DocumentMutation) SetCreatedAt(t time.Time) {
|
|
|
|
m.created_at = &t
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreatedAt returns the value of the "created_at" field in the mutation.
|
|
|
|
func (m *DocumentMutation) CreatedAt() (r time.Time, exists bool) {
|
|
|
|
v := m.created_at
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldCreatedAt returns the old "created_at" field's value of the Document entity.
|
|
|
|
// If the Document object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *DocumentMutation) OldCreatedAt(ctx context.Context) (v time.Time, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldCreatedAt is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldCreatedAt requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldCreatedAt: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.CreatedAt, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetCreatedAt resets all changes to the "created_at" field.
|
|
|
|
func (m *DocumentMutation) ResetCreatedAt() {
|
|
|
|
m.created_at = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetUpdatedAt sets the "updated_at" field.
|
|
|
|
func (m *DocumentMutation) SetUpdatedAt(t time.Time) {
|
|
|
|
m.updated_at = &t
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatedAt returns the value of the "updated_at" field in the mutation.
|
|
|
|
func (m *DocumentMutation) UpdatedAt() (r time.Time, exists bool) {
|
|
|
|
v := m.updated_at
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldUpdatedAt returns the old "updated_at" field's value of the Document entity.
|
|
|
|
// If the Document object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *DocumentMutation) OldUpdatedAt(ctx context.Context) (v time.Time, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldUpdatedAt is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldUpdatedAt requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldUpdatedAt: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.UpdatedAt, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetUpdatedAt resets all changes to the "updated_at" field.
|
|
|
|
func (m *DocumentMutation) ResetUpdatedAt() {
|
|
|
|
m.updated_at = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Where appends a list predicates to the DocumentMutation builder.
|
|
|
|
func (m *DocumentMutation) Where(ps ...predicate.Document) {
|
|
|
|
m.predicates = append(m.predicates, ps...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// WhereP appends storage-level predicates to the DocumentMutation builder. Using this method,
|
|
|
|
// users can use type-assertion to append predicates that do not depend on any generated package.
|
|
|
|
func (m *DocumentMutation) WhereP(ps ...func(*sql.Selector)) {
|
|
|
|
p := make([]predicate.Document, len(ps))
|
|
|
|
for i := range ps {
|
|
|
|
p[i] = ps[i]
|
|
|
|
}
|
|
|
|
m.Where(p...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Op returns the operation name.
|
|
|
|
func (m *DocumentMutation) Op() Op {
|
|
|
|
return m.op
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetOp allows setting the mutation operation.
|
|
|
|
func (m *DocumentMutation) SetOp(op Op) {
|
|
|
|
m.op = op
|
|
|
|
}
|
|
|
|
|
|
|
|
// Type returns the node type of this mutation (Document).
|
|
|
|
func (m *DocumentMutation) Type() string {
|
|
|
|
return m.typ
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fields returns all fields that were changed during this mutation. Note that in
|
|
|
|
// order to get all numeric fields that were incremented/decremented, call
|
|
|
|
// AddedFields().
|
|
|
|
func (m *DocumentMutation) Fields() []string {
|
|
|
|
fields := make([]string, 0, 4)
|
|
|
|
if m.name != nil {
|
|
|
|
fields = append(fields, document.FieldName)
|
|
|
|
}
|
|
|
|
if m.user_id != nil {
|
|
|
|
fields = append(fields, document.FieldUserID)
|
|
|
|
}
|
|
|
|
if m.created_at != nil {
|
|
|
|
fields = append(fields, document.FieldCreatedAt)
|
|
|
|
}
|
|
|
|
if m.updated_at != nil {
|
|
|
|
fields = append(fields, document.FieldUpdatedAt)
|
|
|
|
}
|
|
|
|
return fields
|
|
|
|
}
|
|
|
|
|
|
|
|
// Field returns the value of a field with the given name. The second boolean
|
|
|
|
// return value indicates that this field was not set, or was not defined in the
|
|
|
|
// schema.
|
|
|
|
func (m *DocumentMutation) Field(name string) (ent.Value, bool) {
|
|
|
|
switch name {
|
|
|
|
case document.FieldName:
|
|
|
|
return m.Name()
|
|
|
|
case document.FieldUserID:
|
|
|
|
return m.UserID()
|
|
|
|
case document.FieldCreatedAt:
|
|
|
|
return m.CreatedAt()
|
|
|
|
case document.FieldUpdatedAt:
|
|
|
|
return m.UpdatedAt()
|
|
|
|
}
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldField returns the old value of the field from the database. An error is
|
|
|
|
// returned if the mutation operation is not UpdateOne, or the query to the
|
|
|
|
// database failed.
|
|
|
|
func (m *DocumentMutation) OldField(ctx context.Context, name string) (ent.Value, error) {
|
|
|
|
switch name {
|
|
|
|
case document.FieldName:
|
|
|
|
return m.OldName(ctx)
|
|
|
|
case document.FieldUserID:
|
|
|
|
return m.OldUserID(ctx)
|
|
|
|
case document.FieldCreatedAt:
|
|
|
|
return m.OldCreatedAt(ctx)
|
|
|
|
case document.FieldUpdatedAt:
|
|
|
|
return m.OldUpdatedAt(ctx)
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("unknown Document field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetField sets the value of a field with the given name. It returns an error if
|
|
|
|
// the field is not defined in the schema, or if the type mismatched the field
|
|
|
|
// type.
|
|
|
|
func (m *DocumentMutation) SetField(name string, value ent.Value) error {
|
|
|
|
switch name {
|
|
|
|
case document.FieldName:
|
|
|
|
v, ok := value.(string)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetName(v)
|
|
|
|
return nil
|
|
|
|
case document.FieldUserID:
|
|
|
|
v, ok := value.(string)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetUserID(v)
|
|
|
|
return nil
|
|
|
|
case document.FieldCreatedAt:
|
|
|
|
v, ok := value.(time.Time)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetCreatedAt(v)
|
|
|
|
return nil
|
|
|
|
case document.FieldUpdatedAt:
|
|
|
|
v, ok := value.(time.Time)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetUpdatedAt(v)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("unknown Document field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddedFields returns all numeric fields that were incremented/decremented during
|
|
|
|
// this mutation.
|
|
|
|
func (m *DocumentMutation) AddedFields() []string {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddedField returns the numeric value that was incremented/decremented on a field
|
|
|
|
// with the given name. The second boolean return value indicates that this field
|
|
|
|
// was not set, or was not defined in the schema.
|
|
|
|
func (m *DocumentMutation) AddedField(name string) (ent.Value, bool) {
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddField adds the value to the field with the given name. It returns an error if
|
|
|
|
// the field is not defined in the schema, or if the type mismatched the field
|
|
|
|
// type.
|
|
|
|
func (m *DocumentMutation) AddField(name string, value ent.Value) error {
|
|
|
|
switch name {
|
|
|
|
}
|
|
|
|
return fmt.Errorf("unknown Document numeric field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearedFields returns all nullable fields that were cleared during this
|
|
|
|
// mutation.
|
|
|
|
func (m *DocumentMutation) ClearedFields() []string {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FieldCleared returns a boolean indicating if a field with the given name was
|
|
|
|
// cleared in this mutation.
|
|
|
|
func (m *DocumentMutation) FieldCleared(name string) bool {
|
|
|
|
_, ok := m.clearedFields[name]
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearField clears the value of the field with the given name. It returns an
|
|
|
|
// error if the field is not defined in the schema.
|
|
|
|
func (m *DocumentMutation) ClearField(name string) error {
|
|
|
|
return fmt.Errorf("unknown Document nullable field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetField resets all changes in the mutation for the field with the given name.
|
|
|
|
// It returns an error if the field is not defined in the schema.
|
|
|
|
func (m *DocumentMutation) ResetField(name string) error {
|
|
|
|
switch name {
|
|
|
|
case document.FieldName:
|
|
|
|
m.ResetName()
|
|
|
|
return nil
|
|
|
|
case document.FieldUserID:
|
|
|
|
m.ResetUserID()
|
|
|
|
return nil
|
|
|
|
case document.FieldCreatedAt:
|
|
|
|
m.ResetCreatedAt()
|
|
|
|
return nil
|
|
|
|
case document.FieldUpdatedAt:
|
|
|
|
m.ResetUpdatedAt()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("unknown Document field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddedEdges returns all edge names that were set/added in this mutation.
|
|
|
|
func (m *DocumentMutation) AddedEdges() []string {
|
|
|
|
edges := make([]string, 0, 0)
|
|
|
|
return edges
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddedIDs returns all IDs (to other nodes) that were added for the given edge
|
|
|
|
// name in this mutation.
|
|
|
|
func (m *DocumentMutation) AddedIDs(name string) []ent.Value {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemovedEdges returns all edge names that were removed in this mutation.
|
|
|
|
func (m *DocumentMutation) RemovedEdges() []string {
|
|
|
|
edges := make([]string, 0, 0)
|
|
|
|
return edges
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemovedIDs returns all IDs (to other nodes) that were removed for the edge with
|
|
|
|
// the given name in this mutation.
|
|
|
|
func (m *DocumentMutation) RemovedIDs(name string) []ent.Value {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearedEdges returns all edge names that were cleared in this mutation.
|
|
|
|
func (m *DocumentMutation) ClearedEdges() []string {
|
|
|
|
edges := make([]string, 0, 0)
|
|
|
|
return edges
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdgeCleared returns a boolean which indicates if the edge with the given name
|
|
|
|
// was cleared in this mutation.
|
|
|
|
func (m *DocumentMutation) EdgeCleared(name string) bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearEdge clears the value of the edge with the given name. It returns an error
|
|
|
|
// if that edge is not defined in the schema.
|
|
|
|
func (m *DocumentMutation) ClearEdge(name string) error {
|
|
|
|
return fmt.Errorf("unknown Document unique edge %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetEdge resets all changes to the edge with the given name in this mutation.
|
|
|
|
// It returns an error if the edge is not defined in the schema.
|
|
|
|
func (m *DocumentMutation) ResetEdge(name string) error {
|
|
|
|
return fmt.Errorf("unknown Document edge %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DocumentBlockMutation represents an operation that mutates the DocumentBlock nodes in the graph.
|
|
|
|
type DocumentBlockMutation struct {
|
|
|
|
config
|
|
|
|
op Op
|
|
|
|
typ string
|
|
|
|
id *int
|
|
|
|
name *string
|
|
|
|
content *string
|
|
|
|
_order *int
|
|
|
|
add_order *int
|
|
|
|
document_id *int
|
|
|
|
adddocument_id *int
|
|
|
|
user_id *string
|
|
|
|
created_at *time.Time
|
|
|
|
updated_at *time.Time
|
|
|
|
clearedFields map[string]struct{}
|
|
|
|
document map[int]struct{}
|
|
|
|
removeddocument map[int]struct{}
|
|
|
|
cleareddocument bool
|
|
|
|
done bool
|
|
|
|
oldValue func(context.Context) (*DocumentBlock, error)
|
|
|
|
predicates []predicate.DocumentBlock
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ ent.Mutation = (*DocumentBlockMutation)(nil)
|
|
|
|
|
|
|
|
// documentblockOption allows management of the mutation configuration using functional options.
|
|
|
|
type documentblockOption func(*DocumentBlockMutation)
|
|
|
|
|
|
|
|
// newDocumentBlockMutation creates new mutation for the DocumentBlock entity.
|
|
|
|
func newDocumentBlockMutation(c config, op Op, opts ...documentblockOption) *DocumentBlockMutation {
|
|
|
|
m := &DocumentBlockMutation{
|
|
|
|
config: c,
|
|
|
|
op: op,
|
|
|
|
typ: TypeDocumentBlock,
|
|
|
|
clearedFields: make(map[string]struct{}),
|
|
|
|
}
|
|
|
|
for _, opt := range opts {
|
|
|
|
opt(m)
|
|
|
|
}
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
// withDocumentBlockID sets the ID field of the mutation.
|
|
|
|
func withDocumentBlockID(id int) documentblockOption {
|
|
|
|
return func(m *DocumentBlockMutation) {
|
|
|
|
var (
|
|
|
|
err error
|
|
|
|
once sync.Once
|
|
|
|
value *DocumentBlock
|
|
|
|
)
|
|
|
|
m.oldValue = func(ctx context.Context) (*DocumentBlock, error) {
|
|
|
|
once.Do(func() {
|
|
|
|
if m.done {
|
|
|
|
err = errors.New("querying old values post mutation is not allowed")
|
|
|
|
} else {
|
|
|
|
value, err = m.Client().DocumentBlock.Get(ctx, id)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return value, err
|
|
|
|
}
|
|
|
|
m.id = &id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// withDocumentBlock sets the old DocumentBlock of the mutation.
|
|
|
|
func withDocumentBlock(node *DocumentBlock) documentblockOption {
|
|
|
|
return func(m *DocumentBlockMutation) {
|
|
|
|
m.oldValue = func(context.Context) (*DocumentBlock, error) {
|
|
|
|
return node, nil
|
|
|
|
}
|
|
|
|
m.id = &node.ID
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Client returns a new `ent.Client` from the mutation. If the mutation was
|
|
|
|
// executed in a transaction (ent.Tx), a transactional client is returned.
|
|
|
|
func (m DocumentBlockMutation) Client() *Client {
|
|
|
|
client := &Client{config: m.config}
|
|
|
|
client.init()
|
|
|
|
return client
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tx returns an `ent.Tx` for mutations that were executed in transactions;
|
|
|
|
// it returns an error otherwise.
|
|
|
|
func (m DocumentBlockMutation) Tx() (*Tx, error) {
|
|
|
|
if _, ok := m.driver.(*txDriver); !ok {
|
|
|
|
return nil, errors.New("ent: mutation is not running in a transaction")
|
|
|
|
}
|
|
|
|
tx := &Tx{config: m.config}
|
|
|
|
tx.init()
|
|
|
|
return tx, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ID returns the ID value in the mutation. Note that the ID is only available
|
|
|
|
// if it was provided to the builder or after it was returned from the database.
|
|
|
|
func (m *DocumentBlockMutation) ID() (id int, exists bool) {
|
|
|
|
if m.id == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *m.id, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// IDs queries the database and returns the entity ids that match the mutation's predicate.
|
|
|
|
// That means, if the mutation is applied within a transaction with an isolation level such
|
|
|
|
// as sql.LevelSerializable, the returned ids match the ids of the rows that will be updated
|
|
|
|
// or updated by the mutation.
|
|
|
|
func (m *DocumentBlockMutation) IDs(ctx context.Context) ([]int, error) {
|
|
|
|
switch {
|
|
|
|
case m.op.Is(OpUpdateOne | OpDeleteOne):
|
|
|
|
id, exists := m.ID()
|
|
|
|
if exists {
|
|
|
|
return []int{id}, nil
|
|
|
|
}
|
|
|
|
fallthrough
|
|
|
|
case m.op.Is(OpUpdate | OpDelete):
|
|
|
|
return m.Client().DocumentBlock.Query().Where(m.predicates...).IDs(ctx)
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("IDs is not allowed on %s operations", m.op)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetName sets the "name" field.
|
|
|
|
func (m *DocumentBlockMutation) SetName(s string) {
|
|
|
|
m.name = &s
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name returns the value of the "name" field in the mutation.
|
|
|
|
func (m *DocumentBlockMutation) Name() (r string, exists bool) {
|
|
|
|
v := m.name
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldName returns the old "name" field's value of the DocumentBlock entity.
|
|
|
|
// If the DocumentBlock object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *DocumentBlockMutation) OldName(ctx context.Context) (v string, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldName is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldName requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldName: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.Name, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetName resets all changes to the "name" field.
|
|
|
|
func (m *DocumentBlockMutation) ResetName() {
|
|
|
|
m.name = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetContent sets the "content" field.
|
|
|
|
func (m *DocumentBlockMutation) SetContent(s string) {
|
|
|
|
m.content = &s
|
|
|
|
}
|
|
|
|
|
|
|
|
// Content returns the value of the "content" field in the mutation.
|
|
|
|
func (m *DocumentBlockMutation) Content() (r string, exists bool) {
|
|
|
|
v := m.content
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldContent returns the old "content" field's value of the DocumentBlock entity.
|
|
|
|
// If the DocumentBlock object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *DocumentBlockMutation) OldContent(ctx context.Context) (v string, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldContent is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldContent requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldContent: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.Content, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetContent resets all changes to the "content" field.
|
|
|
|
func (m *DocumentBlockMutation) ResetContent() {
|
|
|
|
m.content = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetOrder sets the "order" field.
|
|
|
|
func (m *DocumentBlockMutation) SetOrder(i int) {
|
|
|
|
m._order = &i
|
|
|
|
m.add_order = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Order returns the value of the "order" field in the mutation.
|
|
|
|
func (m *DocumentBlockMutation) Order() (r int, exists bool) {
|
|
|
|
v := m._order
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldOrder returns the old "order" field's value of the DocumentBlock entity.
|
|
|
|
// If the DocumentBlock object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *DocumentBlockMutation) OldOrder(ctx context.Context) (v int, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldOrder is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldOrder requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldOrder: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.Order, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddOrder adds i to the "order" field.
|
|
|
|
func (m *DocumentBlockMutation) AddOrder(i int) {
|
|
|
|
if m.add_order != nil {
|
|
|
|
*m.add_order += i
|
|
|
|
} else {
|
|
|
|
m.add_order = &i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddedOrder returns the value that was added to the "order" field in this mutation.
|
|
|
|
func (m *DocumentBlockMutation) AddedOrder() (r int, exists bool) {
|
|
|
|
v := m.add_order
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetOrder resets all changes to the "order" field.
|
|
|
|
func (m *DocumentBlockMutation) ResetOrder() {
|
|
|
|
m._order = nil
|
|
|
|
m.add_order = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetDocumentID sets the "document_id" field.
|
|
|
|
func (m *DocumentBlockMutation) SetDocumentID(i int) {
|
|
|
|
m.document_id = &i
|
|
|
|
m.adddocument_id = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DocumentID returns the value of the "document_id" field in the mutation.
|
|
|
|
func (m *DocumentBlockMutation) DocumentID() (r int, exists bool) {
|
|
|
|
v := m.document_id
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldDocumentID returns the old "document_id" field's value of the DocumentBlock entity.
|
|
|
|
// If the DocumentBlock object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *DocumentBlockMutation) OldDocumentID(ctx context.Context) (v int, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldDocumentID is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldDocumentID requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldDocumentID: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.DocumentID, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddDocumentID adds i to the "document_id" field.
|
|
|
|
func (m *DocumentBlockMutation) AddDocumentID(i int) {
|
|
|
|
if m.adddocument_id != nil {
|
|
|
|
*m.adddocument_id += i
|
|
|
|
} else {
|
|
|
|
m.adddocument_id = &i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddedDocumentID returns the value that was added to the "document_id" field in this mutation.
|
|
|
|
func (m *DocumentBlockMutation) AddedDocumentID() (r int, exists bool) {
|
|
|
|
v := m.adddocument_id
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetDocumentID resets all changes to the "document_id" field.
|
|
|
|
func (m *DocumentBlockMutation) ResetDocumentID() {
|
|
|
|
m.document_id = nil
|
|
|
|
m.adddocument_id = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetUserID sets the "user_id" field.
|
|
|
|
func (m *DocumentBlockMutation) SetUserID(s string) {
|
|
|
|
m.user_id = &s
|
|
|
|
}
|
|
|
|
|
|
|
|
// UserID returns the value of the "user_id" field in the mutation.
|
|
|
|
func (m *DocumentBlockMutation) UserID() (r string, exists bool) {
|
|
|
|
v := m.user_id
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldUserID returns the old "user_id" field's value of the DocumentBlock entity.
|
|
|
|
// If the DocumentBlock object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *DocumentBlockMutation) OldUserID(ctx context.Context) (v string, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldUserID is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldUserID requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldUserID: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.UserID, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetUserID resets all changes to the "user_id" field.
|
|
|
|
func (m *DocumentBlockMutation) ResetUserID() {
|
|
|
|
m.user_id = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetCreatedAt sets the "created_at" field.
|
|
|
|
func (m *DocumentBlockMutation) SetCreatedAt(t time.Time) {
|
|
|
|
m.created_at = &t
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreatedAt returns the value of the "created_at" field in the mutation.
|
|
|
|
func (m *DocumentBlockMutation) CreatedAt() (r time.Time, exists bool) {
|
|
|
|
v := m.created_at
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldCreatedAt returns the old "created_at" field's value of the DocumentBlock entity.
|
|
|
|
// If the DocumentBlock object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *DocumentBlockMutation) OldCreatedAt(ctx context.Context) (v time.Time, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldCreatedAt is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldCreatedAt requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldCreatedAt: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.CreatedAt, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetCreatedAt resets all changes to the "created_at" field.
|
|
|
|
func (m *DocumentBlockMutation) ResetCreatedAt() {
|
|
|
|
m.created_at = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetUpdatedAt sets the "updated_at" field.
|
|
|
|
func (m *DocumentBlockMutation) SetUpdatedAt(t time.Time) {
|
|
|
|
m.updated_at = &t
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatedAt returns the value of the "updated_at" field in the mutation.
|
|
|
|
func (m *DocumentBlockMutation) UpdatedAt() (r time.Time, exists bool) {
|
|
|
|
v := m.updated_at
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldUpdatedAt returns the old "updated_at" field's value of the DocumentBlock entity.
|
|
|
|
// If the DocumentBlock object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *DocumentBlockMutation) OldUpdatedAt(ctx context.Context) (v time.Time, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldUpdatedAt is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldUpdatedAt requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldUpdatedAt: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.UpdatedAt, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetUpdatedAt resets all changes to the "updated_at" field.
|
|
|
|
func (m *DocumentBlockMutation) ResetUpdatedAt() {
|
|
|
|
m.updated_at = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddDocumentIDs adds the "document" edge to the Document entity by ids.
|
|
|
|
func (m *DocumentBlockMutation) AddDocumentIDs(ids ...int) {
|
|
|
|
if m.document == nil {
|
|
|
|
m.document = make(map[int]struct{})
|
|
|
|
}
|
|
|
|
for i := range ids {
|
|
|
|
m.document[ids[i]] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearDocument clears the "document" edge to the Document entity.
|
|
|
|
func (m *DocumentBlockMutation) ClearDocument() {
|
|
|
|
m.cleareddocument = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// DocumentCleared reports if the "document" edge to the Document entity was cleared.
|
|
|
|
func (m *DocumentBlockMutation) DocumentCleared() bool {
|
|
|
|
return m.cleareddocument
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveDocumentIDs removes the "document" edge to the Document entity by IDs.
|
|
|
|
func (m *DocumentBlockMutation) RemoveDocumentIDs(ids ...int) {
|
|
|
|
if m.removeddocument == nil {
|
|
|
|
m.removeddocument = make(map[int]struct{})
|
|
|
|
}
|
|
|
|
for i := range ids {
|
|
|
|
delete(m.document, ids[i])
|
|
|
|
m.removeddocument[ids[i]] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemovedDocument returns the removed IDs of the "document" edge to the Document entity.
|
|
|
|
func (m *DocumentBlockMutation) RemovedDocumentIDs() (ids []int) {
|
|
|
|
for id := range m.removeddocument {
|
|
|
|
ids = append(ids, id)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DocumentIDs returns the "document" edge IDs in the mutation.
|
|
|
|
func (m *DocumentBlockMutation) DocumentIDs() (ids []int) {
|
|
|
|
for id := range m.document {
|
|
|
|
ids = append(ids, id)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetDocument resets all changes to the "document" edge.
|
|
|
|
func (m *DocumentBlockMutation) ResetDocument() {
|
|
|
|
m.document = nil
|
|
|
|
m.cleareddocument = false
|
|
|
|
m.removeddocument = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Where appends a list predicates to the DocumentBlockMutation builder.
|
|
|
|
func (m *DocumentBlockMutation) Where(ps ...predicate.DocumentBlock) {
|
|
|
|
m.predicates = append(m.predicates, ps...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// WhereP appends storage-level predicates to the DocumentBlockMutation builder. Using this method,
|
|
|
|
// users can use type-assertion to append predicates that do not depend on any generated package.
|
|
|
|
func (m *DocumentBlockMutation) WhereP(ps ...func(*sql.Selector)) {
|
|
|
|
p := make([]predicate.DocumentBlock, len(ps))
|
|
|
|
for i := range ps {
|
|
|
|
p[i] = ps[i]
|
|
|
|
}
|
|
|
|
m.Where(p...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Op returns the operation name.
|
|
|
|
func (m *DocumentBlockMutation) Op() Op {
|
|
|
|
return m.op
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetOp allows setting the mutation operation.
|
|
|
|
func (m *DocumentBlockMutation) SetOp(op Op) {
|
|
|
|
m.op = op
|
|
|
|
}
|
|
|
|
|
|
|
|
// Type returns the node type of this mutation (DocumentBlock).
|
|
|
|
func (m *DocumentBlockMutation) Type() string {
|
|
|
|
return m.typ
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fields returns all fields that were changed during this mutation. Note that in
|
|
|
|
// order to get all numeric fields that were incremented/decremented, call
|
|
|
|
// AddedFields().
|
|
|
|
func (m *DocumentBlockMutation) Fields() []string {
|
|
|
|
fields := make([]string, 0, 7)
|
|
|
|
if m.name != nil {
|
|
|
|
fields = append(fields, documentblock.FieldName)
|
|
|
|
}
|
|
|
|
if m.content != nil {
|
|
|
|
fields = append(fields, documentblock.FieldContent)
|
|
|
|
}
|
|
|
|
if m._order != nil {
|
|
|
|
fields = append(fields, documentblock.FieldOrder)
|
|
|
|
}
|
|
|
|
if m.document_id != nil {
|
|
|
|
fields = append(fields, documentblock.FieldDocumentID)
|
|
|
|
}
|
|
|
|
if m.user_id != nil {
|
|
|
|
fields = append(fields, documentblock.FieldUserID)
|
|
|
|
}
|
|
|
|
if m.created_at != nil {
|
|
|
|
fields = append(fields, documentblock.FieldCreatedAt)
|
|
|
|
}
|
|
|
|
if m.updated_at != nil {
|
|
|
|
fields = append(fields, documentblock.FieldUpdatedAt)
|
|
|
|
}
|
|
|
|
return fields
|
|
|
|
}
|
|
|
|
|
|
|
|
// Field returns the value of a field with the given name. The second boolean
|
|
|
|
// return value indicates that this field was not set, or was not defined in the
|
|
|
|
// schema.
|
|
|
|
func (m *DocumentBlockMutation) Field(name string) (ent.Value, bool) {
|
|
|
|
switch name {
|
|
|
|
case documentblock.FieldName:
|
|
|
|
return m.Name()
|
|
|
|
case documentblock.FieldContent:
|
|
|
|
return m.Content()
|
|
|
|
case documentblock.FieldOrder:
|
|
|
|
return m.Order()
|
|
|
|
case documentblock.FieldDocumentID:
|
|
|
|
return m.DocumentID()
|
|
|
|
case documentblock.FieldUserID:
|
|
|
|
return m.UserID()
|
|
|
|
case documentblock.FieldCreatedAt:
|
|
|
|
return m.CreatedAt()
|
|
|
|
case documentblock.FieldUpdatedAt:
|
|
|
|
return m.UpdatedAt()
|
|
|
|
}
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldField returns the old value of the field from the database. An error is
|
|
|
|
// returned if the mutation operation is not UpdateOne, or the query to the
|
|
|
|
// database failed.
|
|
|
|
func (m *DocumentBlockMutation) OldField(ctx context.Context, name string) (ent.Value, error) {
|
|
|
|
switch name {
|
|
|
|
case documentblock.FieldName:
|
|
|
|
return m.OldName(ctx)
|
|
|
|
case documentblock.FieldContent:
|
|
|
|
return m.OldContent(ctx)
|
|
|
|
case documentblock.FieldOrder:
|
|
|
|
return m.OldOrder(ctx)
|
|
|
|
case documentblock.FieldDocumentID:
|
|
|
|
return m.OldDocumentID(ctx)
|
|
|
|
case documentblock.FieldUserID:
|
|
|
|
return m.OldUserID(ctx)
|
|
|
|
case documentblock.FieldCreatedAt:
|
|
|
|
return m.OldCreatedAt(ctx)
|
|
|
|
case documentblock.FieldUpdatedAt:
|
|
|
|
return m.OldUpdatedAt(ctx)
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("unknown DocumentBlock field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetField sets the value of a field with the given name. It returns an error if
|
|
|
|
// the field is not defined in the schema, or if the type mismatched the field
|
|
|
|
// type.
|
|
|
|
func (m *DocumentBlockMutation) SetField(name string, value ent.Value) error {
|
|
|
|
switch name {
|
|
|
|
case documentblock.FieldName:
|
|
|
|
v, ok := value.(string)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetName(v)
|
|
|
|
return nil
|
|
|
|
case documentblock.FieldContent:
|
|
|
|
v, ok := value.(string)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetContent(v)
|
|
|
|
return nil
|
|
|
|
case documentblock.FieldOrder:
|
|
|
|
v, ok := value.(int)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetOrder(v)
|
|
|
|
return nil
|
|
|
|
case documentblock.FieldDocumentID:
|
|
|
|
v, ok := value.(int)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetDocumentID(v)
|
|
|
|
return nil
|
|
|
|
case documentblock.FieldUserID:
|
|
|
|
v, ok := value.(string)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetUserID(v)
|
|
|
|
return nil
|
|
|
|
case documentblock.FieldCreatedAt:
|
|
|
|
v, ok := value.(time.Time)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetCreatedAt(v)
|
|
|
|
return nil
|
|
|
|
case documentblock.FieldUpdatedAt:
|
|
|
|
v, ok := value.(time.Time)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetUpdatedAt(v)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("unknown DocumentBlock field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddedFields returns all numeric fields that were incremented/decremented during
|
|
|
|
// this mutation.
|
|
|
|
func (m *DocumentBlockMutation) AddedFields() []string {
|
|
|
|
var fields []string
|
|
|
|
if m.add_order != nil {
|
|
|
|
fields = append(fields, documentblock.FieldOrder)
|
|
|
|
}
|
|
|
|
if m.adddocument_id != nil {
|
|
|
|
fields = append(fields, documentblock.FieldDocumentID)
|
|
|
|
}
|
|
|
|
return fields
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddedField returns the numeric value that was incremented/decremented on a field
|
|
|
|
// with the given name. The second boolean return value indicates that this field
|
|
|
|
// was not set, or was not defined in the schema.
|
|
|
|
func (m *DocumentBlockMutation) AddedField(name string) (ent.Value, bool) {
|
|
|
|
switch name {
|
|
|
|
case documentblock.FieldOrder:
|
|
|
|
return m.AddedOrder()
|
|
|
|
case documentblock.FieldDocumentID:
|
|
|
|
return m.AddedDocumentID()
|
|
|
|
}
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddField adds the value to the field with the given name. It returns an error if
|
|
|
|
// the field is not defined in the schema, or if the type mismatched the field
|
|
|
|
// type.
|
|
|
|
func (m *DocumentBlockMutation) AddField(name string, value ent.Value) error {
|
|
|
|
switch name {
|
|
|
|
case documentblock.FieldOrder:
|
|
|
|
v, ok := value.(int)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.AddOrder(v)
|
|
|
|
return nil
|
|
|
|
case documentblock.FieldDocumentID:
|
|
|
|
v, ok := value.(int)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.AddDocumentID(v)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("unknown DocumentBlock numeric field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearedFields returns all nullable fields that were cleared during this
|
|
|
|
// mutation.
|
|
|
|
func (m *DocumentBlockMutation) ClearedFields() []string {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FieldCleared returns a boolean indicating if a field with the given name was
|
|
|
|
// cleared in this mutation.
|
|
|
|
func (m *DocumentBlockMutation) FieldCleared(name string) bool {
|
|
|
|
_, ok := m.clearedFields[name]
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearField clears the value of the field with the given name. It returns an
|
|
|
|
// error if the field is not defined in the schema.
|
|
|
|
func (m *DocumentBlockMutation) ClearField(name string) error {
|
|
|
|
return fmt.Errorf("unknown DocumentBlock nullable field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetField resets all changes in the mutation for the field with the given name.
|
|
|
|
// It returns an error if the field is not defined in the schema.
|
|
|
|
func (m *DocumentBlockMutation) ResetField(name string) error {
|
|
|
|
switch name {
|
|
|
|
case documentblock.FieldName:
|
|
|
|
m.ResetName()
|
|
|
|
return nil
|
|
|
|
case documentblock.FieldContent:
|
|
|
|
m.ResetContent()
|
|
|
|
return nil
|
|
|
|
case documentblock.FieldOrder:
|
|
|
|
m.ResetOrder()
|
|
|
|
return nil
|
|
|
|
case documentblock.FieldDocumentID:
|
|
|
|
m.ResetDocumentID()
|
|
|
|
return nil
|
|
|
|
case documentblock.FieldUserID:
|
|
|
|
m.ResetUserID()
|
|
|
|
return nil
|
|
|
|
case documentblock.FieldCreatedAt:
|
|
|
|
m.ResetCreatedAt()
|
|
|
|
return nil
|
|
|
|
case documentblock.FieldUpdatedAt:
|
|
|
|
m.ResetUpdatedAt()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("unknown DocumentBlock field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddedEdges returns all edge names that were set/added in this mutation.
|
|
|
|
func (m *DocumentBlockMutation) AddedEdges() []string {
|
|
|
|
edges := make([]string, 0, 1)
|
|
|
|
if m.document != nil {
|
|
|
|
edges = append(edges, documentblock.EdgeDocument)
|
|
|
|
}
|
|
|
|
return edges
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddedIDs returns all IDs (to other nodes) that were added for the given edge
|
|
|
|
// name in this mutation.
|
|
|
|
func (m *DocumentBlockMutation) AddedIDs(name string) []ent.Value {
|
|
|
|
switch name {
|
|
|
|
case documentblock.EdgeDocument:
|
|
|
|
ids := make([]ent.Value, 0, len(m.document))
|
|
|
|
for id := range m.document {
|
|
|
|
ids = append(ids, id)
|
|
|
|
}
|
|
|
|
return ids
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemovedEdges returns all edge names that were removed in this mutation.
|
|
|
|
func (m *DocumentBlockMutation) RemovedEdges() []string {
|
|
|
|
edges := make([]string, 0, 1)
|
|
|
|
if m.removeddocument != nil {
|
|
|
|
edges = append(edges, documentblock.EdgeDocument)
|
|
|
|
}
|
|
|
|
return edges
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemovedIDs returns all IDs (to other nodes) that were removed for the edge with
|
|
|
|
// the given name in this mutation.
|
|
|
|
func (m *DocumentBlockMutation) RemovedIDs(name string) []ent.Value {
|
|
|
|
switch name {
|
|
|
|
case documentblock.EdgeDocument:
|
|
|
|
ids := make([]ent.Value, 0, len(m.removeddocument))
|
|
|
|
for id := range m.removeddocument {
|
|
|
|
ids = append(ids, id)
|
|
|
|
}
|
|
|
|
return ids
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearedEdges returns all edge names that were cleared in this mutation.
|
|
|
|
func (m *DocumentBlockMutation) ClearedEdges() []string {
|
|
|
|
edges := make([]string, 0, 1)
|
|
|
|
if m.cleareddocument {
|
|
|
|
edges = append(edges, documentblock.EdgeDocument)
|
|
|
|
}
|
|
|
|
return edges
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdgeCleared returns a boolean which indicates if the edge with the given name
|
|
|
|
// was cleared in this mutation.
|
|
|
|
func (m *DocumentBlockMutation) EdgeCleared(name string) bool {
|
|
|
|
switch name {
|
|
|
|
case documentblock.EdgeDocument:
|
|
|
|
return m.cleareddocument
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearEdge clears the value of the edge with the given name. It returns an error
|
|
|
|
// if that edge is not defined in the schema.
|
|
|
|
func (m *DocumentBlockMutation) ClearEdge(name string) error {
|
|
|
|
switch name {
|
|
|
|
}
|
|
|
|
return fmt.Errorf("unknown DocumentBlock unique edge %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetEdge resets all changes to the edge with the given name in this mutation.
|
|
|
|
// It returns an error if the edge is not defined in the schema.
|
|
|
|
func (m *DocumentBlockMutation) ResetEdge(name string) error {
|
|
|
|
switch name {
|
|
|
|
case documentblock.EdgeDocument:
|
|
|
|
m.ResetDocument()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("unknown DocumentBlock edge %s", name)
|
|
|
|
}
|
|
|
|
|
2024-07-14 15:58:32 +00:00
|
|
|
// LibraryMutation represents an operation that mutates the Library nodes in the graph.
|
|
|
|
type LibraryMutation struct {
|
|
|
|
config
|
|
|
|
op Op
|
|
|
|
typ string
|
|
|
|
id *int
|
|
|
|
name *string
|
2024-07-14 17:22:40 +00:00
|
|
|
user_id *string
|
2024-07-14 15:58:32 +00:00
|
|
|
created_at *time.Time
|
|
|
|
updated_at *time.Time
|
|
|
|
clearedFields map[string]struct{}
|
|
|
|
done bool
|
|
|
|
oldValue func(context.Context) (*Library, error)
|
|
|
|
predicates []predicate.Library
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ ent.Mutation = (*LibraryMutation)(nil)
|
|
|
|
|
|
|
|
// libraryOption allows management of the mutation configuration using functional options.
|
|
|
|
type libraryOption func(*LibraryMutation)
|
|
|
|
|
|
|
|
// newLibraryMutation creates new mutation for the Library entity.
|
|
|
|
func newLibraryMutation(c config, op Op, opts ...libraryOption) *LibraryMutation {
|
|
|
|
m := &LibraryMutation{
|
|
|
|
config: c,
|
|
|
|
op: op,
|
|
|
|
typ: TypeLibrary,
|
|
|
|
clearedFields: make(map[string]struct{}),
|
|
|
|
}
|
|
|
|
for _, opt := range opts {
|
|
|
|
opt(m)
|
|
|
|
}
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
// withLibraryID sets the ID field of the mutation.
|
|
|
|
func withLibraryID(id int) libraryOption {
|
|
|
|
return func(m *LibraryMutation) {
|
|
|
|
var (
|
|
|
|
err error
|
|
|
|
once sync.Once
|
|
|
|
value *Library
|
|
|
|
)
|
|
|
|
m.oldValue = func(ctx context.Context) (*Library, error) {
|
|
|
|
once.Do(func() {
|
|
|
|
if m.done {
|
|
|
|
err = errors.New("querying old values post mutation is not allowed")
|
|
|
|
} else {
|
|
|
|
value, err = m.Client().Library.Get(ctx, id)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return value, err
|
|
|
|
}
|
|
|
|
m.id = &id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// withLibrary sets the old Library of the mutation.
|
|
|
|
func withLibrary(node *Library) libraryOption {
|
|
|
|
return func(m *LibraryMutation) {
|
|
|
|
m.oldValue = func(context.Context) (*Library, error) {
|
|
|
|
return node, nil
|
|
|
|
}
|
|
|
|
m.id = &node.ID
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Client returns a new `ent.Client` from the mutation. If the mutation was
|
|
|
|
// executed in a transaction (ent.Tx), a transactional client is returned.
|
|
|
|
func (m LibraryMutation) Client() *Client {
|
|
|
|
client := &Client{config: m.config}
|
|
|
|
client.init()
|
|
|
|
return client
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tx returns an `ent.Tx` for mutations that were executed in transactions;
|
|
|
|
// it returns an error otherwise.
|
|
|
|
func (m LibraryMutation) Tx() (*Tx, error) {
|
|
|
|
if _, ok := m.driver.(*txDriver); !ok {
|
|
|
|
return nil, errors.New("ent: mutation is not running in a transaction")
|
|
|
|
}
|
|
|
|
tx := &Tx{config: m.config}
|
|
|
|
tx.init()
|
|
|
|
return tx, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ID returns the ID value in the mutation. Note that the ID is only available
|
|
|
|
// if it was provided to the builder or after it was returned from the database.
|
|
|
|
func (m *LibraryMutation) ID() (id int, exists bool) {
|
|
|
|
if m.id == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *m.id, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// IDs queries the database and returns the entity ids that match the mutation's predicate.
|
|
|
|
// That means, if the mutation is applied within a transaction with an isolation level such
|
|
|
|
// as sql.LevelSerializable, the returned ids match the ids of the rows that will be updated
|
|
|
|
// or updated by the mutation.
|
|
|
|
func (m *LibraryMutation) IDs(ctx context.Context) ([]int, error) {
|
|
|
|
switch {
|
|
|
|
case m.op.Is(OpUpdateOne | OpDeleteOne):
|
|
|
|
id, exists := m.ID()
|
|
|
|
if exists {
|
|
|
|
return []int{id}, nil
|
|
|
|
}
|
|
|
|
fallthrough
|
|
|
|
case m.op.Is(OpUpdate | OpDelete):
|
|
|
|
return m.Client().Library.Query().Where(m.predicates...).IDs(ctx)
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("IDs is not allowed on %s operations", m.op)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetName sets the "name" field.
|
|
|
|
func (m *LibraryMutation) SetName(s string) {
|
|
|
|
m.name = &s
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name returns the value of the "name" field in the mutation.
|
|
|
|
func (m *LibraryMutation) Name() (r string, exists bool) {
|
|
|
|
v := m.name
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldName returns the old "name" field's value of the Library entity.
|
|
|
|
// If the Library object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *LibraryMutation) OldName(ctx context.Context) (v string, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldName is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldName requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldName: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.Name, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetName resets all changes to the "name" field.
|
|
|
|
func (m *LibraryMutation) ResetName() {
|
|
|
|
m.name = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetUserID sets the "user_id" field.
|
2024-07-14 17:22:40 +00:00
|
|
|
func (m *LibraryMutation) SetUserID(s string) {
|
|
|
|
m.user_id = &s
|
2024-07-14 15:58:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UserID returns the value of the "user_id" field in the mutation.
|
2024-07-14 17:22:40 +00:00
|
|
|
func (m *LibraryMutation) UserID() (r string, exists bool) {
|
2024-07-14 15:58:32 +00:00
|
|
|
v := m.user_id
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldUserID returns the old "user_id" field's value of the Library entity.
|
|
|
|
// If the Library object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
2024-07-14 17:22:40 +00:00
|
|
|
func (m *LibraryMutation) OldUserID(ctx context.Context) (v string, err error) {
|
2024-07-14 15:58:32 +00:00
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldUserID is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldUserID requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldUserID: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.UserID, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetUserID resets all changes to the "user_id" field.
|
|
|
|
func (m *LibraryMutation) ResetUserID() {
|
|
|
|
m.user_id = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetCreatedAt sets the "created_at" field.
|
|
|
|
func (m *LibraryMutation) SetCreatedAt(t time.Time) {
|
|
|
|
m.created_at = &t
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreatedAt returns the value of the "created_at" field in the mutation.
|
|
|
|
func (m *LibraryMutation) CreatedAt() (r time.Time, exists bool) {
|
|
|
|
v := m.created_at
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldCreatedAt returns the old "created_at" field's value of the Library entity.
|
|
|
|
// If the Library object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *LibraryMutation) OldCreatedAt(ctx context.Context) (v time.Time, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldCreatedAt is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldCreatedAt requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldCreatedAt: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.CreatedAt, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetCreatedAt resets all changes to the "created_at" field.
|
|
|
|
func (m *LibraryMutation) ResetCreatedAt() {
|
|
|
|
m.created_at = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetUpdatedAt sets the "updated_at" field.
|
|
|
|
func (m *LibraryMutation) SetUpdatedAt(t time.Time) {
|
|
|
|
m.updated_at = &t
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatedAt returns the value of the "updated_at" field in the mutation.
|
|
|
|
func (m *LibraryMutation) UpdatedAt() (r time.Time, exists bool) {
|
|
|
|
v := m.updated_at
|
|
|
|
if v == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return *v, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldUpdatedAt returns the old "updated_at" field's value of the Library entity.
|
|
|
|
// If the Library object wasn't provided to the builder, the object is fetched from the database.
|
|
|
|
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
|
func (m *LibraryMutation) OldUpdatedAt(ctx context.Context) (v time.Time, err error) {
|
|
|
|
if !m.op.Is(OpUpdateOne) {
|
|
|
|
return v, errors.New("OldUpdatedAt is only allowed on UpdateOne operations")
|
|
|
|
}
|
|
|
|
if m.id == nil || m.oldValue == nil {
|
|
|
|
return v, errors.New("OldUpdatedAt requires an ID field in the mutation")
|
|
|
|
}
|
|
|
|
oldValue, err := m.oldValue(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return v, fmt.Errorf("querying old value for OldUpdatedAt: %w", err)
|
|
|
|
}
|
|
|
|
return oldValue.UpdatedAt, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetUpdatedAt resets all changes to the "updated_at" field.
|
|
|
|
func (m *LibraryMutation) ResetUpdatedAt() {
|
|
|
|
m.updated_at = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Where appends a list predicates to the LibraryMutation builder.
|
|
|
|
func (m *LibraryMutation) Where(ps ...predicate.Library) {
|
|
|
|
m.predicates = append(m.predicates, ps...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// WhereP appends storage-level predicates to the LibraryMutation builder. Using this method,
|
|
|
|
// users can use type-assertion to append predicates that do not depend on any generated package.
|
|
|
|
func (m *LibraryMutation) WhereP(ps ...func(*sql.Selector)) {
|
|
|
|
p := make([]predicate.Library, len(ps))
|
|
|
|
for i := range ps {
|
|
|
|
p[i] = ps[i]
|
|
|
|
}
|
|
|
|
m.Where(p...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Op returns the operation name.
|
|
|
|
func (m *LibraryMutation) Op() Op {
|
|
|
|
return m.op
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetOp allows setting the mutation operation.
|
|
|
|
func (m *LibraryMutation) SetOp(op Op) {
|
|
|
|
m.op = op
|
|
|
|
}
|
|
|
|
|
|
|
|
// Type returns the node type of this mutation (Library).
|
|
|
|
func (m *LibraryMutation) Type() string {
|
|
|
|
return m.typ
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fields returns all fields that were changed during this mutation. Note that in
|
|
|
|
// order to get all numeric fields that were incremented/decremented, call
|
|
|
|
// AddedFields().
|
|
|
|
func (m *LibraryMutation) Fields() []string {
|
|
|
|
fields := make([]string, 0, 4)
|
|
|
|
if m.name != nil {
|
|
|
|
fields = append(fields, library.FieldName)
|
|
|
|
}
|
|
|
|
if m.user_id != nil {
|
|
|
|
fields = append(fields, library.FieldUserID)
|
|
|
|
}
|
|
|
|
if m.created_at != nil {
|
|
|
|
fields = append(fields, library.FieldCreatedAt)
|
|
|
|
}
|
|
|
|
if m.updated_at != nil {
|
|
|
|
fields = append(fields, library.FieldUpdatedAt)
|
|
|
|
}
|
|
|
|
return fields
|
|
|
|
}
|
|
|
|
|
|
|
|
// Field returns the value of a field with the given name. The second boolean
|
|
|
|
// return value indicates that this field was not set, or was not defined in the
|
|
|
|
// schema.
|
|
|
|
func (m *LibraryMutation) Field(name string) (ent.Value, bool) {
|
|
|
|
switch name {
|
|
|
|
case library.FieldName:
|
|
|
|
return m.Name()
|
|
|
|
case library.FieldUserID:
|
|
|
|
return m.UserID()
|
|
|
|
case library.FieldCreatedAt:
|
|
|
|
return m.CreatedAt()
|
|
|
|
case library.FieldUpdatedAt:
|
|
|
|
return m.UpdatedAt()
|
|
|
|
}
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// OldField returns the old value of the field from the database. An error is
|
|
|
|
// returned if the mutation operation is not UpdateOne, or the query to the
|
|
|
|
// database failed.
|
|
|
|
func (m *LibraryMutation) OldField(ctx context.Context, name string) (ent.Value, error) {
|
|
|
|
switch name {
|
|
|
|
case library.FieldName:
|
|
|
|
return m.OldName(ctx)
|
|
|
|
case library.FieldUserID:
|
|
|
|
return m.OldUserID(ctx)
|
|
|
|
case library.FieldCreatedAt:
|
|
|
|
return m.OldCreatedAt(ctx)
|
|
|
|
case library.FieldUpdatedAt:
|
|
|
|
return m.OldUpdatedAt(ctx)
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("unknown Library field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetField sets the value of a field with the given name. It returns an error if
|
|
|
|
// the field is not defined in the schema, or if the type mismatched the field
|
|
|
|
// type.
|
|
|
|
func (m *LibraryMutation) SetField(name string, value ent.Value) error {
|
|
|
|
switch name {
|
|
|
|
case library.FieldName:
|
|
|
|
v, ok := value.(string)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetName(v)
|
|
|
|
return nil
|
|
|
|
case library.FieldUserID:
|
2024-07-14 17:22:40 +00:00
|
|
|
v, ok := value.(string)
|
2024-07-14 15:58:32 +00:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetUserID(v)
|
|
|
|
return nil
|
|
|
|
case library.FieldCreatedAt:
|
|
|
|
v, ok := value.(time.Time)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetCreatedAt(v)
|
|
|
|
return nil
|
|
|
|
case library.FieldUpdatedAt:
|
|
|
|
v, ok := value.(time.Time)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
|
}
|
|
|
|
m.SetUpdatedAt(v)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("unknown Library field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddedFields returns all numeric fields that were incremented/decremented during
|
|
|
|
// this mutation.
|
|
|
|
func (m *LibraryMutation) AddedFields() []string {
|
2024-07-14 17:22:40 +00:00
|
|
|
return nil
|
2024-07-14 15:58:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AddedField returns the numeric value that was incremented/decremented on a field
|
|
|
|
// with the given name. The second boolean return value indicates that this field
|
|
|
|
// was not set, or was not defined in the schema.
|
|
|
|
func (m *LibraryMutation) AddedField(name string) (ent.Value, bool) {
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddField adds the value to the field with the given name. It returns an error if
|
|
|
|
// the field is not defined in the schema, or if the type mismatched the field
|
|
|
|
// type.
|
|
|
|
func (m *LibraryMutation) AddField(name string, value ent.Value) error {
|
|
|
|
switch name {
|
|
|
|
}
|
|
|
|
return fmt.Errorf("unknown Library numeric field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearedFields returns all nullable fields that were cleared during this
|
|
|
|
// mutation.
|
|
|
|
func (m *LibraryMutation) ClearedFields() []string {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FieldCleared returns a boolean indicating if a field with the given name was
|
|
|
|
// cleared in this mutation.
|
|
|
|
func (m *LibraryMutation) FieldCleared(name string) bool {
|
|
|
|
_, ok := m.clearedFields[name]
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearField clears the value of the field with the given name. It returns an
|
|
|
|
// error if the field is not defined in the schema.
|
|
|
|
func (m *LibraryMutation) ClearField(name string) error {
|
|
|
|
return fmt.Errorf("unknown Library nullable field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetField resets all changes in the mutation for the field with the given name.
|
|
|
|
// It returns an error if the field is not defined in the schema.
|
|
|
|
func (m *LibraryMutation) ResetField(name string) error {
|
|
|
|
switch name {
|
|
|
|
case library.FieldName:
|
|
|
|
m.ResetName()
|
|
|
|
return nil
|
|
|
|
case library.FieldUserID:
|
|
|
|
m.ResetUserID()
|
|
|
|
return nil
|
|
|
|
case library.FieldCreatedAt:
|
|
|
|
m.ResetCreatedAt()
|
|
|
|
return nil
|
|
|
|
case library.FieldUpdatedAt:
|
|
|
|
m.ResetUpdatedAt()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("unknown Library field %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddedEdges returns all edge names that were set/added in this mutation.
|
|
|
|
func (m *LibraryMutation) AddedEdges() []string {
|
|
|
|
edges := make([]string, 0, 0)
|
|
|
|
return edges
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddedIDs returns all IDs (to other nodes) that were added for the given edge
|
|
|
|
// name in this mutation.
|
|
|
|
func (m *LibraryMutation) AddedIDs(name string) []ent.Value {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemovedEdges returns all edge names that were removed in this mutation.
|
|
|
|
func (m *LibraryMutation) RemovedEdges() []string {
|
|
|
|
edges := make([]string, 0, 0)
|
|
|
|
return edges
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemovedIDs returns all IDs (to other nodes) that were removed for the edge with
|
|
|
|
// the given name in this mutation.
|
|
|
|
func (m *LibraryMutation) RemovedIDs(name string) []ent.Value {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearedEdges returns all edge names that were cleared in this mutation.
|
|
|
|
func (m *LibraryMutation) ClearedEdges() []string {
|
|
|
|
edges := make([]string, 0, 0)
|
|
|
|
return edges
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdgeCleared returns a boolean which indicates if the edge with the given name
|
|
|
|
// was cleared in this mutation.
|
|
|
|
func (m *LibraryMutation) EdgeCleared(name string) bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearEdge clears the value of the edge with the given name. It returns an error
|
|
|
|
// if that edge is not defined in the schema.
|
|
|
|
func (m *LibraryMutation) ClearEdge(name string) error {
|
|
|
|
return fmt.Errorf("unknown Library unique edge %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResetEdge resets all changes to the edge with the given name in this mutation.
|
|
|
|
// It returns an error if the edge is not defined in the schema.
|
|
|
|
func (m *LibraryMutation) ResetEdge(name string) error {
|
|
|
|
return fmt.Errorf("unknown Library edge %s", name)
|
|
|
|
}
|