2025-02-06 09:31:49 +01:00
|
|
|
// Code generated by ent, DO NOT EDIT.
|
2022-04-08 21:26:25 +02:00
|
|
|
|
|
|
|
package ent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql/driver"
|
|
|
|
"fmt"
|
|
|
|
"math"
|
|
|
|
|
|
|
|
"code.icod.de/postfix/manager/ent/account"
|
|
|
|
"code.icod.de/postfix/manager/ent/domain"
|
|
|
|
"code.icod.de/postfix/manager/ent/logentry"
|
|
|
|
"code.icod.de/postfix/manager/ent/predicate"
|
2025-02-06 09:31:49 +01:00
|
|
|
"entgo.io/ent"
|
2022-04-08 21:26:25 +02:00
|
|
|
"entgo.io/ent/dialect/sql"
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
|
|
"entgo.io/ent/schema/field"
|
|
|
|
)
|
|
|
|
|
|
|
|
// AccountQuery is the builder for querying Account entities.
|
|
|
|
type AccountQuery struct {
|
|
|
|
config
|
2025-02-06 09:31:49 +01:00
|
|
|
ctx *QueryContext
|
|
|
|
order []account.OrderOption
|
|
|
|
inters []Interceptor
|
|
|
|
predicates []predicate.Account
|
2022-04-08 21:26:25 +02:00
|
|
|
withDomains *DomainQuery
|
|
|
|
withLogs *LogentryQuery
|
|
|
|
// intermediate query (i.e. traversal path).
|
|
|
|
sql *sql.Selector
|
|
|
|
path func(context.Context) (*sql.Selector, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Where adds a new predicate for the AccountQuery builder.
|
|
|
|
func (aq *AccountQuery) Where(ps ...predicate.Account) *AccountQuery {
|
|
|
|
aq.predicates = append(aq.predicates, ps...)
|
|
|
|
return aq
|
|
|
|
}
|
|
|
|
|
2025-02-06 09:31:49 +01:00
|
|
|
// Limit the number of records to be returned by this query.
|
2022-04-08 21:26:25 +02:00
|
|
|
func (aq *AccountQuery) Limit(limit int) *AccountQuery {
|
2025-02-06 09:31:49 +01:00
|
|
|
aq.ctx.Limit = &limit
|
2022-04-08 21:26:25 +02:00
|
|
|
return aq
|
|
|
|
}
|
|
|
|
|
2025-02-06 09:31:49 +01:00
|
|
|
// Offset to start from.
|
2022-04-08 21:26:25 +02:00
|
|
|
func (aq *AccountQuery) Offset(offset int) *AccountQuery {
|
2025-02-06 09:31:49 +01:00
|
|
|
aq.ctx.Offset = &offset
|
2022-04-08 21:26:25 +02:00
|
|
|
return aq
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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 (aq *AccountQuery) Unique(unique bool) *AccountQuery {
|
2025-02-06 09:31:49 +01:00
|
|
|
aq.ctx.Unique = &unique
|
2022-04-08 21:26:25 +02:00
|
|
|
return aq
|
|
|
|
}
|
|
|
|
|
2025-02-06 09:31:49 +01:00
|
|
|
// Order specifies how the records should be ordered.
|
|
|
|
func (aq *AccountQuery) Order(o ...account.OrderOption) *AccountQuery {
|
2022-04-08 21:26:25 +02:00
|
|
|
aq.order = append(aq.order, o...)
|
|
|
|
return aq
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryDomains chains the current query on the "domains" edge.
|
|
|
|
func (aq *AccountQuery) QueryDomains() *DomainQuery {
|
2025-02-06 09:31:49 +01:00
|
|
|
query := (&DomainClient{config: aq.config}).Query()
|
2022-04-08 21:26:25 +02:00
|
|
|
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
|
|
|
|
if err := aq.prepareQuery(ctx); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
selector := aq.sqlQuery(ctx)
|
|
|
|
if err := selector.Err(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(account.Table, account.FieldID, selector),
|
|
|
|
sqlgraph.To(domain.Table, domain.FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.M2M, false, account.DomainsTable, account.DomainsPrimaryKey...),
|
|
|
|
)
|
|
|
|
fromU = sqlgraph.SetNeighbors(aq.driver.Dialect(), step)
|
|
|
|
return fromU, nil
|
|
|
|
}
|
|
|
|
return query
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryLogs chains the current query on the "logs" edge.
|
|
|
|
func (aq *AccountQuery) QueryLogs() *LogentryQuery {
|
2025-02-06 09:31:49 +01:00
|
|
|
query := (&LogentryClient{config: aq.config}).Query()
|
2022-04-08 21:26:25 +02:00
|
|
|
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
|
|
|
|
if err := aq.prepareQuery(ctx); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
selector := aq.sqlQuery(ctx)
|
|
|
|
if err := selector.Err(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(account.Table, account.FieldID, selector),
|
|
|
|
sqlgraph.To(logentry.Table, logentry.FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.O2M, false, account.LogsTable, account.LogsColumn),
|
|
|
|
)
|
|
|
|
fromU = sqlgraph.SetNeighbors(aq.driver.Dialect(), step)
|
|
|
|
return fromU, nil
|
|
|
|
}
|
|
|
|
return query
|
|
|
|
}
|
|
|
|
|
|
|
|
// First returns the first Account entity from the query.
|
|
|
|
// Returns a *NotFoundError when no Account was found.
|
|
|
|
func (aq *AccountQuery) First(ctx context.Context) (*Account, error) {
|
2025-02-06 09:31:49 +01:00
|
|
|
nodes, err := aq.Limit(1).All(setContextOp(ctx, aq.ctx, ent.OpQueryFirst))
|
2022-04-08 21:26:25 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(nodes) == 0 {
|
|
|
|
return nil, &NotFoundError{account.Label}
|
|
|
|
}
|
|
|
|
return nodes[0], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
|
|
func (aq *AccountQuery) FirstX(ctx context.Context) *Account {
|
|
|
|
node, err := aq.First(ctx)
|
|
|
|
if err != nil && !IsNotFound(err) {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return node
|
|
|
|
}
|
|
|
|
|
|
|
|
// FirstID returns the first Account ID from the query.
|
|
|
|
// Returns a *NotFoundError when no Account ID was found.
|
|
|
|
func (aq *AccountQuery) FirstID(ctx context.Context) (id int64, err error) {
|
|
|
|
var ids []int64
|
2025-02-06 09:31:49 +01:00
|
|
|
if ids, err = aq.Limit(1).IDs(setContextOp(ctx, aq.ctx, ent.OpQueryFirstID)); err != nil {
|
2022-04-08 21:26:25 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(ids) == 0 {
|
|
|
|
err = &NotFoundError{account.Label}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return ids[0], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
|
|
func (aq *AccountQuery) FirstIDX(ctx context.Context) int64 {
|
|
|
|
id, err := aq.FirstID(ctx)
|
|
|
|
if err != nil && !IsNotFound(err) {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only returns a single Account entity found by the query, ensuring it only returns one.
|
|
|
|
// Returns a *NotSingularError when more than one Account entity is found.
|
|
|
|
// Returns a *NotFoundError when no Account entities are found.
|
|
|
|
func (aq *AccountQuery) Only(ctx context.Context) (*Account, error) {
|
2025-02-06 09:31:49 +01:00
|
|
|
nodes, err := aq.Limit(2).All(setContextOp(ctx, aq.ctx, ent.OpQueryOnly))
|
2022-04-08 21:26:25 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
switch len(nodes) {
|
|
|
|
case 1:
|
|
|
|
return nodes[0], nil
|
|
|
|
case 0:
|
|
|
|
return nil, &NotFoundError{account.Label}
|
|
|
|
default:
|
|
|
|
return nil, &NotSingularError{account.Label}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
|
|
func (aq *AccountQuery) OnlyX(ctx context.Context) *Account {
|
|
|
|
node, err := aq.Only(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return node
|
|
|
|
}
|
|
|
|
|
|
|
|
// OnlyID is like Only, but returns the only Account ID in the query.
|
|
|
|
// Returns a *NotSingularError when more than one Account ID is found.
|
|
|
|
// Returns a *NotFoundError when no entities are found.
|
|
|
|
func (aq *AccountQuery) OnlyID(ctx context.Context) (id int64, err error) {
|
|
|
|
var ids []int64
|
2025-02-06 09:31:49 +01:00
|
|
|
if ids, err = aq.Limit(2).IDs(setContextOp(ctx, aq.ctx, ent.OpQueryOnlyID)); err != nil {
|
2022-04-08 21:26:25 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
switch len(ids) {
|
|
|
|
case 1:
|
|
|
|
id = ids[0]
|
|
|
|
case 0:
|
|
|
|
err = &NotFoundError{account.Label}
|
|
|
|
default:
|
|
|
|
err = &NotSingularError{account.Label}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
|
|
func (aq *AccountQuery) OnlyIDX(ctx context.Context) int64 {
|
|
|
|
id, err := aq.OnlyID(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
|
|
|
// All executes the query and returns a list of Accounts.
|
|
|
|
func (aq *AccountQuery) All(ctx context.Context) ([]*Account, error) {
|
2025-02-06 09:31:49 +01:00
|
|
|
ctx = setContextOp(ctx, aq.ctx, ent.OpQueryAll)
|
2022-04-08 21:26:25 +02:00
|
|
|
if err := aq.prepareQuery(ctx); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
qr := querierAll[[]*Account, *AccountQuery]()
|
|
|
|
return withInterceptors[[]*Account](ctx, aq, qr, aq.inters)
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
|
|
func (aq *AccountQuery) AllX(ctx context.Context) []*Account {
|
|
|
|
nodes, err := aq.All(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return nodes
|
|
|
|
}
|
|
|
|
|
|
|
|
// IDs executes the query and returns a list of Account IDs.
|
2025-02-06 09:31:49 +01:00
|
|
|
func (aq *AccountQuery) IDs(ctx context.Context) (ids []int64, err error) {
|
|
|
|
if aq.ctx.Unique == nil && aq.path != nil {
|
|
|
|
aq.Unique(true)
|
|
|
|
}
|
|
|
|
ctx = setContextOp(ctx, aq.ctx, ent.OpQueryIDs)
|
|
|
|
if err = aq.Select(account.FieldID).Scan(ctx, &ids); err != nil {
|
2022-04-08 21:26:25 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return ids, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
|
|
func (aq *AccountQuery) IDsX(ctx context.Context) []int64 {
|
|
|
|
ids, err := aq.IDs(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return ids
|
|
|
|
}
|
|
|
|
|
|
|
|
// Count returns the count of the given query.
|
|
|
|
func (aq *AccountQuery) Count(ctx context.Context) (int, error) {
|
2025-02-06 09:31:49 +01:00
|
|
|
ctx = setContextOp(ctx, aq.ctx, ent.OpQueryCount)
|
2022-04-08 21:26:25 +02:00
|
|
|
if err := aq.prepareQuery(ctx); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
return withInterceptors[int](ctx, aq, querierCount[*AccountQuery](), aq.inters)
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
|
|
func (aq *AccountQuery) CountX(ctx context.Context) int {
|
|
|
|
count, err := aq.Count(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return count
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
|
|
func (aq *AccountQuery) Exist(ctx context.Context) (bool, error) {
|
2025-02-06 09:31:49 +01:00
|
|
|
ctx = setContextOp(ctx, aq.ctx, ent.OpQueryExist)
|
|
|
|
switch _, err := aq.FirstID(ctx); {
|
|
|
|
case IsNotFound(err):
|
|
|
|
return false, nil
|
|
|
|
case err != nil:
|
|
|
|
return false, fmt.Errorf("ent: check existence: %w", err)
|
|
|
|
default:
|
|
|
|
return true, nil
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
|
|
func (aq *AccountQuery) ExistX(ctx context.Context) bool {
|
|
|
|
exist, err := aq.Exist(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return exist
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clone returns a duplicate of the AccountQuery builder, including all associated steps. It can be
|
|
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
|
|
func (aq *AccountQuery) Clone() *AccountQuery {
|
|
|
|
if aq == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return &AccountQuery{
|
|
|
|
config: aq.config,
|
2025-02-06 09:31:49 +01:00
|
|
|
ctx: aq.ctx.Clone(),
|
|
|
|
order: append([]account.OrderOption{}, aq.order...),
|
|
|
|
inters: append([]Interceptor{}, aq.inters...),
|
2022-04-08 21:26:25 +02:00
|
|
|
predicates: append([]predicate.Account{}, aq.predicates...),
|
|
|
|
withDomains: aq.withDomains.Clone(),
|
|
|
|
withLogs: aq.withLogs.Clone(),
|
|
|
|
// clone intermediate query.
|
2025-02-06 09:31:49 +01:00
|
|
|
sql: aq.sql.Clone(),
|
|
|
|
path: aq.path,
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithDomains tells the query-builder to eager-load the nodes that are connected to
|
|
|
|
// the "domains" edge. The optional arguments are used to configure the query builder of the edge.
|
|
|
|
func (aq *AccountQuery) WithDomains(opts ...func(*DomainQuery)) *AccountQuery {
|
2025-02-06 09:31:49 +01:00
|
|
|
query := (&DomainClient{config: aq.config}).Query()
|
2022-04-08 21:26:25 +02:00
|
|
|
for _, opt := range opts {
|
|
|
|
opt(query)
|
|
|
|
}
|
|
|
|
aq.withDomains = query
|
|
|
|
return aq
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithLogs tells the query-builder to eager-load the nodes that are connected to
|
|
|
|
// the "logs" edge. The optional arguments are used to configure the query builder of the edge.
|
|
|
|
func (aq *AccountQuery) WithLogs(opts ...func(*LogentryQuery)) *AccountQuery {
|
2025-02-06 09:31:49 +01:00
|
|
|
query := (&LogentryClient{config: aq.config}).Query()
|
2022-04-08 21:26:25 +02:00
|
|
|
for _, opt := range opts {
|
|
|
|
opt(query)
|
|
|
|
}
|
|
|
|
aq.withLogs = query
|
|
|
|
return aq
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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 {
|
|
|
|
// Created time.Time `json:"created,omitempty"`
|
|
|
|
// Count int `json:"count,omitempty"`
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// client.Account.Query().
|
|
|
|
// GroupBy(account.FieldCreated).
|
|
|
|
// Aggregate(ent.Count()).
|
|
|
|
// Scan(ctx, &v)
|
|
|
|
func (aq *AccountQuery) GroupBy(field string, fields ...string) *AccountGroupBy {
|
2025-02-06 09:31:49 +01:00
|
|
|
aq.ctx.Fields = append([]string{field}, fields...)
|
|
|
|
grbuild := &AccountGroupBy{build: aq}
|
|
|
|
grbuild.flds = &aq.ctx.Fields
|
|
|
|
grbuild.label = account.Label
|
|
|
|
grbuild.scan = grbuild.Scan
|
|
|
|
return grbuild
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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 {
|
|
|
|
// Created time.Time `json:"created,omitempty"`
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// client.Account.Query().
|
|
|
|
// Select(account.FieldCreated).
|
|
|
|
// Scan(ctx, &v)
|
|
|
|
func (aq *AccountQuery) Select(fields ...string) *AccountSelect {
|
2025-02-06 09:31:49 +01:00
|
|
|
aq.ctx.Fields = append(aq.ctx.Fields, fields...)
|
|
|
|
sbuild := &AccountSelect{AccountQuery: aq}
|
|
|
|
sbuild.label = account.Label
|
|
|
|
sbuild.flds, sbuild.scan = &aq.ctx.Fields, sbuild.Scan
|
|
|
|
return sbuild
|
|
|
|
}
|
|
|
|
|
|
|
|
// Aggregate returns a AccountSelect configured with the given aggregations.
|
|
|
|
func (aq *AccountQuery) Aggregate(fns ...AggregateFunc) *AccountSelect {
|
|
|
|
return aq.Select().Aggregate(fns...)
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (aq *AccountQuery) prepareQuery(ctx context.Context) error {
|
2025-02-06 09:31:49 +01:00
|
|
|
for _, inter := range aq.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, aq); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, f := range aq.ctx.Fields {
|
2022-04-08 21:26:25 +02:00
|
|
|
if !account.ValidColumn(f) {
|
|
|
|
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if aq.path != nil {
|
|
|
|
prev, err := aq.path(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
aq.sql = prev
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2025-02-06 09:31:49 +01:00
|
|
|
func (aq *AccountQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*Account, error) {
|
2022-04-08 21:26:25 +02:00
|
|
|
var (
|
|
|
|
nodes = []*Account{}
|
|
|
|
_spec = aq.querySpec()
|
|
|
|
loadedTypes = [2]bool{
|
|
|
|
aq.withDomains != nil,
|
|
|
|
aq.withLogs != nil,
|
|
|
|
}
|
|
|
|
)
|
2025-02-06 09:31:49 +01:00
|
|
|
_spec.ScanValues = func(columns []string) ([]any, error) {
|
|
|
|
return (*Account).scanValues(nil, columns)
|
|
|
|
}
|
|
|
|
_spec.Assign = func(columns []string, values []any) error {
|
2022-04-08 21:26:25 +02:00
|
|
|
node := &Account{config: aq.config}
|
|
|
|
nodes = append(nodes, node)
|
|
|
|
node.Edges.loadedTypes = loadedTypes
|
|
|
|
return node.assignValues(columns, values)
|
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
for i := range hooks {
|
|
|
|
hooks[i](ctx, _spec)
|
|
|
|
}
|
2022-04-08 21:26:25 +02:00
|
|
|
if err := sqlgraph.QueryNodes(ctx, aq.driver, _spec); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(nodes) == 0 {
|
|
|
|
return nodes, nil
|
|
|
|
}
|
|
|
|
if query := aq.withDomains; query != nil {
|
2025-02-06 09:31:49 +01:00
|
|
|
if err := aq.loadDomains(ctx, query, nodes,
|
|
|
|
func(n *Account) { n.Edges.Domains = []*Domain{} },
|
|
|
|
func(n *Account, e *Domain) { n.Edges.Domains = append(n.Edges.Domains, e) }); err != nil {
|
|
|
|
return nil, err
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
}
|
|
|
|
if query := aq.withLogs; query != nil {
|
|
|
|
if err := aq.loadLogs(ctx, query, nodes,
|
|
|
|
func(n *Account) { n.Edges.Logs = []*Logentry{} },
|
|
|
|
func(n *Account, e *Logentry) { n.Edges.Logs = append(n.Edges.Logs, e) }); err != nil {
|
2022-04-08 21:26:25 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
}
|
|
|
|
return nodes, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (aq *AccountQuery) loadDomains(ctx context.Context, query *DomainQuery, nodes []*Account, init func(*Account), assign func(*Account, *Domain)) error {
|
|
|
|
edgeIDs := make([]driver.Value, len(nodes))
|
|
|
|
byID := make(map[int64]*Account)
|
|
|
|
nids := make(map[int64]map[*Account]struct{})
|
|
|
|
for i, node := range nodes {
|
|
|
|
edgeIDs[i] = node.ID
|
|
|
|
byID[node.ID] = node
|
|
|
|
if init != nil {
|
|
|
|
init(node)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
query.Where(func(s *sql.Selector) {
|
|
|
|
joinT := sql.Table(account.DomainsTable)
|
|
|
|
s.Join(joinT).On(s.C(domain.FieldID), joinT.C(account.DomainsPrimaryKey[1]))
|
|
|
|
s.Where(sql.InValues(joinT.C(account.DomainsPrimaryKey[0]), edgeIDs...))
|
|
|
|
columns := s.SelectedColumns()
|
|
|
|
s.Select(joinT.C(account.DomainsPrimaryKey[0]))
|
|
|
|
s.AppendSelect(columns...)
|
|
|
|
s.SetDistinct(false)
|
|
|
|
})
|
|
|
|
if err := query.prepareQuery(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
qr := QuerierFunc(func(ctx context.Context, q Query) (Value, error) {
|
|
|
|
return query.sqlAll(ctx, func(_ context.Context, spec *sqlgraph.QuerySpec) {
|
|
|
|
assign := spec.Assign
|
|
|
|
values := spec.ScanValues
|
|
|
|
spec.ScanValues = func(columns []string) ([]any, error) {
|
|
|
|
values, err := values(columns[1:])
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return append([]any{new(sql.NullInt64)}, values...), nil
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
spec.Assign = func(columns []string, values []any) error {
|
|
|
|
outValue := values[0].(*sql.NullInt64).Int64
|
|
|
|
inValue := values[1].(*sql.NullInt64).Int64
|
|
|
|
if nids[inValue] == nil {
|
|
|
|
nids[inValue] = map[*Account]struct{}{byID[outValue]: {}}
|
|
|
|
return assign(columns[1:], values[1:])
|
|
|
|
}
|
|
|
|
nids[inValue][byID[outValue]] = struct{}{}
|
|
|
|
return nil
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
neighbors, err := withInterceptors[[]*Domain](ctx, query, qr, query.inters)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
for _, n := range neighbors {
|
|
|
|
nodes, ok := nids[n.ID]
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(`unexpected "domains" node returned %v`, n.ID)
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
for kn := range nodes {
|
|
|
|
assign(kn, n)
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
func (aq *AccountQuery) loadLogs(ctx context.Context, query *LogentryQuery, nodes []*Account, init func(*Account), assign func(*Account, *Logentry)) error {
|
|
|
|
fks := make([]driver.Value, 0, len(nodes))
|
|
|
|
nodeids := make(map[int64]*Account)
|
|
|
|
for i := range nodes {
|
|
|
|
fks = append(fks, nodes[i].ID)
|
|
|
|
nodeids[nodes[i].ID] = nodes[i]
|
|
|
|
if init != nil {
|
|
|
|
init(nodes[i])
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
if len(query.ctx.Fields) > 0 {
|
|
|
|
query.ctx.AppendFieldOnce(logentry.FieldAccountID)
|
|
|
|
}
|
|
|
|
query.Where(predicate.Logentry(func(s *sql.Selector) {
|
|
|
|
s.Where(sql.InValues(s.C(account.LogsColumn), fks...))
|
|
|
|
}))
|
|
|
|
neighbors, err := query.All(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, n := range neighbors {
|
|
|
|
fk := n.AccountID
|
|
|
|
node, ok := nodeids[fk]
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(`unexpected referenced foreign-key "account_id" returned %v for node %v`, fk, n.ID)
|
|
|
|
}
|
|
|
|
assign(node, n)
|
|
|
|
}
|
|
|
|
return nil
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (aq *AccountQuery) sqlCount(ctx context.Context) (int, error) {
|
|
|
|
_spec := aq.querySpec()
|
2025-02-06 09:31:49 +01:00
|
|
|
_spec.Node.Columns = aq.ctx.Fields
|
|
|
|
if len(aq.ctx.Fields) > 0 {
|
|
|
|
_spec.Unique = aq.ctx.Unique != nil && *aq.ctx.Unique
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
return sqlgraph.CountNodes(ctx, aq.driver, _spec)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (aq *AccountQuery) querySpec() *sqlgraph.QuerySpec {
|
2025-02-06 09:31:49 +01:00
|
|
|
_spec := sqlgraph.NewQuerySpec(account.Table, account.Columns, sqlgraph.NewFieldSpec(account.FieldID, field.TypeInt64))
|
|
|
|
_spec.From = aq.sql
|
|
|
|
if unique := aq.ctx.Unique; unique != nil {
|
2022-04-08 21:26:25 +02:00
|
|
|
_spec.Unique = *unique
|
2025-02-06 09:31:49 +01:00
|
|
|
} else if aq.path != nil {
|
|
|
|
_spec.Unique = true
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
if fields := aq.ctx.Fields; len(fields) > 0 {
|
2022-04-08 21:26:25 +02:00
|
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
|
|
_spec.Node.Columns = append(_spec.Node.Columns, account.FieldID)
|
|
|
|
for i := range fields {
|
|
|
|
if fields[i] != account.FieldID {
|
|
|
|
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ps := aq.predicates; len(ps) > 0 {
|
|
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
|
|
for i := range ps {
|
|
|
|
ps[i](selector)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
if limit := aq.ctx.Limit; limit != nil {
|
2022-04-08 21:26:25 +02:00
|
|
|
_spec.Limit = *limit
|
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
if offset := aq.ctx.Offset; offset != nil {
|
2022-04-08 21:26:25 +02:00
|
|
|
_spec.Offset = *offset
|
|
|
|
}
|
|
|
|
if ps := aq.order; len(ps) > 0 {
|
|
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
|
|
for i := range ps {
|
|
|
|
ps[i](selector)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return _spec
|
|
|
|
}
|
|
|
|
|
|
|
|
func (aq *AccountQuery) sqlQuery(ctx context.Context) *sql.Selector {
|
|
|
|
builder := sql.Dialect(aq.driver.Dialect())
|
|
|
|
t1 := builder.Table(account.Table)
|
2025-02-06 09:31:49 +01:00
|
|
|
columns := aq.ctx.Fields
|
2022-04-08 21:26:25 +02:00
|
|
|
if len(columns) == 0 {
|
|
|
|
columns = account.Columns
|
|
|
|
}
|
|
|
|
selector := builder.Select(t1.Columns(columns...)...).From(t1)
|
|
|
|
if aq.sql != nil {
|
|
|
|
selector = aq.sql
|
|
|
|
selector.Select(selector.Columns(columns...)...)
|
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
if aq.ctx.Unique != nil && *aq.ctx.Unique {
|
2022-04-08 21:26:25 +02:00
|
|
|
selector.Distinct()
|
|
|
|
}
|
|
|
|
for _, p := range aq.predicates {
|
|
|
|
p(selector)
|
|
|
|
}
|
|
|
|
for _, p := range aq.order {
|
|
|
|
p(selector)
|
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
if offset := aq.ctx.Offset; offset != nil {
|
2022-04-08 21:26:25 +02:00
|
|
|
// limit is mandatory for offset clause. We start
|
|
|
|
// with default value, and override it below if needed.
|
|
|
|
selector.Offset(*offset).Limit(math.MaxInt32)
|
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
if limit := aq.ctx.Limit; limit != nil {
|
2022-04-08 21:26:25 +02:00
|
|
|
selector.Limit(*limit)
|
|
|
|
}
|
|
|
|
return selector
|
|
|
|
}
|
|
|
|
|
|
|
|
// AccountGroupBy is the group-by builder for Account entities.
|
|
|
|
type AccountGroupBy struct {
|
2025-02-06 09:31:49 +01:00
|
|
|
selector
|
|
|
|
build *AccountQuery
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Aggregate adds the given aggregation functions to the group-by query.
|
|
|
|
func (agb *AccountGroupBy) Aggregate(fns ...AggregateFunc) *AccountGroupBy {
|
|
|
|
agb.fns = append(agb.fns, fns...)
|
|
|
|
return agb
|
|
|
|
}
|
|
|
|
|
2025-02-06 09:31:49 +01:00
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
|
|
func (agb *AccountGroupBy) Scan(ctx context.Context, v any) error {
|
|
|
|
ctx = setContextOp(ctx, agb.build.ctx, ent.OpQueryGroupBy)
|
|
|
|
if err := agb.build.prepareQuery(ctx); err != nil {
|
2022-04-08 21:26:25 +02:00
|
|
|
return err
|
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
return scanWithInterceptors[*AccountQuery, *AccountGroupBy](ctx, agb.build, agb, agb.build.inters, v)
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
|
2025-02-06 09:31:49 +01:00
|
|
|
func (agb *AccountGroupBy) sqlScan(ctx context.Context, root *AccountQuery, v any) error {
|
|
|
|
selector := root.sqlQuery(ctx).Select()
|
|
|
|
aggregation := make([]string, 0, len(agb.fns))
|
|
|
|
for _, fn := range agb.fns {
|
|
|
|
aggregation = append(aggregation, fn(selector))
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
if len(selector.SelectedColumns()) == 0 {
|
|
|
|
columns := make([]string, 0, len(*agb.flds)+len(agb.fns))
|
|
|
|
for _, f := range *agb.flds {
|
|
|
|
columns = append(columns, selector.C(f))
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
columns = append(columns, aggregation...)
|
|
|
|
selector.Select(columns...)
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
selector.GroupBy(selector.Columns(*agb.flds...)...)
|
2022-04-08 21:26:25 +02:00
|
|
|
if err := selector.Err(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
rows := &sql.Rows{}
|
|
|
|
query, args := selector.Query()
|
2025-02-06 09:31:49 +01:00
|
|
|
if err := agb.build.driver.Query(ctx, query, args, rows); err != nil {
|
2022-04-08 21:26:25 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
return sql.ScanSlice(rows, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AccountSelect is the builder for selecting fields of Account entities.
|
|
|
|
type AccountSelect struct {
|
|
|
|
*AccountQuery
|
2025-02-06 09:31:49 +01:00
|
|
|
selector
|
|
|
|
}
|
|
|
|
|
|
|
|
// Aggregate adds the given aggregation functions to the selector query.
|
|
|
|
func (as *AccountSelect) Aggregate(fns ...AggregateFunc) *AccountSelect {
|
|
|
|
as.fns = append(as.fns, fns...)
|
|
|
|
return as
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
2025-02-06 09:31:49 +01:00
|
|
|
func (as *AccountSelect) Scan(ctx context.Context, v any) error {
|
|
|
|
ctx = setContextOp(ctx, as.ctx, ent.OpQuerySelect)
|
2022-04-08 21:26:25 +02:00
|
|
|
if err := as.prepareQuery(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
return scanWithInterceptors[*AccountQuery, *AccountSelect](ctx, as.AccountQuery, as, as.inters, v)
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
|
2025-02-06 09:31:49 +01:00
|
|
|
func (as *AccountSelect) sqlScan(ctx context.Context, root *AccountQuery, v any) error {
|
|
|
|
selector := root.sqlQuery(ctx)
|
|
|
|
aggregation := make([]string, 0, len(as.fns))
|
|
|
|
for _, fn := range as.fns {
|
|
|
|
aggregation = append(aggregation, fn(selector))
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
switch n := len(*as.selector.flds); {
|
|
|
|
case n == 0 && len(aggregation) > 0:
|
|
|
|
selector.Select(aggregation...)
|
|
|
|
case n != 0 && len(aggregation) > 0:
|
|
|
|
selector.AppendSelect(aggregation...)
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
rows := &sql.Rows{}
|
2025-02-06 09:31:49 +01:00
|
|
|
query, args := selector.Query()
|
2022-04-08 21:26:25 +02:00
|
|
|
if err := as.driver.Query(ctx, query, args, rows); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
return sql.ScanSlice(rows, v)
|
|
|
|
}
|