990 lines
26 KiB
Go
990 lines
26 KiB
Go
|
// Code generated by entc, DO NOT EDIT.
|
||
|
|
||
|
package ent
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"errors"
|
||
|
"fmt"
|
||
|
"math"
|
||
|
|
||
|
"code.icod.de/postfix/manager/ent/domain"
|
||
|
"code.icod.de/postfix/manager/ent/mailbox"
|
||
|
"code.icod.de/postfix/manager/ent/predicate"
|
||
|
"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
|
||
|
limit *int
|
||
|
offset *int
|
||
|
unique *bool
|
||
|
order []OrderFunc
|
||
|
fields []string
|
||
|
predicates []predicate.Mailbox
|
||
|
// eager-loading edges.
|
||
|
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
|
||
|
}
|
||
|
|
||
|
// Limit adds a limit step to the query.
|
||
|
func (mq *MailboxQuery) Limit(limit int) *MailboxQuery {
|
||
|
mq.limit = &limit
|
||
|
return mq
|
||
|
}
|
||
|
|
||
|
// Offset adds an offset step to the query.
|
||
|
func (mq *MailboxQuery) Offset(offset int) *MailboxQuery {
|
||
|
mq.offset = &offset
|
||
|
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 {
|
||
|
mq.unique = &unique
|
||
|
return mq
|
||
|
}
|
||
|
|
||
|
// Order adds an order step to the query.
|
||
|
func (mq *MailboxQuery) Order(o ...OrderFunc) *MailboxQuery {
|
||
|
mq.order = append(mq.order, o...)
|
||
|
return mq
|
||
|
}
|
||
|
|
||
|
// QueryDomain chains the current query on the "domain" edge.
|
||
|
func (mq *MailboxQuery) QueryDomain() *DomainQuery {
|
||
|
query := &DomainQuery{config: mq.config}
|
||
|
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) {
|
||
|
nodes, err := mq.Limit(1).All(ctx)
|
||
|
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
|
||
|
if ids, err = mq.Limit(1).IDs(ctx); err != nil {
|
||
|
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) {
|
||
|
nodes, err := mq.Limit(2).All(ctx)
|
||
|
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
|
||
|
if ids, err = mq.Limit(2).IDs(ctx); err != nil {
|
||
|
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) {
|
||
|
if err := mq.prepareQuery(ctx); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return mq.sqlAll(ctx)
|
||
|
}
|
||
|
|
||
|
// 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.
|
||
|
func (mq *MailboxQuery) IDs(ctx context.Context) ([]int64, error) {
|
||
|
var ids []int64
|
||
|
if err := mq.Select(mailbox.FieldID).Scan(ctx, &ids); err != nil {
|
||
|
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) {
|
||
|
if err := mq.prepareQuery(ctx); err != nil {
|
||
|
return 0, err
|
||
|
}
|
||
|
return mq.sqlCount(ctx)
|
||
|
}
|
||
|
|
||
|
// 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) {
|
||
|
if err := mq.prepareQuery(ctx); err != nil {
|
||
|
return false, err
|
||
|
}
|
||
|
return mq.sqlExist(ctx)
|
||
|
}
|
||
|
|
||
|
// 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,
|
||
|
limit: mq.limit,
|
||
|
offset: mq.offset,
|
||
|
order: append([]OrderFunc{}, mq.order...),
|
||
|
predicates: append([]predicate.Mailbox{}, mq.predicates...),
|
||
|
withDomain: mq.withDomain.Clone(),
|
||
|
// clone intermediate query.
|
||
|
sql: mq.sql.Clone(),
|
||
|
path: mq.path,
|
||
|
unique: mq.unique,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// 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 {
|
||
|
query := &DomainQuery{config: mq.config}
|
||
|
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 {
|
||
|
group := &MailboxGroupBy{config: mq.config}
|
||
|
group.fields = append([]string{field}, fields...)
|
||
|
group.path = func(ctx context.Context) (prev *sql.Selector, err error) {
|
||
|
if err := mq.prepareQuery(ctx); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return mq.sqlQuery(ctx), nil
|
||
|
}
|
||
|
return group
|
||
|
}
|
||
|
|
||
|
// 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 {
|
||
|
mq.fields = append(mq.fields, fields...)
|
||
|
return &MailboxSelect{MailboxQuery: mq}
|
||
|
}
|
||
|
|
||
|
func (mq *MailboxQuery) prepareQuery(ctx context.Context) error {
|
||
|
for _, f := range mq.fields {
|
||
|
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
|
||
|
}
|
||
|
|
||
|
func (mq *MailboxQuery) sqlAll(ctx context.Context) ([]*Mailbox, error) {
|
||
|
var (
|
||
|
nodes = []*Mailbox{}
|
||
|
_spec = mq.querySpec()
|
||
|
loadedTypes = [1]bool{
|
||
|
mq.withDomain != nil,
|
||
|
}
|
||
|
)
|
||
|
_spec.ScanValues = func(columns []string) ([]interface{}, error) {
|
||
|
node := &Mailbox{config: mq.config}
|
||
|
nodes = append(nodes, node)
|
||
|
return node.scanValues(columns)
|
||
|
}
|
||
|
_spec.Assign = func(columns []string, values []interface{}) error {
|
||
|
if len(nodes) == 0 {
|
||
|
return fmt.Errorf("ent: Assign called without calling ScanValues")
|
||
|
}
|
||
|
node := nodes[len(nodes)-1]
|
||
|
node.Edges.loadedTypes = loadedTypes
|
||
|
return node.assignValues(columns, values)
|
||
|
}
|
||
|
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 {
|
||
|
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])
|
||
|
}
|
||
|
query.Where(domain.IDIn(ids...))
|
||
|
neighbors, err := query.All(ctx)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
for _, n := range neighbors {
|
||
|
nodes, ok := nodeids[n.ID]
|
||
|
if !ok {
|
||
|
return nil, fmt.Errorf(`unexpected foreign-key "domain_id" returned %v`, n.ID)
|
||
|
}
|
||
|
for i := range nodes {
|
||
|
nodes[i].Edges.Domain = n
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nodes, nil
|
||
|
}
|
||
|
|
||
|
func (mq *MailboxQuery) sqlCount(ctx context.Context) (int, error) {
|
||
|
_spec := mq.querySpec()
|
||
|
_spec.Node.Columns = mq.fields
|
||
|
if len(mq.fields) > 0 {
|
||
|
_spec.Unique = mq.unique != nil && *mq.unique
|
||
|
}
|
||
|
return sqlgraph.CountNodes(ctx, mq.driver, _spec)
|
||
|
}
|
||
|
|
||
|
func (mq *MailboxQuery) sqlExist(ctx context.Context) (bool, error) {
|
||
|
n, err := mq.sqlCount(ctx)
|
||
|
if err != nil {
|
||
|
return false, fmt.Errorf("ent: check existence: %w", err)
|
||
|
}
|
||
|
return n > 0, nil
|
||
|
}
|
||
|
|
||
|
func (mq *MailboxQuery) querySpec() *sqlgraph.QuerySpec {
|
||
|
_spec := &sqlgraph.QuerySpec{
|
||
|
Node: &sqlgraph.NodeSpec{
|
||
|
Table: mailbox.Table,
|
||
|
Columns: mailbox.Columns,
|
||
|
ID: &sqlgraph.FieldSpec{
|
||
|
Type: field.TypeInt64,
|
||
|
Column: mailbox.FieldID,
|
||
|
},
|
||
|
},
|
||
|
From: mq.sql,
|
||
|
Unique: true,
|
||
|
}
|
||
|
if unique := mq.unique; unique != nil {
|
||
|
_spec.Unique = *unique
|
||
|
}
|
||
|
if fields := mq.fields; len(fields) > 0 {
|
||
|
_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])
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
if ps := mq.predicates; len(ps) > 0 {
|
||
|
_spec.Predicate = func(selector *sql.Selector) {
|
||
|
for i := range ps {
|
||
|
ps[i](selector)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
if limit := mq.limit; limit != nil {
|
||
|
_spec.Limit = *limit
|
||
|
}
|
||
|
if offset := mq.offset; offset != nil {
|
||
|
_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)
|
||
|
columns := mq.fields
|
||
|
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...)...)
|
||
|
}
|
||
|
if mq.unique != nil && *mq.unique {
|
||
|
selector.Distinct()
|
||
|
}
|
||
|
for _, p := range mq.predicates {
|
||
|
p(selector)
|
||
|
}
|
||
|
for _, p := range mq.order {
|
||
|
p(selector)
|
||
|
}
|
||
|
if offset := mq.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 := mq.limit; limit != nil {
|
||
|
selector.Limit(*limit)
|
||
|
}
|
||
|
return selector
|
||
|
}
|
||
|
|
||
|
// MailboxGroupBy is the group-by builder for Mailbox entities.
|
||
|
type MailboxGroupBy struct {
|
||
|
config
|
||
|
fields []string
|
||
|
fns []AggregateFunc
|
||
|
// intermediate query (i.e. traversal path).
|
||
|
sql *sql.Selector
|
||
|
path func(context.Context) (*sql.Selector, error)
|
||
|
}
|
||
|
|
||
|
// 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
|
||
|
}
|
||
|
|
||
|
// Scan applies the group-by query and scans the result into the given value.
|
||
|
func (mgb *MailboxGroupBy) Scan(ctx context.Context, v interface{}) error {
|
||
|
query, err := mgb.path(ctx)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
mgb.sql = query
|
||
|
return mgb.sqlScan(ctx, v)
|
||
|
}
|
||
|
|
||
|
// ScanX is like Scan, but panics if an error occurs.
|
||
|
func (mgb *MailboxGroupBy) ScanX(ctx context.Context, v interface{}) {
|
||
|
if err := mgb.Scan(ctx, v); err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Strings returns list of strings from group-by.
|
||
|
// It is only allowed when executing a group-by query with one field.
|
||
|
func (mgb *MailboxGroupBy) Strings(ctx context.Context) ([]string, error) {
|
||
|
if len(mgb.fields) > 1 {
|
||
|
return nil, errors.New("ent: MailboxGroupBy.Strings is not achievable when grouping more than 1 field")
|
||
|
}
|
||
|
var v []string
|
||
|
if err := mgb.Scan(ctx, &v); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return v, nil
|
||
|
}
|
||
|
|
||
|
// StringsX is like Strings, but panics if an error occurs.
|
||
|
func (mgb *MailboxGroupBy) StringsX(ctx context.Context) []string {
|
||
|
v, err := mgb.Strings(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// String returns a single string from a group-by query.
|
||
|
// It is only allowed when executing a group-by query with one field.
|
||
|
func (mgb *MailboxGroupBy) String(ctx context.Context) (_ string, err error) {
|
||
|
var v []string
|
||
|
if v, err = mgb.Strings(ctx); err != nil {
|
||
|
return
|
||
|
}
|
||
|
switch len(v) {
|
||
|
case 1:
|
||
|
return v[0], nil
|
||
|
case 0:
|
||
|
err = &NotFoundError{mailbox.Label}
|
||
|
default:
|
||
|
err = fmt.Errorf("ent: MailboxGroupBy.Strings returned %d results when one was expected", len(v))
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// StringX is like String, but panics if an error occurs.
|
||
|
func (mgb *MailboxGroupBy) StringX(ctx context.Context) string {
|
||
|
v, err := mgb.String(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// Ints returns list of ints from group-by.
|
||
|
// It is only allowed when executing a group-by query with one field.
|
||
|
func (mgb *MailboxGroupBy) Ints(ctx context.Context) ([]int, error) {
|
||
|
if len(mgb.fields) > 1 {
|
||
|
return nil, errors.New("ent: MailboxGroupBy.Ints is not achievable when grouping more than 1 field")
|
||
|
}
|
||
|
var v []int
|
||
|
if err := mgb.Scan(ctx, &v); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return v, nil
|
||
|
}
|
||
|
|
||
|
// IntsX is like Ints, but panics if an error occurs.
|
||
|
func (mgb *MailboxGroupBy) IntsX(ctx context.Context) []int {
|
||
|
v, err := mgb.Ints(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// Int returns a single int from a group-by query.
|
||
|
// It is only allowed when executing a group-by query with one field.
|
||
|
func (mgb *MailboxGroupBy) Int(ctx context.Context) (_ int, err error) {
|
||
|
var v []int
|
||
|
if v, err = mgb.Ints(ctx); err != nil {
|
||
|
return
|
||
|
}
|
||
|
switch len(v) {
|
||
|
case 1:
|
||
|
return v[0], nil
|
||
|
case 0:
|
||
|
err = &NotFoundError{mailbox.Label}
|
||
|
default:
|
||
|
err = fmt.Errorf("ent: MailboxGroupBy.Ints returned %d results when one was expected", len(v))
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// IntX is like Int, but panics if an error occurs.
|
||
|
func (mgb *MailboxGroupBy) IntX(ctx context.Context) int {
|
||
|
v, err := mgb.Int(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// Float64s returns list of float64s from group-by.
|
||
|
// It is only allowed when executing a group-by query with one field.
|
||
|
func (mgb *MailboxGroupBy) Float64s(ctx context.Context) ([]float64, error) {
|
||
|
if len(mgb.fields) > 1 {
|
||
|
return nil, errors.New("ent: MailboxGroupBy.Float64s is not achievable when grouping more than 1 field")
|
||
|
}
|
||
|
var v []float64
|
||
|
if err := mgb.Scan(ctx, &v); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return v, nil
|
||
|
}
|
||
|
|
||
|
// Float64sX is like Float64s, but panics if an error occurs.
|
||
|
func (mgb *MailboxGroupBy) Float64sX(ctx context.Context) []float64 {
|
||
|
v, err := mgb.Float64s(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// Float64 returns a single float64 from a group-by query.
|
||
|
// It is only allowed when executing a group-by query with one field.
|
||
|
func (mgb *MailboxGroupBy) Float64(ctx context.Context) (_ float64, err error) {
|
||
|
var v []float64
|
||
|
if v, err = mgb.Float64s(ctx); err != nil {
|
||
|
return
|
||
|
}
|
||
|
switch len(v) {
|
||
|
case 1:
|
||
|
return v[0], nil
|
||
|
case 0:
|
||
|
err = &NotFoundError{mailbox.Label}
|
||
|
default:
|
||
|
err = fmt.Errorf("ent: MailboxGroupBy.Float64s returned %d results when one was expected", len(v))
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Float64X is like Float64, but panics if an error occurs.
|
||
|
func (mgb *MailboxGroupBy) Float64X(ctx context.Context) float64 {
|
||
|
v, err := mgb.Float64(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// Bools returns list of bools from group-by.
|
||
|
// It is only allowed when executing a group-by query with one field.
|
||
|
func (mgb *MailboxGroupBy) Bools(ctx context.Context) ([]bool, error) {
|
||
|
if len(mgb.fields) > 1 {
|
||
|
return nil, errors.New("ent: MailboxGroupBy.Bools is not achievable when grouping more than 1 field")
|
||
|
}
|
||
|
var v []bool
|
||
|
if err := mgb.Scan(ctx, &v); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return v, nil
|
||
|
}
|
||
|
|
||
|
// BoolsX is like Bools, but panics if an error occurs.
|
||
|
func (mgb *MailboxGroupBy) BoolsX(ctx context.Context) []bool {
|
||
|
v, err := mgb.Bools(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// Bool returns a single bool from a group-by query.
|
||
|
// It is only allowed when executing a group-by query with one field.
|
||
|
func (mgb *MailboxGroupBy) Bool(ctx context.Context) (_ bool, err error) {
|
||
|
var v []bool
|
||
|
if v, err = mgb.Bools(ctx); err != nil {
|
||
|
return
|
||
|
}
|
||
|
switch len(v) {
|
||
|
case 1:
|
||
|
return v[0], nil
|
||
|
case 0:
|
||
|
err = &NotFoundError{mailbox.Label}
|
||
|
default:
|
||
|
err = fmt.Errorf("ent: MailboxGroupBy.Bools returned %d results when one was expected", len(v))
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// BoolX is like Bool, but panics if an error occurs.
|
||
|
func (mgb *MailboxGroupBy) BoolX(ctx context.Context) bool {
|
||
|
v, err := mgb.Bool(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
func (mgb *MailboxGroupBy) sqlScan(ctx context.Context, v interface{}) error {
|
||
|
for _, f := range mgb.fields {
|
||
|
if !mailbox.ValidColumn(f) {
|
||
|
return &ValidationError{Name: f, err: fmt.Errorf("invalid field %q for group-by", f)}
|
||
|
}
|
||
|
}
|
||
|
selector := mgb.sqlQuery()
|
||
|
if err := selector.Err(); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
rows := &sql.Rows{}
|
||
|
query, args := selector.Query()
|
||
|
if err := mgb.driver.Query(ctx, query, args, rows); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
defer rows.Close()
|
||
|
return sql.ScanSlice(rows, v)
|
||
|
}
|
||
|
|
||
|
func (mgb *MailboxGroupBy) sqlQuery() *sql.Selector {
|
||
|
selector := mgb.sql.Select()
|
||
|
aggregation := make([]string, 0, len(mgb.fns))
|
||
|
for _, fn := range mgb.fns {
|
||
|
aggregation = append(aggregation, fn(selector))
|
||
|
}
|
||
|
// If no columns were selected in a custom aggregation function, the default
|
||
|
// selection is the fields used for "group-by", and the aggregation functions.
|
||
|
if len(selector.SelectedColumns()) == 0 {
|
||
|
columns := make([]string, 0, len(mgb.fields)+len(mgb.fns))
|
||
|
for _, f := range mgb.fields {
|
||
|
columns = append(columns, selector.C(f))
|
||
|
}
|
||
|
columns = append(columns, aggregation...)
|
||
|
selector.Select(columns...)
|
||
|
}
|
||
|
return selector.GroupBy(selector.Columns(mgb.fields...)...)
|
||
|
}
|
||
|
|
||
|
// MailboxSelect is the builder for selecting fields of Mailbox entities.
|
||
|
type MailboxSelect struct {
|
||
|
*MailboxQuery
|
||
|
// intermediate query (i.e. traversal path).
|
||
|
sql *sql.Selector
|
||
|
}
|
||
|
|
||
|
// Scan applies the selector query and scans the result into the given value.
|
||
|
func (ms *MailboxSelect) Scan(ctx context.Context, v interface{}) error {
|
||
|
if err := ms.prepareQuery(ctx); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
ms.sql = ms.MailboxQuery.sqlQuery(ctx)
|
||
|
return ms.sqlScan(ctx, v)
|
||
|
}
|
||
|
|
||
|
// ScanX is like Scan, but panics if an error occurs.
|
||
|
func (ms *MailboxSelect) ScanX(ctx context.Context, v interface{}) {
|
||
|
if err := ms.Scan(ctx, v); err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Strings returns list of strings from a selector. It is only allowed when selecting one field.
|
||
|
func (ms *MailboxSelect) Strings(ctx context.Context) ([]string, error) {
|
||
|
if len(ms.fields) > 1 {
|
||
|
return nil, errors.New("ent: MailboxSelect.Strings is not achievable when selecting more than 1 field")
|
||
|
}
|
||
|
var v []string
|
||
|
if err := ms.Scan(ctx, &v); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return v, nil
|
||
|
}
|
||
|
|
||
|
// StringsX is like Strings, but panics if an error occurs.
|
||
|
func (ms *MailboxSelect) StringsX(ctx context.Context) []string {
|
||
|
v, err := ms.Strings(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// String returns a single string from a selector. It is only allowed when selecting one field.
|
||
|
func (ms *MailboxSelect) String(ctx context.Context) (_ string, err error) {
|
||
|
var v []string
|
||
|
if v, err = ms.Strings(ctx); err != nil {
|
||
|
return
|
||
|
}
|
||
|
switch len(v) {
|
||
|
case 1:
|
||
|
return v[0], nil
|
||
|
case 0:
|
||
|
err = &NotFoundError{mailbox.Label}
|
||
|
default:
|
||
|
err = fmt.Errorf("ent: MailboxSelect.Strings returned %d results when one was expected", len(v))
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// StringX is like String, but panics if an error occurs.
|
||
|
func (ms *MailboxSelect) StringX(ctx context.Context) string {
|
||
|
v, err := ms.String(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// Ints returns list of ints from a selector. It is only allowed when selecting one field.
|
||
|
func (ms *MailboxSelect) Ints(ctx context.Context) ([]int, error) {
|
||
|
if len(ms.fields) > 1 {
|
||
|
return nil, errors.New("ent: MailboxSelect.Ints is not achievable when selecting more than 1 field")
|
||
|
}
|
||
|
var v []int
|
||
|
if err := ms.Scan(ctx, &v); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return v, nil
|
||
|
}
|
||
|
|
||
|
// IntsX is like Ints, but panics if an error occurs.
|
||
|
func (ms *MailboxSelect) IntsX(ctx context.Context) []int {
|
||
|
v, err := ms.Ints(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// Int returns a single int from a selector. It is only allowed when selecting one field.
|
||
|
func (ms *MailboxSelect) Int(ctx context.Context) (_ int, err error) {
|
||
|
var v []int
|
||
|
if v, err = ms.Ints(ctx); err != nil {
|
||
|
return
|
||
|
}
|
||
|
switch len(v) {
|
||
|
case 1:
|
||
|
return v[0], nil
|
||
|
case 0:
|
||
|
err = &NotFoundError{mailbox.Label}
|
||
|
default:
|
||
|
err = fmt.Errorf("ent: MailboxSelect.Ints returned %d results when one was expected", len(v))
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// IntX is like Int, but panics if an error occurs.
|
||
|
func (ms *MailboxSelect) IntX(ctx context.Context) int {
|
||
|
v, err := ms.Int(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// Float64s returns list of float64s from a selector. It is only allowed when selecting one field.
|
||
|
func (ms *MailboxSelect) Float64s(ctx context.Context) ([]float64, error) {
|
||
|
if len(ms.fields) > 1 {
|
||
|
return nil, errors.New("ent: MailboxSelect.Float64s is not achievable when selecting more than 1 field")
|
||
|
}
|
||
|
var v []float64
|
||
|
if err := ms.Scan(ctx, &v); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return v, nil
|
||
|
}
|
||
|
|
||
|
// Float64sX is like Float64s, but panics if an error occurs.
|
||
|
func (ms *MailboxSelect) Float64sX(ctx context.Context) []float64 {
|
||
|
v, err := ms.Float64s(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// Float64 returns a single float64 from a selector. It is only allowed when selecting one field.
|
||
|
func (ms *MailboxSelect) Float64(ctx context.Context) (_ float64, err error) {
|
||
|
var v []float64
|
||
|
if v, err = ms.Float64s(ctx); err != nil {
|
||
|
return
|
||
|
}
|
||
|
switch len(v) {
|
||
|
case 1:
|
||
|
return v[0], nil
|
||
|
case 0:
|
||
|
err = &NotFoundError{mailbox.Label}
|
||
|
default:
|
||
|
err = fmt.Errorf("ent: MailboxSelect.Float64s returned %d results when one was expected", len(v))
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Float64X is like Float64, but panics if an error occurs.
|
||
|
func (ms *MailboxSelect) Float64X(ctx context.Context) float64 {
|
||
|
v, err := ms.Float64(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// Bools returns list of bools from a selector. It is only allowed when selecting one field.
|
||
|
func (ms *MailboxSelect) Bools(ctx context.Context) ([]bool, error) {
|
||
|
if len(ms.fields) > 1 {
|
||
|
return nil, errors.New("ent: MailboxSelect.Bools is not achievable when selecting more than 1 field")
|
||
|
}
|
||
|
var v []bool
|
||
|
if err := ms.Scan(ctx, &v); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return v, nil
|
||
|
}
|
||
|
|
||
|
// BoolsX is like Bools, but panics if an error occurs.
|
||
|
func (ms *MailboxSelect) BoolsX(ctx context.Context) []bool {
|
||
|
v, err := ms.Bools(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
// Bool returns a single bool from a selector. It is only allowed when selecting one field.
|
||
|
func (ms *MailboxSelect) Bool(ctx context.Context) (_ bool, err error) {
|
||
|
var v []bool
|
||
|
if v, err = ms.Bools(ctx); err != nil {
|
||
|
return
|
||
|
}
|
||
|
switch len(v) {
|
||
|
case 1:
|
||
|
return v[0], nil
|
||
|
case 0:
|
||
|
err = &NotFoundError{mailbox.Label}
|
||
|
default:
|
||
|
err = fmt.Errorf("ent: MailboxSelect.Bools returned %d results when one was expected", len(v))
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// BoolX is like Bool, but panics if an error occurs.
|
||
|
func (ms *MailboxSelect) BoolX(ctx context.Context) bool {
|
||
|
v, err := ms.Bool(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return v
|
||
|
}
|
||
|
|
||
|
func (ms *MailboxSelect) sqlScan(ctx context.Context, v interface{}) error {
|
||
|
rows := &sql.Rows{}
|
||
|
query, args := ms.sql.Query()
|
||
|
if err := ms.driver.Query(ctx, query, args, rows); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
defer rows.Close()
|
||
|
return sql.ScanSlice(rows, v)
|
||
|
}
|