forked from mirrors/homebox
31b34241e0
* change /content/ -> /homebox/ * add cache to code generators * update env variables to set data storage * update env variables * set env variables in prod container * implement attachment post route (WIP) * get attachment endpoint * attachment download * implement string utilities lib * implement generic drop zone * use explicit truncate * remove clean dir * drop strings composable for lib * update item types and add attachments * add attachment API * implement service context * consolidate API code * implement editing attachments * implement upload limit configuration * improve error handling * add docs for max upload size * fix test cases
115 lines
2.7 KiB
Go
115 lines
2.7 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
"github.com/hay-kot/homebox/backend/ent/document"
|
|
"github.com/hay-kot/homebox/backend/ent/predicate"
|
|
)
|
|
|
|
// DocumentDelete is the builder for deleting a Document entity.
|
|
type DocumentDelete struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *DocumentMutation
|
|
}
|
|
|
|
// Where appends a list predicates to the DocumentDelete builder.
|
|
func (dd *DocumentDelete) Where(ps ...predicate.Document) *DocumentDelete {
|
|
dd.mutation.Where(ps...)
|
|
return dd
|
|
}
|
|
|
|
// Exec executes the deletion query and returns how many vertices were deleted.
|
|
func (dd *DocumentDelete) Exec(ctx context.Context) (int, error) {
|
|
var (
|
|
err error
|
|
affected int
|
|
)
|
|
if len(dd.hooks) == 0 {
|
|
affected, err = dd.sqlExec(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*DocumentMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
dd.mutation = mutation
|
|
affected, err = dd.sqlExec(ctx)
|
|
mutation.done = true
|
|
return affected, err
|
|
})
|
|
for i := len(dd.hooks) - 1; i >= 0; i-- {
|
|
if dd.hooks[i] == nil {
|
|
return 0, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
|
|
}
|
|
mut = dd.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, dd.mutation); err != nil {
|
|
return 0, err
|
|
}
|
|
}
|
|
return affected, err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (dd *DocumentDelete) ExecX(ctx context.Context) int {
|
|
n, err := dd.Exec(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (dd *DocumentDelete) sqlExec(ctx context.Context) (int, error) {
|
|
_spec := &sqlgraph.DeleteSpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: document.Table,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeUUID,
|
|
Column: document.FieldID,
|
|
},
|
|
},
|
|
}
|
|
if ps := dd.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
affected, err := sqlgraph.DeleteNodes(ctx, dd.driver, _spec)
|
|
if err != nil && sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return affected, err
|
|
}
|
|
|
|
// DocumentDeleteOne is the builder for deleting a single Document entity.
|
|
type DocumentDeleteOne struct {
|
|
dd *DocumentDelete
|
|
}
|
|
|
|
// Exec executes the deletion query.
|
|
func (ddo *DocumentDeleteOne) Exec(ctx context.Context) error {
|
|
n, err := ddo.dd.Exec(ctx)
|
|
switch {
|
|
case err != nil:
|
|
return err
|
|
case n == 0:
|
|
return &NotFoundError{document.Label}
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (ddo *DocumentDeleteOne) ExecX(ctx context.Context) {
|
|
ddo.dd.ExecX(ctx)
|
|
}
|