mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-27 11:05:39 +00:00
606 lines
17 KiB
Go
606 lines
17 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
"github.com/google/uuid"
|
|
"github.com/hay-kot/homebox/backend/internal/data/ent/actiontoken"
|
|
"github.com/hay-kot/homebox/backend/internal/data/ent/predicate"
|
|
"github.com/hay-kot/homebox/backend/internal/data/ent/user"
|
|
)
|
|
|
|
// ActionTokenQuery is the builder for querying ActionToken entities.
|
|
type ActionTokenQuery struct {
|
|
config
|
|
ctx *QueryContext
|
|
order []actiontoken.OrderOption
|
|
inters []Interceptor
|
|
predicates []predicate.ActionToken
|
|
withUser *UserQuery
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
path func(context.Context) (*sql.Selector, error)
|
|
}
|
|
|
|
// Where adds a new predicate for the ActionTokenQuery builder.
|
|
func (atq *ActionTokenQuery) Where(ps ...predicate.ActionToken) *ActionTokenQuery {
|
|
atq.predicates = append(atq.predicates, ps...)
|
|
return atq
|
|
}
|
|
|
|
// Limit the number of records to be returned by this query.
|
|
func (atq *ActionTokenQuery) Limit(limit int) *ActionTokenQuery {
|
|
atq.ctx.Limit = &limit
|
|
return atq
|
|
}
|
|
|
|
// Offset to start from.
|
|
func (atq *ActionTokenQuery) Offset(offset int) *ActionTokenQuery {
|
|
atq.ctx.Offset = &offset
|
|
return atq
|
|
}
|
|
|
|
// Unique configures the query builder to filter duplicate records on query.
|
|
// By default, unique is set to true, and can be disabled using this method.
|
|
func (atq *ActionTokenQuery) Unique(unique bool) *ActionTokenQuery {
|
|
atq.ctx.Unique = &unique
|
|
return atq
|
|
}
|
|
|
|
// Order specifies how the records should be ordered.
|
|
func (atq *ActionTokenQuery) Order(o ...actiontoken.OrderOption) *ActionTokenQuery {
|
|
atq.order = append(atq.order, o...)
|
|
return atq
|
|
}
|
|
|
|
// QueryUser chains the current query on the "user" edge.
|
|
func (atq *ActionTokenQuery) QueryUser() *UserQuery {
|
|
query := (&UserClient{config: atq.config}).Query()
|
|
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
|
|
if err := atq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
selector := atq.sqlQuery(ctx)
|
|
if err := selector.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(actiontoken.Table, actiontoken.FieldID, selector),
|
|
sqlgraph.To(user.Table, user.FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, actiontoken.UserTable, actiontoken.UserColumn),
|
|
)
|
|
fromU = sqlgraph.SetNeighbors(atq.driver.Dialect(), step)
|
|
return fromU, nil
|
|
}
|
|
return query
|
|
}
|
|
|
|
// First returns the first ActionToken entity from the query.
|
|
// Returns a *NotFoundError when no ActionToken was found.
|
|
func (atq *ActionTokenQuery) First(ctx context.Context) (*ActionToken, error) {
|
|
nodes, err := atq.Limit(1).All(setContextOp(ctx, atq.ctx, "First"))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nil, &NotFoundError{actiontoken.Label}
|
|
}
|
|
return nodes[0], nil
|
|
}
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
func (atq *ActionTokenQuery) FirstX(ctx context.Context) *ActionToken {
|
|
node, err := atq.First(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// FirstID returns the first ActionToken ID from the query.
|
|
// Returns a *NotFoundError when no ActionToken ID was found.
|
|
func (atq *ActionTokenQuery) FirstID(ctx context.Context) (id uuid.UUID, err error) {
|
|
var ids []uuid.UUID
|
|
if ids, err = atq.Limit(1).IDs(setContextOp(ctx, atq.ctx, "FirstID")); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{actiontoken.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
func (atq *ActionTokenQuery) FirstIDX(ctx context.Context) uuid.UUID {
|
|
id, err := atq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns a single ActionToken entity found by the query, ensuring it only returns one.
|
|
// Returns a *NotSingularError when more than one ActionToken entity is found.
|
|
// Returns a *NotFoundError when no ActionToken entities are found.
|
|
func (atq *ActionTokenQuery) Only(ctx context.Context) (*ActionToken, error) {
|
|
nodes, err := atq.Limit(2).All(setContextOp(ctx, atq.ctx, "Only"))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch len(nodes) {
|
|
case 1:
|
|
return nodes[0], nil
|
|
case 0:
|
|
return nil, &NotFoundError{actiontoken.Label}
|
|
default:
|
|
return nil, &NotSingularError{actiontoken.Label}
|
|
}
|
|
}
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
func (atq *ActionTokenQuery) OnlyX(ctx context.Context) *ActionToken {
|
|
node, err := atq.Only(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// OnlyID is like Only, but returns the only ActionToken ID in the query.
|
|
// Returns a *NotSingularError when more than one ActionToken ID is found.
|
|
// Returns a *NotFoundError when no entities are found.
|
|
func (atq *ActionTokenQuery) OnlyID(ctx context.Context) (id uuid.UUID, err error) {
|
|
var ids []uuid.UUID
|
|
if ids, err = atq.Limit(2).IDs(setContextOp(ctx, atq.ctx, "OnlyID")); err != nil {
|
|
return
|
|
}
|
|
switch len(ids) {
|
|
case 1:
|
|
id = ids[0]
|
|
case 0:
|
|
err = &NotFoundError{actiontoken.Label}
|
|
default:
|
|
err = &NotSingularError{actiontoken.Label}
|
|
}
|
|
return
|
|
}
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
func (atq *ActionTokenQuery) OnlyIDX(ctx context.Context) uuid.UUID {
|
|
id, err := atq.OnlyID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// All executes the query and returns a list of ActionTokens.
|
|
func (atq *ActionTokenQuery) All(ctx context.Context) ([]*ActionToken, error) {
|
|
ctx = setContextOp(ctx, atq.ctx, "All")
|
|
if err := atq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
qr := querierAll[[]*ActionToken, *ActionTokenQuery]()
|
|
return withInterceptors[[]*ActionToken](ctx, atq, qr, atq.inters)
|
|
}
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
func (atq *ActionTokenQuery) AllX(ctx context.Context) []*ActionToken {
|
|
nodes, err := atq.All(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return nodes
|
|
}
|
|
|
|
// IDs executes the query and returns a list of ActionToken IDs.
|
|
func (atq *ActionTokenQuery) IDs(ctx context.Context) (ids []uuid.UUID, err error) {
|
|
if atq.ctx.Unique == nil && atq.path != nil {
|
|
atq.Unique(true)
|
|
}
|
|
ctx = setContextOp(ctx, atq.ctx, "IDs")
|
|
if err = atq.Select(actiontoken.FieldID).Scan(ctx, &ids); err != nil {
|
|
return nil, err
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
func (atq *ActionTokenQuery) IDsX(ctx context.Context) []uuid.UUID {
|
|
ids, err := atq.IDs(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return ids
|
|
}
|
|
|
|
// Count returns the count of the given query.
|
|
func (atq *ActionTokenQuery) Count(ctx context.Context) (int, error) {
|
|
ctx = setContextOp(ctx, atq.ctx, "Count")
|
|
if err := atq.prepareQuery(ctx); err != nil {
|
|
return 0, err
|
|
}
|
|
return withInterceptors[int](ctx, atq, querierCount[*ActionTokenQuery](), atq.inters)
|
|
}
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
func (atq *ActionTokenQuery) CountX(ctx context.Context) int {
|
|
count, err := atq.Count(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return count
|
|
}
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
func (atq *ActionTokenQuery) Exist(ctx context.Context) (bool, error) {
|
|
ctx = setContextOp(ctx, atq.ctx, "Exist")
|
|
switch _, err := atq.FirstID(ctx); {
|
|
case IsNotFound(err):
|
|
return false, nil
|
|
case err != nil:
|
|
return false, fmt.Errorf("ent: check existence: %w", err)
|
|
default:
|
|
return true, nil
|
|
}
|
|
}
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
func (atq *ActionTokenQuery) ExistX(ctx context.Context) bool {
|
|
exist, err := atq.Exist(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return exist
|
|
}
|
|
|
|
// Clone returns a duplicate of the ActionTokenQuery builder, including all associated steps. It can be
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
func (atq *ActionTokenQuery) Clone() *ActionTokenQuery {
|
|
if atq == nil {
|
|
return nil
|
|
}
|
|
return &ActionTokenQuery{
|
|
config: atq.config,
|
|
ctx: atq.ctx.Clone(),
|
|
order: append([]actiontoken.OrderOption{}, atq.order...),
|
|
inters: append([]Interceptor{}, atq.inters...),
|
|
predicates: append([]predicate.ActionToken{}, atq.predicates...),
|
|
withUser: atq.withUser.Clone(),
|
|
// clone intermediate query.
|
|
sql: atq.sql.Clone(),
|
|
path: atq.path,
|
|
}
|
|
}
|
|
|
|
// WithUser tells the query-builder to eager-load the nodes that are connected to
|
|
// the "user" edge. The optional arguments are used to configure the query builder of the edge.
|
|
func (atq *ActionTokenQuery) WithUser(opts ...func(*UserQuery)) *ActionTokenQuery {
|
|
query := (&UserClient{config: atq.config}).Query()
|
|
for _, opt := range opts {
|
|
opt(query)
|
|
}
|
|
atq.withUser = query
|
|
return atq
|
|
}
|
|
|
|
// GroupBy is used to group vertices by one or more fields/columns.
|
|
// It is often used with aggregate functions, like: count, max, mean, min, sum.
|
|
//
|
|
// Example:
|
|
//
|
|
// var v []struct {
|
|
// UserID uuid.UUID `json:"user_id,omitempty"`
|
|
// Count int `json:"count,omitempty"`
|
|
// }
|
|
//
|
|
// client.ActionToken.Query().
|
|
// GroupBy(actiontoken.FieldUserID).
|
|
// Aggregate(ent.Count()).
|
|
// Scan(ctx, &v)
|
|
func (atq *ActionTokenQuery) GroupBy(field string, fields ...string) *ActionTokenGroupBy {
|
|
atq.ctx.Fields = append([]string{field}, fields...)
|
|
grbuild := &ActionTokenGroupBy{build: atq}
|
|
grbuild.flds = &atq.ctx.Fields
|
|
grbuild.label = actiontoken.Label
|
|
grbuild.scan = grbuild.Scan
|
|
return grbuild
|
|
}
|
|
|
|
// Select allows the selection one or more fields/columns for the given query,
|
|
// instead of selecting all fields in the entity.
|
|
//
|
|
// Example:
|
|
//
|
|
// var v []struct {
|
|
// UserID uuid.UUID `json:"user_id,omitempty"`
|
|
// }
|
|
//
|
|
// client.ActionToken.Query().
|
|
// Select(actiontoken.FieldUserID).
|
|
// Scan(ctx, &v)
|
|
func (atq *ActionTokenQuery) Select(fields ...string) *ActionTokenSelect {
|
|
atq.ctx.Fields = append(atq.ctx.Fields, fields...)
|
|
sbuild := &ActionTokenSelect{ActionTokenQuery: atq}
|
|
sbuild.label = actiontoken.Label
|
|
sbuild.flds, sbuild.scan = &atq.ctx.Fields, sbuild.Scan
|
|
return sbuild
|
|
}
|
|
|
|
// Aggregate returns a ActionTokenSelect configured with the given aggregations.
|
|
func (atq *ActionTokenQuery) Aggregate(fns ...AggregateFunc) *ActionTokenSelect {
|
|
return atq.Select().Aggregate(fns...)
|
|
}
|
|
|
|
func (atq *ActionTokenQuery) prepareQuery(ctx context.Context) error {
|
|
for _, inter := range atq.inters {
|
|
if inter == nil {
|
|
return fmt.Errorf("ent: uninitialized interceptor (forgotten import ent/runtime?)")
|
|
}
|
|
if trv, ok := inter.(Traverser); ok {
|
|
if err := trv.Traverse(ctx, atq); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
for _, f := range atq.ctx.Fields {
|
|
if !actiontoken.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
}
|
|
if atq.path != nil {
|
|
prev, err := atq.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
atq.sql = prev
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (atq *ActionTokenQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*ActionToken, error) {
|
|
var (
|
|
nodes = []*ActionToken{}
|
|
_spec = atq.querySpec()
|
|
loadedTypes = [1]bool{
|
|
atq.withUser != nil,
|
|
}
|
|
)
|
|
_spec.ScanValues = func(columns []string) ([]any, error) {
|
|
return (*ActionToken).scanValues(nil, columns)
|
|
}
|
|
_spec.Assign = func(columns []string, values []any) error {
|
|
node := &ActionToken{config: atq.config}
|
|
nodes = append(nodes, node)
|
|
node.Edges.loadedTypes = loadedTypes
|
|
return node.assignValues(columns, values)
|
|
}
|
|
for i := range hooks {
|
|
hooks[i](ctx, _spec)
|
|
}
|
|
if err := sqlgraph.QueryNodes(ctx, atq.driver, _spec); err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nodes, nil
|
|
}
|
|
if query := atq.withUser; query != nil {
|
|
if err := atq.loadUser(ctx, query, nodes, nil,
|
|
func(n *ActionToken, e *User) { n.Edges.User = e }); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
func (atq *ActionTokenQuery) loadUser(ctx context.Context, query *UserQuery, nodes []*ActionToken, init func(*ActionToken), assign func(*ActionToken, *User)) error {
|
|
ids := make([]uuid.UUID, 0, len(nodes))
|
|
nodeids := make(map[uuid.UUID][]*ActionToken)
|
|
for i := range nodes {
|
|
fk := nodes[i].UserID
|
|
if _, ok := nodeids[fk]; !ok {
|
|
ids = append(ids, fk)
|
|
}
|
|
nodeids[fk] = append(nodeids[fk], nodes[i])
|
|
}
|
|
if len(ids) == 0 {
|
|
return nil
|
|
}
|
|
query.Where(user.IDIn(ids...))
|
|
neighbors, err := query.All(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, n := range neighbors {
|
|
nodes, ok := nodeids[n.ID]
|
|
if !ok {
|
|
return fmt.Errorf(`unexpected foreign-key "user_id" returned %v`, n.ID)
|
|
}
|
|
for i := range nodes {
|
|
assign(nodes[i], n)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (atq *ActionTokenQuery) sqlCount(ctx context.Context) (int, error) {
|
|
_spec := atq.querySpec()
|
|
_spec.Node.Columns = atq.ctx.Fields
|
|
if len(atq.ctx.Fields) > 0 {
|
|
_spec.Unique = atq.ctx.Unique != nil && *atq.ctx.Unique
|
|
}
|
|
return sqlgraph.CountNodes(ctx, atq.driver, _spec)
|
|
}
|
|
|
|
func (atq *ActionTokenQuery) querySpec() *sqlgraph.QuerySpec {
|
|
_spec := sqlgraph.NewQuerySpec(actiontoken.Table, actiontoken.Columns, sqlgraph.NewFieldSpec(actiontoken.FieldID, field.TypeUUID))
|
|
_spec.From = atq.sql
|
|
if unique := atq.ctx.Unique; unique != nil {
|
|
_spec.Unique = *unique
|
|
} else if atq.path != nil {
|
|
_spec.Unique = true
|
|
}
|
|
if fields := atq.ctx.Fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, actiontoken.FieldID)
|
|
for i := range fields {
|
|
if fields[i] != actiontoken.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
|
|
}
|
|
}
|
|
if atq.withUser != nil {
|
|
_spec.Node.AddColumnOnce(actiontoken.FieldUserID)
|
|
}
|
|
}
|
|
if ps := atq.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if limit := atq.ctx.Limit; limit != nil {
|
|
_spec.Limit = *limit
|
|
}
|
|
if offset := atq.ctx.Offset; offset != nil {
|
|
_spec.Offset = *offset
|
|
}
|
|
if ps := atq.order; len(ps) > 0 {
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
return _spec
|
|
}
|
|
|
|
func (atq *ActionTokenQuery) sqlQuery(ctx context.Context) *sql.Selector {
|
|
builder := sql.Dialect(atq.driver.Dialect())
|
|
t1 := builder.Table(actiontoken.Table)
|
|
columns := atq.ctx.Fields
|
|
if len(columns) == 0 {
|
|
columns = actiontoken.Columns
|
|
}
|
|
selector := builder.Select(t1.Columns(columns...)...).From(t1)
|
|
if atq.sql != nil {
|
|
selector = atq.sql
|
|
selector.Select(selector.Columns(columns...)...)
|
|
}
|
|
if atq.ctx.Unique != nil && *atq.ctx.Unique {
|
|
selector.Distinct()
|
|
}
|
|
for _, p := range atq.predicates {
|
|
p(selector)
|
|
}
|
|
for _, p := range atq.order {
|
|
p(selector)
|
|
}
|
|
if offset := atq.ctx.Offset; offset != nil {
|
|
// limit is mandatory for offset clause. We start
|
|
// with default value, and override it below if needed.
|
|
selector.Offset(*offset).Limit(math.MaxInt32)
|
|
}
|
|
if limit := atq.ctx.Limit; limit != nil {
|
|
selector.Limit(*limit)
|
|
}
|
|
return selector
|
|
}
|
|
|
|
// ActionTokenGroupBy is the group-by builder for ActionToken entities.
|
|
type ActionTokenGroupBy struct {
|
|
selector
|
|
build *ActionTokenQuery
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the group-by query.
|
|
func (atgb *ActionTokenGroupBy) Aggregate(fns ...AggregateFunc) *ActionTokenGroupBy {
|
|
atgb.fns = append(atgb.fns, fns...)
|
|
return atgb
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (atgb *ActionTokenGroupBy) Scan(ctx context.Context, v any) error {
|
|
ctx = setContextOp(ctx, atgb.build.ctx, "GroupBy")
|
|
if err := atgb.build.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
return scanWithInterceptors[*ActionTokenQuery, *ActionTokenGroupBy](ctx, atgb.build, atgb, atgb.build.inters, v)
|
|
}
|
|
|
|
func (atgb *ActionTokenGroupBy) sqlScan(ctx context.Context, root *ActionTokenQuery, v any) error {
|
|
selector := root.sqlQuery(ctx).Select()
|
|
aggregation := make([]string, 0, len(atgb.fns))
|
|
for _, fn := range atgb.fns {
|
|
aggregation = append(aggregation, fn(selector))
|
|
}
|
|
if len(selector.SelectedColumns()) == 0 {
|
|
columns := make([]string, 0, len(*atgb.flds)+len(atgb.fns))
|
|
for _, f := range *atgb.flds {
|
|
columns = append(columns, selector.C(f))
|
|
}
|
|
columns = append(columns, aggregation...)
|
|
selector.Select(columns...)
|
|
}
|
|
selector.GroupBy(selector.Columns(*atgb.flds...)...)
|
|
if err := selector.Err(); err != nil {
|
|
return err
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := atgb.build.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
// ActionTokenSelect is the builder for selecting fields of ActionToken entities.
|
|
type ActionTokenSelect struct {
|
|
*ActionTokenQuery
|
|
selector
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the selector query.
|
|
func (ats *ActionTokenSelect) Aggregate(fns ...AggregateFunc) *ActionTokenSelect {
|
|
ats.fns = append(ats.fns, fns...)
|
|
return ats
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (ats *ActionTokenSelect) Scan(ctx context.Context, v any) error {
|
|
ctx = setContextOp(ctx, ats.ctx, "Select")
|
|
if err := ats.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
return scanWithInterceptors[*ActionTokenQuery, *ActionTokenSelect](ctx, ats.ActionTokenQuery, ats, ats.inters, v)
|
|
}
|
|
|
|
func (ats *ActionTokenSelect) sqlScan(ctx context.Context, root *ActionTokenQuery, v any) error {
|
|
selector := root.sqlQuery(ctx)
|
|
aggregation := make([]string, 0, len(ats.fns))
|
|
for _, fn := range ats.fns {
|
|
aggregation = append(aggregation, fn(selector))
|
|
}
|
|
switch n := len(*ats.selector.flds); {
|
|
case n == 0 && len(aggregation) > 0:
|
|
selector.Select(aggregation...)
|
|
case n != 0 && len(aggregation) > 0:
|
|
selector.AppendSelect(aggregation...)
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := ats.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|