manager/ent/mailbox_query.go

607 lines
17 KiB
Go
Raw Normal View History

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"
"fmt"
"math"
"code.icod.de/postfix/manager/ent/domain"
"code.icod.de/postfix/manager/ent/mailbox"
"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"
)
// MailboxQuery is the builder for querying Mailbox entities.
type MailboxQuery struct {
config
2025-02-06 09:31:49 +01:00
ctx *QueryContext
order []mailbox.OrderOption
inters []Interceptor
2022-04-08 21:26:25 +02:00
predicates []predicate.Mailbox
withDomain *DomainQuery
// intermediate query (i.e. traversal path).
sql *sql.Selector
path func(context.Context) (*sql.Selector, error)
}
// Where adds a new predicate for the MailboxQuery builder.
func (mq *MailboxQuery) Where(ps ...predicate.Mailbox) *MailboxQuery {
mq.predicates = append(mq.predicates, ps...)
return mq
}
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 (mq *MailboxQuery) Limit(limit int) *MailboxQuery {
2025-02-06 09:31:49 +01:00
mq.ctx.Limit = &limit
2022-04-08 21:26:25 +02:00
return mq
}
2025-02-06 09:31:49 +01:00
// Offset to start from.
2022-04-08 21:26:25 +02:00
func (mq *MailboxQuery) Offset(offset int) *MailboxQuery {
2025-02-06 09:31:49 +01:00
mq.ctx.Offset = &offset
2022-04-08 21:26:25 +02:00
return mq
}
// 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 (mq *MailboxQuery) Unique(unique bool) *MailboxQuery {
2025-02-06 09:31:49 +01:00
mq.ctx.Unique = &unique
2022-04-08 21:26:25 +02:00
return mq
}
2025-02-06 09:31:49 +01:00
// Order specifies how the records should be ordered.
func (mq *MailboxQuery) Order(o ...mailbox.OrderOption) *MailboxQuery {
2022-04-08 21:26:25 +02:00
mq.order = append(mq.order, o...)
return mq
}
// QueryDomain chains the current query on the "domain" edge.
func (mq *MailboxQuery) QueryDomain() *DomainQuery {
2025-02-06 09:31:49 +01:00
query := (&DomainClient{config: mq.config}).Query()
2022-04-08 21:26:25 +02:00
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
if err := mq.prepareQuery(ctx); err != nil {
return nil, err
}
selector := mq.sqlQuery(ctx)
if err := selector.Err(); err != nil {
return nil, err
}
step := sqlgraph.NewStep(
sqlgraph.From(mailbox.Table, mailbox.FieldID, selector),
sqlgraph.To(domain.Table, domain.FieldID),
sqlgraph.Edge(sqlgraph.M2O, true, mailbox.DomainTable, mailbox.DomainColumn),
)
fromU = sqlgraph.SetNeighbors(mq.driver.Dialect(), step)
return fromU, nil
}
return query
}
// First returns the first Mailbox entity from the query.
// Returns a *NotFoundError when no Mailbox was found.
func (mq *MailboxQuery) First(ctx context.Context) (*Mailbox, error) {
2025-02-06 09:31:49 +01:00
nodes, err := mq.Limit(1).All(setContextOp(ctx, mq.ctx, ent.OpQueryFirst))
2022-04-08 21:26:25 +02:00
if err != nil {
return nil, err
}
if len(nodes) == 0 {
return nil, &NotFoundError{mailbox.Label}
}
return nodes[0], nil
}
// FirstX is like First, but panics if an error occurs.
func (mq *MailboxQuery) FirstX(ctx context.Context) *Mailbox {
node, err := mq.First(ctx)
if err != nil && !IsNotFound(err) {
panic(err)
}
return node
}
// FirstID returns the first Mailbox ID from the query.
// Returns a *NotFoundError when no Mailbox ID was found.
func (mq *MailboxQuery) FirstID(ctx context.Context) (id int64, err error) {
var ids []int64
2025-02-06 09:31:49 +01:00
if ids, err = mq.Limit(1).IDs(setContextOp(ctx, mq.ctx, ent.OpQueryFirstID)); err != nil {
2022-04-08 21:26:25 +02:00
return
}
if len(ids) == 0 {
err = &NotFoundError{mailbox.Label}
return
}
return ids[0], nil
}
// FirstIDX is like FirstID, but panics if an error occurs.
func (mq *MailboxQuery) FirstIDX(ctx context.Context) int64 {
id, err := mq.FirstID(ctx)
if err != nil && !IsNotFound(err) {
panic(err)
}
return id
}
// Only returns a single Mailbox entity found by the query, ensuring it only returns one.
// Returns a *NotSingularError when more than one Mailbox entity is found.
// Returns a *NotFoundError when no Mailbox entities are found.
func (mq *MailboxQuery) Only(ctx context.Context) (*Mailbox, error) {
2025-02-06 09:31:49 +01:00
nodes, err := mq.Limit(2).All(setContextOp(ctx, mq.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{mailbox.Label}
default:
return nil, &NotSingularError{mailbox.Label}
}
}
// OnlyX is like Only, but panics if an error occurs.
func (mq *MailboxQuery) OnlyX(ctx context.Context) *Mailbox {
node, err := mq.Only(ctx)
if err != nil {
panic(err)
}
return node
}
// OnlyID is like Only, but returns the only Mailbox ID in the query.
// Returns a *NotSingularError when more than one Mailbox ID is found.
// Returns a *NotFoundError when no entities are found.
func (mq *MailboxQuery) OnlyID(ctx context.Context) (id int64, err error) {
var ids []int64
2025-02-06 09:31:49 +01:00
if ids, err = mq.Limit(2).IDs(setContextOp(ctx, mq.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{mailbox.Label}
default:
err = &NotSingularError{mailbox.Label}
}
return
}
// OnlyIDX is like OnlyID, but panics if an error occurs.
func (mq *MailboxQuery) OnlyIDX(ctx context.Context) int64 {
id, err := mq.OnlyID(ctx)
if err != nil {
panic(err)
}
return id
}
// All executes the query and returns a list of Mailboxes.
func (mq *MailboxQuery) All(ctx context.Context) ([]*Mailbox, error) {
2025-02-06 09:31:49 +01:00
ctx = setContextOp(ctx, mq.ctx, ent.OpQueryAll)
2022-04-08 21:26:25 +02:00
if err := mq.prepareQuery(ctx); err != nil {
return nil, err
}
2025-02-06 09:31:49 +01:00
qr := querierAll[[]*Mailbox, *MailboxQuery]()
return withInterceptors[[]*Mailbox](ctx, mq, qr, mq.inters)
2022-04-08 21:26:25 +02:00
}
// AllX is like All, but panics if an error occurs.
func (mq *MailboxQuery) AllX(ctx context.Context) []*Mailbox {
nodes, err := mq.All(ctx)
if err != nil {
panic(err)
}
return nodes
}
// IDs executes the query and returns a list of Mailbox IDs.
2025-02-06 09:31:49 +01:00
func (mq *MailboxQuery) IDs(ctx context.Context) (ids []int64, err error) {
if mq.ctx.Unique == nil && mq.path != nil {
mq.Unique(true)
}
ctx = setContextOp(ctx, mq.ctx, ent.OpQueryIDs)
if err = mq.Select(mailbox.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 (mq *MailboxQuery) IDsX(ctx context.Context) []int64 {
ids, err := mq.IDs(ctx)
if err != nil {
panic(err)
}
return ids
}
// Count returns the count of the given query.
func (mq *MailboxQuery) Count(ctx context.Context) (int, error) {
2025-02-06 09:31:49 +01:00
ctx = setContextOp(ctx, mq.ctx, ent.OpQueryCount)
2022-04-08 21:26:25 +02:00
if err := mq.prepareQuery(ctx); err != nil {
return 0, err
}
2025-02-06 09:31:49 +01:00
return withInterceptors[int](ctx, mq, querierCount[*MailboxQuery](), mq.inters)
2022-04-08 21:26:25 +02:00
}
// CountX is like Count, but panics if an error occurs.
func (mq *MailboxQuery) CountX(ctx context.Context) int {
count, err := mq.Count(ctx)
if err != nil {
panic(err)
}
return count
}
// Exist returns true if the query has elements in the graph.
func (mq *MailboxQuery) Exist(ctx context.Context) (bool, error) {
2025-02-06 09:31:49 +01:00
ctx = setContextOp(ctx, mq.ctx, ent.OpQueryExist)
switch _, err := mq.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 (mq *MailboxQuery) ExistX(ctx context.Context) bool {
exist, err := mq.Exist(ctx)
if err != nil {
panic(err)
}
return exist
}
// Clone returns a duplicate of the MailboxQuery builder, including all associated steps. It can be
// used to prepare common query builders and use them differently after the clone is made.
func (mq *MailboxQuery) Clone() *MailboxQuery {
if mq == nil {
return nil
}
return &MailboxQuery{
config: mq.config,
2025-02-06 09:31:49 +01:00
ctx: mq.ctx.Clone(),
order: append([]mailbox.OrderOption{}, mq.order...),
inters: append([]Interceptor{}, mq.inters...),
2022-04-08 21:26:25 +02:00
predicates: append([]predicate.Mailbox{}, mq.predicates...),
withDomain: mq.withDomain.Clone(),
// clone intermediate query.
2025-02-06 09:31:49 +01:00
sql: mq.sql.Clone(),
path: mq.path,
2022-04-08 21:26:25 +02:00
}
}
// WithDomain tells the query-builder to eager-load the nodes that are connected to
// the "domain" edge. The optional arguments are used to configure the query builder of the edge.
func (mq *MailboxQuery) WithDomain(opts ...func(*DomainQuery)) *MailboxQuery {
2025-02-06 09:31:49 +01:00
query := (&DomainClient{config: mq.config}).Query()
2022-04-08 21:26:25 +02:00
for _, opt := range opts {
opt(query)
}
mq.withDomain = query
return mq
}
// 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 {
// Active bool `json:"active,omitempty"`
// Count int `json:"count,omitempty"`
// }
//
// client.Mailbox.Query().
// GroupBy(mailbox.FieldActive).
// Aggregate(ent.Count()).
// Scan(ctx, &v)
func (mq *MailboxQuery) GroupBy(field string, fields ...string) *MailboxGroupBy {
2025-02-06 09:31:49 +01:00
mq.ctx.Fields = append([]string{field}, fields...)
grbuild := &MailboxGroupBy{build: mq}
grbuild.flds = &mq.ctx.Fields
grbuild.label = mailbox.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 {
// Active bool `json:"active,omitempty"`
// }
//
// client.Mailbox.Query().
// Select(mailbox.FieldActive).
// Scan(ctx, &v)
func (mq *MailboxQuery) Select(fields ...string) *MailboxSelect {
2025-02-06 09:31:49 +01:00
mq.ctx.Fields = append(mq.ctx.Fields, fields...)
sbuild := &MailboxSelect{MailboxQuery: mq}
sbuild.label = mailbox.Label
sbuild.flds, sbuild.scan = &mq.ctx.Fields, sbuild.Scan
return sbuild
}
// Aggregate returns a MailboxSelect configured with the given aggregations.
func (mq *MailboxQuery) Aggregate(fns ...AggregateFunc) *MailboxSelect {
return mq.Select().Aggregate(fns...)
2022-04-08 21:26:25 +02:00
}
func (mq *MailboxQuery) prepareQuery(ctx context.Context) error {
2025-02-06 09:31:49 +01:00
for _, inter := range mq.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, mq); err != nil {
return err
}
}
}
for _, f := range mq.ctx.Fields {
2022-04-08 21:26:25 +02:00
if !mailbox.ValidColumn(f) {
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
}
}
if mq.path != nil {
prev, err := mq.path(ctx)
if err != nil {
return err
}
mq.sql = prev
}
return nil
}
2025-02-06 09:31:49 +01:00
func (mq *MailboxQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*Mailbox, error) {
2022-04-08 21:26:25 +02:00
var (
nodes = []*Mailbox{}
_spec = mq.querySpec()
loadedTypes = [1]bool{
mq.withDomain != nil,
}
)
2025-02-06 09:31:49 +01:00
_spec.ScanValues = func(columns []string) ([]any, error) {
return (*Mailbox).scanValues(nil, columns)
}
_spec.Assign = func(columns []string, values []any) error {
2022-04-08 21:26:25 +02:00
node := &Mailbox{config: mq.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, mq.driver, _spec); err != nil {
return nil, err
}
if len(nodes) == 0 {
return nodes, nil
}
if query := mq.withDomain; query != nil {
2025-02-06 09:31:49 +01:00
if err := mq.loadDomain(ctx, query, nodes, nil,
func(n *Mailbox, e *Domain) { n.Edges.Domain = e }); err != nil {
2022-04-08 21:26:25 +02:00
return nil, err
}
}
return nodes, nil
}
2025-02-06 09:31:49 +01:00
func (mq *MailboxQuery) loadDomain(ctx context.Context, query *DomainQuery, nodes []*Mailbox, init func(*Mailbox), assign func(*Mailbox, *Domain)) error {
ids := make([]int64, 0, len(nodes))
nodeids := make(map[int64][]*Mailbox)
for i := range nodes {
fk := nodes[i].DomainID
if _, ok := nodeids[fk]; !ok {
ids = append(ids, fk)
}
nodeids[fk] = append(nodeids[fk], nodes[i])
2022-04-08 21:26:25 +02:00
}
2025-02-06 09:31:49 +01:00
if len(ids) == 0 {
return nil
}
query.Where(domain.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 "domain_id" returned %v`, n.ID)
}
for i := range nodes {
assign(nodes[i], n)
}
}
return nil
2022-04-08 21:26:25 +02:00
}
2025-02-06 09:31:49 +01:00
func (mq *MailboxQuery) sqlCount(ctx context.Context) (int, error) {
_spec := mq.querySpec()
_spec.Node.Columns = mq.ctx.Fields
if len(mq.ctx.Fields) > 0 {
_spec.Unique = mq.ctx.Unique != nil && *mq.ctx.Unique
2022-04-08 21:26:25 +02:00
}
2025-02-06 09:31:49 +01:00
return sqlgraph.CountNodes(ctx, mq.driver, _spec)
2022-04-08 21:26:25 +02:00
}
func (mq *MailboxQuery) querySpec() *sqlgraph.QuerySpec {
2025-02-06 09:31:49 +01:00
_spec := sqlgraph.NewQuerySpec(mailbox.Table, mailbox.Columns, sqlgraph.NewFieldSpec(mailbox.FieldID, field.TypeInt64))
_spec.From = mq.sql
if unique := mq.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 mq.path != nil {
_spec.Unique = true
2022-04-08 21:26:25 +02:00
}
2025-02-06 09:31:49 +01:00
if fields := mq.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, mailbox.FieldID)
for i := range fields {
if fields[i] != mailbox.FieldID {
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
}
}
2025-02-06 09:31:49 +01:00
if mq.withDomain != nil {
_spec.Node.AddColumnOnce(mailbox.FieldDomainID)
}
2022-04-08 21:26:25 +02:00
}
if ps := mq.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 := mq.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 := mq.ctx.Offset; offset != nil {
2022-04-08 21:26:25 +02:00
_spec.Offset = *offset
}
if ps := mq.order; len(ps) > 0 {
_spec.Order = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
return _spec
}
func (mq *MailboxQuery) sqlQuery(ctx context.Context) *sql.Selector {
builder := sql.Dialect(mq.driver.Dialect())
t1 := builder.Table(mailbox.Table)
2025-02-06 09:31:49 +01:00
columns := mq.ctx.Fields
2022-04-08 21:26:25 +02:00
if len(columns) == 0 {
columns = mailbox.Columns
}
selector := builder.Select(t1.Columns(columns...)...).From(t1)
if mq.sql != nil {
selector = mq.sql
selector.Select(selector.Columns(columns...)...)
}
2025-02-06 09:31:49 +01:00
if mq.ctx.Unique != nil && *mq.ctx.Unique {
2022-04-08 21:26:25 +02:00
selector.Distinct()
}
for _, p := range mq.predicates {
p(selector)
}
for _, p := range mq.order {
p(selector)
}
2025-02-06 09:31:49 +01:00
if offset := mq.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 := mq.ctx.Limit; limit != nil {
2022-04-08 21:26:25 +02:00
selector.Limit(*limit)
}
return selector
}
// MailboxGroupBy is the group-by builder for Mailbox entities.
type MailboxGroupBy struct {
2025-02-06 09:31:49 +01:00
selector
build *MailboxQuery
2022-04-08 21:26:25 +02:00
}
// Aggregate adds the given aggregation functions to the group-by query.
func (mgb *MailboxGroupBy) Aggregate(fns ...AggregateFunc) *MailboxGroupBy {
mgb.fns = append(mgb.fns, fns...)
return mgb
}
2025-02-06 09:31:49 +01:00
// Scan applies the selector query and scans the result into the given value.
func (mgb *MailboxGroupBy) Scan(ctx context.Context, v any) error {
ctx = setContextOp(ctx, mgb.build.ctx, ent.OpQueryGroupBy)
if err := mgb.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[*MailboxQuery, *MailboxGroupBy](ctx, mgb.build, mgb, mgb.build.inters, v)
2022-04-08 21:26:25 +02:00
}
2025-02-06 09:31:49 +01:00
func (mgb *MailboxGroupBy) sqlScan(ctx context.Context, root *MailboxQuery, v any) error {
selector := root.sqlQuery(ctx).Select()
aggregation := make([]string, 0, len(mgb.fns))
for _, fn := range mgb.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(*mgb.flds)+len(mgb.fns))
for _, f := range *mgb.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(*mgb.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 := mgb.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)
}
// MailboxSelect is the builder for selecting fields of Mailbox entities.
type MailboxSelect struct {
*MailboxQuery
2025-02-06 09:31:49 +01:00
selector
}
// Aggregate adds the given aggregation functions to the selector query.
func (ms *MailboxSelect) Aggregate(fns ...AggregateFunc) *MailboxSelect {
ms.fns = append(ms.fns, fns...)
return ms
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 (ms *MailboxSelect) Scan(ctx context.Context, v any) error {
ctx = setContextOp(ctx, ms.ctx, ent.OpQuerySelect)
2022-04-08 21:26:25 +02:00
if err := ms.prepareQuery(ctx); err != nil {
return err
}
2025-02-06 09:31:49 +01:00
return scanWithInterceptors[*MailboxQuery, *MailboxSelect](ctx, ms.MailboxQuery, ms, ms.inters, v)
2022-04-08 21:26:25 +02:00
}
2025-02-06 09:31:49 +01:00
func (ms *MailboxSelect) sqlScan(ctx context.Context, root *MailboxQuery, v any) error {
selector := root.sqlQuery(ctx)
aggregation := make([]string, 0, len(ms.fns))
for _, fn := range ms.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(*ms.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 := ms.driver.Query(ctx, query, args, rows); err != nil {
return err
}
defer rows.Close()
return sql.ScanSlice(rows, v)
}