2022-10-06 12:55:42 +00:00
|
|
|
// Code generated by ent, DO NOT EDIT.
|
2020-11-30 09:37:17 +00:00
|
|
|
|
|
|
|
package ent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"math"
|
|
|
|
|
2021-03-15 17:46:52 +00:00
|
|
|
"entgo.io/ent/dialect/sql"
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
|
|
"entgo.io/ent/schema/field"
|
2020-11-30 09:37:17 +00:00
|
|
|
"github.com/crowdsecurity/crowdsec/pkg/database/ent/bouncer"
|
|
|
|
"github.com/crowdsecurity/crowdsec/pkg/database/ent/predicate"
|
|
|
|
)
|
|
|
|
|
|
|
|
// BouncerQuery is the builder for querying Bouncer entities.
|
|
|
|
type BouncerQuery struct {
|
|
|
|
config
|
2024-02-14 10:19:13 +00:00
|
|
|
ctx *QueryContext
|
|
|
|
order []bouncer.OrderOption
|
|
|
|
inters []Interceptor
|
2020-11-30 09:37:17 +00:00
|
|
|
predicates []predicate.Bouncer
|
|
|
|
// intermediate query (i.e. traversal path).
|
|
|
|
sql *sql.Selector
|
|
|
|
path func(context.Context) (*sql.Selector, error)
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:27:45 +00:00
|
|
|
// Where adds a new predicate for the BouncerQuery builder.
|
2020-11-30 09:37:17 +00:00
|
|
|
func (bq *BouncerQuery) Where(ps ...predicate.Bouncer) *BouncerQuery {
|
|
|
|
bq.predicates = append(bq.predicates, ps...)
|
|
|
|
return bq
|
|
|
|
}
|
|
|
|
|
2024-02-14 10:19:13 +00:00
|
|
|
// Limit the number of records to be returned by this query.
|
2020-11-30 09:37:17 +00:00
|
|
|
func (bq *BouncerQuery) Limit(limit int) *BouncerQuery {
|
2024-02-14 10:19:13 +00:00
|
|
|
bq.ctx.Limit = &limit
|
2020-11-30 09:37:17 +00:00
|
|
|
return bq
|
|
|
|
}
|
|
|
|
|
2024-02-14 10:19:13 +00:00
|
|
|
// Offset to start from.
|
2020-11-30 09:37:17 +00:00
|
|
|
func (bq *BouncerQuery) Offset(offset int) *BouncerQuery {
|
2024-02-14 10:19:13 +00:00
|
|
|
bq.ctx.Offset = &offset
|
2020-11-30 09:37:17 +00:00
|
|
|
return bq
|
|
|
|
}
|
|
|
|
|
2021-10-22 14:15:57 +00:00
|
|
|
// 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 (bq *BouncerQuery) Unique(unique bool) *BouncerQuery {
|
2024-02-14 10:19:13 +00:00
|
|
|
bq.ctx.Unique = &unique
|
2021-10-22 14:15:57 +00:00
|
|
|
return bq
|
|
|
|
}
|
|
|
|
|
2024-02-14 10:19:13 +00:00
|
|
|
// Order specifies how the records should be ordered.
|
|
|
|
func (bq *BouncerQuery) Order(o ...bouncer.OrderOption) *BouncerQuery {
|
2020-11-30 09:37:17 +00:00
|
|
|
bq.order = append(bq.order, o...)
|
|
|
|
return bq
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:27:45 +00:00
|
|
|
// First returns the first Bouncer entity from the query.
|
|
|
|
// Returns a *NotFoundError when no Bouncer was found.
|
2020-11-30 09:37:17 +00:00
|
|
|
func (bq *BouncerQuery) First(ctx context.Context) (*Bouncer, error) {
|
2024-02-14 10:19:13 +00:00
|
|
|
nodes, err := bq.Limit(1).All(setContextOp(ctx, bq.ctx, "First"))
|
2020-11-30 09:37:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(nodes) == 0 {
|
|
|
|
return nil, &NotFoundError{bouncer.Label}
|
|
|
|
}
|
|
|
|
return nodes[0], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
|
|
func (bq *BouncerQuery) FirstX(ctx context.Context) *Bouncer {
|
|
|
|
node, err := bq.First(ctx)
|
|
|
|
if err != nil && !IsNotFound(err) {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return node
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:27:45 +00:00
|
|
|
// FirstID returns the first Bouncer ID from the query.
|
|
|
|
// Returns a *NotFoundError when no Bouncer ID was found.
|
2020-11-30 09:37:17 +00:00
|
|
|
func (bq *BouncerQuery) FirstID(ctx context.Context) (id int, err error) {
|
|
|
|
var ids []int
|
2024-02-14 10:19:13 +00:00
|
|
|
if ids, err = bq.Limit(1).IDs(setContextOp(ctx, bq.ctx, "FirstID")); err != nil {
|
2020-11-30 09:37:17 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(ids) == 0 {
|
|
|
|
err = &NotFoundError{bouncer.Label}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return ids[0], nil
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:27:45 +00:00
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
|
|
func (bq *BouncerQuery) FirstIDX(ctx context.Context) int {
|
2020-11-30 09:37:17 +00:00
|
|
|
id, err := bq.FirstID(ctx)
|
|
|
|
if err != nil && !IsNotFound(err) {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:27:45 +00:00
|
|
|
// Only returns a single Bouncer entity found by the query, ensuring it only returns one.
|
2022-03-17 13:12:13 +00:00
|
|
|
// Returns a *NotSingularError when more than one Bouncer entity is found.
|
2021-01-14 15:27:45 +00:00
|
|
|
// Returns a *NotFoundError when no Bouncer entities are found.
|
2020-11-30 09:37:17 +00:00
|
|
|
func (bq *BouncerQuery) Only(ctx context.Context) (*Bouncer, error) {
|
2024-02-14 10:19:13 +00:00
|
|
|
nodes, err := bq.Limit(2).All(setContextOp(ctx, bq.ctx, "Only"))
|
2020-11-30 09:37:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
switch len(nodes) {
|
|
|
|
case 1:
|
|
|
|
return nodes[0], nil
|
|
|
|
case 0:
|
|
|
|
return nil, &NotFoundError{bouncer.Label}
|
|
|
|
default:
|
|
|
|
return nil, &NotSingularError{bouncer.Label}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
|
|
func (bq *BouncerQuery) OnlyX(ctx context.Context) *Bouncer {
|
|
|
|
node, err := bq.Only(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return node
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:27:45 +00:00
|
|
|
// OnlyID is like Only, but returns the only Bouncer ID in the query.
|
2022-03-17 13:12:13 +00:00
|
|
|
// Returns a *NotSingularError when more than one Bouncer ID is found.
|
2021-01-14 15:27:45 +00:00
|
|
|
// Returns a *NotFoundError when no entities are found.
|
2020-11-30 09:37:17 +00:00
|
|
|
func (bq *BouncerQuery) OnlyID(ctx context.Context) (id int, err error) {
|
|
|
|
var ids []int
|
2024-02-14 10:19:13 +00:00
|
|
|
if ids, err = bq.Limit(2).IDs(setContextOp(ctx, bq.ctx, "OnlyID")); err != nil {
|
2020-11-30 09:37:17 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
switch len(ids) {
|
|
|
|
case 1:
|
|
|
|
id = ids[0]
|
|
|
|
case 0:
|
|
|
|
err = &NotFoundError{bouncer.Label}
|
|
|
|
default:
|
|
|
|
err = &NotSingularError{bouncer.Label}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
|
|
func (bq *BouncerQuery) OnlyIDX(ctx context.Context) int {
|
|
|
|
id, err := bq.OnlyID(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
|
|
|
// All executes the query and returns a list of Bouncers.
|
|
|
|
func (bq *BouncerQuery) All(ctx context.Context) ([]*Bouncer, error) {
|
2024-02-14 10:19:13 +00:00
|
|
|
ctx = setContextOp(ctx, bq.ctx, "All")
|
2020-11-30 09:37:17 +00:00
|
|
|
if err := bq.prepareQuery(ctx); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-02-14 10:19:13 +00:00
|
|
|
qr := querierAll[[]*Bouncer, *BouncerQuery]()
|
|
|
|
return withInterceptors[[]*Bouncer](ctx, bq, qr, bq.inters)
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
|
|
func (bq *BouncerQuery) AllX(ctx context.Context) []*Bouncer {
|
|
|
|
nodes, err := bq.All(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return nodes
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:27:45 +00:00
|
|
|
// IDs executes the query and returns a list of Bouncer IDs.
|
2024-02-14 10:19:13 +00:00
|
|
|
func (bq *BouncerQuery) IDs(ctx context.Context) (ids []int, err error) {
|
|
|
|
if bq.ctx.Unique == nil && bq.path != nil {
|
|
|
|
bq.Unique(true)
|
|
|
|
}
|
|
|
|
ctx = setContextOp(ctx, bq.ctx, "IDs")
|
|
|
|
if err = bq.Select(bouncer.FieldID).Scan(ctx, &ids); err != nil {
|
2020-11-30 09:37:17 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return ids, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
|
|
func (bq *BouncerQuery) IDsX(ctx context.Context) []int {
|
|
|
|
ids, err := bq.IDs(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return ids
|
|
|
|
}
|
|
|
|
|
|
|
|
// Count returns the count of the given query.
|
|
|
|
func (bq *BouncerQuery) Count(ctx context.Context) (int, error) {
|
2024-02-14 10:19:13 +00:00
|
|
|
ctx = setContextOp(ctx, bq.ctx, "Count")
|
2020-11-30 09:37:17 +00:00
|
|
|
if err := bq.prepareQuery(ctx); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2024-02-14 10:19:13 +00:00
|
|
|
return withInterceptors[int](ctx, bq, querierCount[*BouncerQuery](), bq.inters)
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
|
|
func (bq *BouncerQuery) CountX(ctx context.Context) int {
|
|
|
|
count, err := bq.Count(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return count
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
|
|
func (bq *BouncerQuery) Exist(ctx context.Context) (bool, error) {
|
2024-02-14 10:19:13 +00:00
|
|
|
ctx = setContextOp(ctx, bq.ctx, "Exist")
|
|
|
|
switch _, err := bq.FirstID(ctx); {
|
|
|
|
case IsNotFound(err):
|
|
|
|
return false, nil
|
|
|
|
case err != nil:
|
|
|
|
return false, fmt.Errorf("ent: check existence: %w", err)
|
|
|
|
default:
|
|
|
|
return true, nil
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
|
|
func (bq *BouncerQuery) ExistX(ctx context.Context) bool {
|
|
|
|
exist, err := bq.Exist(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return exist
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:27:45 +00:00
|
|
|
// Clone returns a duplicate of the BouncerQuery builder, including all associated steps. It can be
|
2020-11-30 09:37:17 +00:00
|
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
|
|
func (bq *BouncerQuery) Clone() *BouncerQuery {
|
2021-01-14 15:27:45 +00:00
|
|
|
if bq == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-11-30 09:37:17 +00:00
|
|
|
return &BouncerQuery{
|
|
|
|
config: bq.config,
|
2024-02-14 10:19:13 +00:00
|
|
|
ctx: bq.ctx.Clone(),
|
|
|
|
order: append([]bouncer.OrderOption{}, bq.order...),
|
|
|
|
inters: append([]Interceptor{}, bq.inters...),
|
2020-11-30 09:37:17 +00:00
|
|
|
predicates: append([]predicate.Bouncer{}, bq.predicates...),
|
|
|
|
// clone intermediate query.
|
2024-02-14 10:19:13 +00:00
|
|
|
sql: bq.sql.Clone(),
|
|
|
|
path: bq.path,
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:27:45 +00:00
|
|
|
// GroupBy is used to group vertices by one or more fields/columns.
|
2020-11-30 09:37:17 +00:00
|
|
|
// It is often used with aggregate functions, like: count, max, mean, min, sum.
|
|
|
|
//
|
|
|
|
// Example:
|
|
|
|
//
|
|
|
|
// var v []struct {
|
2022-03-16 08:40:34 +00:00
|
|
|
// CreatedAt time.Time `json:"created_at"`
|
2020-11-30 09:37:17 +00:00
|
|
|
// Count int `json:"count,omitempty"`
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// client.Bouncer.Query().
|
|
|
|
// GroupBy(bouncer.FieldCreatedAt).
|
|
|
|
// Aggregate(ent.Count()).
|
|
|
|
// Scan(ctx, &v)
|
|
|
|
func (bq *BouncerQuery) GroupBy(field string, fields ...string) *BouncerGroupBy {
|
2024-02-14 10:19:13 +00:00
|
|
|
bq.ctx.Fields = append([]string{field}, fields...)
|
|
|
|
grbuild := &BouncerGroupBy{build: bq}
|
|
|
|
grbuild.flds = &bq.ctx.Fields
|
2022-10-06 12:55:42 +00:00
|
|
|
grbuild.label = bouncer.Label
|
2024-02-14 10:19:13 +00:00
|
|
|
grbuild.scan = grbuild.Scan
|
2022-10-06 12:55:42 +00:00
|
|
|
return grbuild
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
|
2021-01-14 15:27:45 +00:00
|
|
|
// Select allows the selection one or more fields/columns for the given query,
|
|
|
|
// instead of selecting all fields in the entity.
|
2020-11-30 09:37:17 +00:00
|
|
|
//
|
|
|
|
// Example:
|
|
|
|
//
|
|
|
|
// var v []struct {
|
2022-03-16 08:40:34 +00:00
|
|
|
// CreatedAt time.Time `json:"created_at"`
|
2020-11-30 09:37:17 +00:00
|
|
|
// }
|
|
|
|
//
|
|
|
|
// client.Bouncer.Query().
|
|
|
|
// Select(bouncer.FieldCreatedAt).
|
|
|
|
// Scan(ctx, &v)
|
2021-10-22 14:15:57 +00:00
|
|
|
func (bq *BouncerQuery) Select(fields ...string) *BouncerSelect {
|
2024-02-14 10:19:13 +00:00
|
|
|
bq.ctx.Fields = append(bq.ctx.Fields, fields...)
|
|
|
|
sbuild := &BouncerSelect{BouncerQuery: bq}
|
|
|
|
sbuild.label = bouncer.Label
|
|
|
|
sbuild.flds, sbuild.scan = &bq.ctx.Fields, sbuild.Scan
|
|
|
|
return sbuild
|
|
|
|
}
|
|
|
|
|
|
|
|
// Aggregate returns a BouncerSelect configured with the given aggregations.
|
|
|
|
func (bq *BouncerQuery) Aggregate(fns ...AggregateFunc) *BouncerSelect {
|
|
|
|
return bq.Select().Aggregate(fns...)
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (bq *BouncerQuery) prepareQuery(ctx context.Context) error {
|
2024-02-14 10:19:13 +00:00
|
|
|
for _, inter := range bq.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, bq); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, f := range bq.ctx.Fields {
|
2021-01-14 15:27:45 +00:00
|
|
|
if !bouncer.ValidColumn(f) {
|
|
|
|
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
|
|
}
|
|
|
|
}
|
2020-11-30 09:37:17 +00:00
|
|
|
if bq.path != nil {
|
|
|
|
prev, err := bq.path(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
bq.sql = prev
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-10-06 12:55:42 +00:00
|
|
|
func (bq *BouncerQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*Bouncer, error) {
|
2020-11-30 09:37:17 +00:00
|
|
|
var (
|
|
|
|
nodes = []*Bouncer{}
|
|
|
|
_spec = bq.querySpec()
|
|
|
|
)
|
2022-10-06 12:55:42 +00:00
|
|
|
_spec.ScanValues = func(columns []string) ([]any, error) {
|
|
|
|
return (*Bouncer).scanValues(nil, columns)
|
|
|
|
}
|
|
|
|
_spec.Assign = func(columns []string, values []any) error {
|
2020-11-30 09:37:17 +00:00
|
|
|
node := &Bouncer{config: bq.config}
|
|
|
|
nodes = append(nodes, node)
|
2021-01-14 15:27:45 +00:00
|
|
|
return node.assignValues(columns, values)
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
2022-10-06 12:55:42 +00:00
|
|
|
for i := range hooks {
|
|
|
|
hooks[i](ctx, _spec)
|
|
|
|
}
|
2020-11-30 09:37:17 +00:00
|
|
|
if err := sqlgraph.QueryNodes(ctx, bq.driver, _spec); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(nodes) == 0 {
|
|
|
|
return nodes, nil
|
|
|
|
}
|
|
|
|
return nodes, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bq *BouncerQuery) sqlCount(ctx context.Context) (int, error) {
|
|
|
|
_spec := bq.querySpec()
|
2024-02-14 10:19:13 +00:00
|
|
|
_spec.Node.Columns = bq.ctx.Fields
|
|
|
|
if len(bq.ctx.Fields) > 0 {
|
|
|
|
_spec.Unique = bq.ctx.Unique != nil && *bq.ctx.Unique
|
2022-03-17 13:12:13 +00:00
|
|
|
}
|
2020-11-30 09:37:17 +00:00
|
|
|
return sqlgraph.CountNodes(ctx, bq.driver, _spec)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bq *BouncerQuery) querySpec() *sqlgraph.QuerySpec {
|
2024-02-14 10:19:13 +00:00
|
|
|
_spec := sqlgraph.NewQuerySpec(bouncer.Table, bouncer.Columns, sqlgraph.NewFieldSpec(bouncer.FieldID, field.TypeInt))
|
|
|
|
_spec.From = bq.sql
|
|
|
|
if unique := bq.ctx.Unique; unique != nil {
|
2021-10-22 14:15:57 +00:00
|
|
|
_spec.Unique = *unique
|
2024-02-14 10:19:13 +00:00
|
|
|
} else if bq.path != nil {
|
|
|
|
_spec.Unique = true
|
2021-10-22 14:15:57 +00:00
|
|
|
}
|
2024-02-14 10:19:13 +00:00
|
|
|
if fields := bq.ctx.Fields; len(fields) > 0 {
|
2021-01-14 15:27:45 +00:00
|
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
|
|
_spec.Node.Columns = append(_spec.Node.Columns, bouncer.FieldID)
|
|
|
|
for i := range fields {
|
|
|
|
if fields[i] != bouncer.FieldID {
|
|
|
|
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-30 09:37:17 +00:00
|
|
|
if ps := bq.predicates; len(ps) > 0 {
|
|
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
|
|
for i := range ps {
|
|
|
|
ps[i](selector)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-02-14 10:19:13 +00:00
|
|
|
if limit := bq.ctx.Limit; limit != nil {
|
2020-11-30 09:37:17 +00:00
|
|
|
_spec.Limit = *limit
|
|
|
|
}
|
2024-02-14 10:19:13 +00:00
|
|
|
if offset := bq.ctx.Offset; offset != nil {
|
2020-11-30 09:37:17 +00:00
|
|
|
_spec.Offset = *offset
|
|
|
|
}
|
|
|
|
if ps := bq.order; len(ps) > 0 {
|
|
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
|
|
for i := range ps {
|
2021-10-22 14:15:57 +00:00
|
|
|
ps[i](selector)
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return _spec
|
|
|
|
}
|
|
|
|
|
2021-03-15 17:46:52 +00:00
|
|
|
func (bq *BouncerQuery) sqlQuery(ctx context.Context) *sql.Selector {
|
2020-11-30 09:37:17 +00:00
|
|
|
builder := sql.Dialect(bq.driver.Dialect())
|
|
|
|
t1 := builder.Table(bouncer.Table)
|
2024-02-14 10:19:13 +00:00
|
|
|
columns := bq.ctx.Fields
|
2021-10-22 14:15:57 +00:00
|
|
|
if len(columns) == 0 {
|
|
|
|
columns = bouncer.Columns
|
|
|
|
}
|
|
|
|
selector := builder.Select(t1.Columns(columns...)...).From(t1)
|
2020-11-30 09:37:17 +00:00
|
|
|
if bq.sql != nil {
|
|
|
|
selector = bq.sql
|
2021-10-22 14:15:57 +00:00
|
|
|
selector.Select(selector.Columns(columns...)...)
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
2024-02-14 10:19:13 +00:00
|
|
|
if bq.ctx.Unique != nil && *bq.ctx.Unique {
|
2022-03-17 13:12:13 +00:00
|
|
|
selector.Distinct()
|
|
|
|
}
|
2020-11-30 09:37:17 +00:00
|
|
|
for _, p := range bq.predicates {
|
|
|
|
p(selector)
|
|
|
|
}
|
|
|
|
for _, p := range bq.order {
|
2021-10-22 14:15:57 +00:00
|
|
|
p(selector)
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
2024-02-14 10:19:13 +00:00
|
|
|
if offset := bq.ctx.Offset; offset != nil {
|
2020-11-30 09:37:17 +00:00
|
|
|
// limit is mandatory for offset clause. We start
|
|
|
|
// with default value, and override it below if needed.
|
|
|
|
selector.Offset(*offset).Limit(math.MaxInt32)
|
|
|
|
}
|
2024-02-14 10:19:13 +00:00
|
|
|
if limit := bq.ctx.Limit; limit != nil {
|
2020-11-30 09:37:17 +00:00
|
|
|
selector.Limit(*limit)
|
|
|
|
}
|
|
|
|
return selector
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:27:45 +00:00
|
|
|
// BouncerGroupBy is the group-by builder for Bouncer entities.
|
2020-11-30 09:37:17 +00:00
|
|
|
type BouncerGroupBy struct {
|
2022-10-06 12:55:42 +00:00
|
|
|
selector
|
2024-02-14 10:19:13 +00:00
|
|
|
build *BouncerQuery
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Aggregate adds the given aggregation functions to the group-by query.
|
|
|
|
func (bgb *BouncerGroupBy) Aggregate(fns ...AggregateFunc) *BouncerGroupBy {
|
|
|
|
bgb.fns = append(bgb.fns, fns...)
|
|
|
|
return bgb
|
|
|
|
}
|
|
|
|
|
2024-02-14 10:19:13 +00:00
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
2022-10-06 12:55:42 +00:00
|
|
|
func (bgb *BouncerGroupBy) Scan(ctx context.Context, v any) error {
|
2024-02-14 10:19:13 +00:00
|
|
|
ctx = setContextOp(ctx, bgb.build.ctx, "GroupBy")
|
|
|
|
if err := bgb.build.prepareQuery(ctx); err != nil {
|
2020-11-30 09:37:17 +00:00
|
|
|
return err
|
|
|
|
}
|
2024-02-14 10:19:13 +00:00
|
|
|
return scanWithInterceptors[*BouncerQuery, *BouncerGroupBy](ctx, bgb.build, bgb, bgb.build.inters, v)
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
|
2024-02-14 10:19:13 +00:00
|
|
|
func (bgb *BouncerGroupBy) sqlScan(ctx context.Context, root *BouncerQuery, v any) error {
|
|
|
|
selector := root.sqlQuery(ctx).Select()
|
|
|
|
aggregation := make([]string, 0, len(bgb.fns))
|
|
|
|
for _, fn := range bgb.fns {
|
|
|
|
aggregation = append(aggregation, fn(selector))
|
|
|
|
}
|
|
|
|
if len(selector.SelectedColumns()) == 0 {
|
|
|
|
columns := make([]string, 0, len(*bgb.flds)+len(bgb.fns))
|
|
|
|
for _, f := range *bgb.flds {
|
|
|
|
columns = append(columns, selector.C(f))
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
2024-02-14 10:19:13 +00:00
|
|
|
columns = append(columns, aggregation...)
|
|
|
|
selector.Select(columns...)
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
2024-02-14 10:19:13 +00:00
|
|
|
selector.GroupBy(selector.Columns(*bgb.flds...)...)
|
2020-11-30 09:37:17 +00:00
|
|
|
if err := selector.Err(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
rows := &sql.Rows{}
|
|
|
|
query, args := selector.Query()
|
2024-02-14 10:19:13 +00:00
|
|
|
if err := bgb.build.driver.Query(ctx, query, args, rows); err != nil {
|
2020-11-30 09:37:17 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
return sql.ScanSlice(rows, v)
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:27:45 +00:00
|
|
|
// BouncerSelect is the builder for selecting fields of Bouncer entities.
|
2020-11-30 09:37:17 +00:00
|
|
|
type BouncerSelect struct {
|
2021-01-14 15:27:45 +00:00
|
|
|
*BouncerQuery
|
2022-10-06 12:55:42 +00:00
|
|
|
selector
|
2024-02-14 10:19:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Aggregate adds the given aggregation functions to the selector query.
|
|
|
|
func (bs *BouncerSelect) Aggregate(fns ...AggregateFunc) *BouncerSelect {
|
|
|
|
bs.fns = append(bs.fns, fns...)
|
|
|
|
return bs
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
|
2021-01-14 15:27:45 +00:00
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
2022-10-06 12:55:42 +00:00
|
|
|
func (bs *BouncerSelect) Scan(ctx context.Context, v any) error {
|
2024-02-14 10:19:13 +00:00
|
|
|
ctx = setContextOp(ctx, bs.ctx, "Select")
|
2021-01-14 15:27:45 +00:00
|
|
|
if err := bs.prepareQuery(ctx); err != nil {
|
2020-11-30 09:37:17 +00:00
|
|
|
return err
|
|
|
|
}
|
2024-02-14 10:19:13 +00:00
|
|
|
return scanWithInterceptors[*BouncerQuery, *BouncerSelect](ctx, bs.BouncerQuery, bs, bs.inters, v)
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
|
2024-02-14 10:19:13 +00:00
|
|
|
func (bs *BouncerSelect) sqlScan(ctx context.Context, root *BouncerQuery, v any) error {
|
|
|
|
selector := root.sqlQuery(ctx)
|
|
|
|
aggregation := make([]string, 0, len(bs.fns))
|
|
|
|
for _, fn := range bs.fns {
|
|
|
|
aggregation = append(aggregation, fn(selector))
|
|
|
|
}
|
|
|
|
switch n := len(*bs.selector.flds); {
|
|
|
|
case n == 0 && len(aggregation) > 0:
|
|
|
|
selector.Select(aggregation...)
|
|
|
|
case n != 0 && len(aggregation) > 0:
|
|
|
|
selector.AppendSelect(aggregation...)
|
|
|
|
}
|
2020-11-30 09:37:17 +00:00
|
|
|
rows := &sql.Rows{}
|
2024-02-14 10:19:13 +00:00
|
|
|
query, args := selector.Query()
|
2020-11-30 09:37:17 +00:00
|
|
|
if err := bs.driver.Query(ctx, query, args, rows); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
return sql.ScanSlice(rows, v)
|
|
|
|
}
|