28446b6d29
* up regenerate new schema * new ent * update documentation for min required versions * update documentation
895 lines
23 KiB
Go
895 lines
23 KiB
Go
// Code generated by entc, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"math"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
"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
|
|
limit *int
|
|
offset *int
|
|
order []OrderFunc
|
|
fields []string
|
|
predicates []predicate.Bouncer
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
path func(context.Context) (*sql.Selector, error)
|
|
}
|
|
|
|
// Where adds a new predicate for the BouncerQuery builder.
|
|
func (bq *BouncerQuery) Where(ps ...predicate.Bouncer) *BouncerQuery {
|
|
bq.predicates = append(bq.predicates, ps...)
|
|
return bq
|
|
}
|
|
|
|
// Limit adds a limit step to the query.
|
|
func (bq *BouncerQuery) Limit(limit int) *BouncerQuery {
|
|
bq.limit = &limit
|
|
return bq
|
|
}
|
|
|
|
// Offset adds an offset step to the query.
|
|
func (bq *BouncerQuery) Offset(offset int) *BouncerQuery {
|
|
bq.offset = &offset
|
|
return bq
|
|
}
|
|
|
|
// Order adds an order step to the query.
|
|
func (bq *BouncerQuery) Order(o ...OrderFunc) *BouncerQuery {
|
|
bq.order = append(bq.order, o...)
|
|
return bq
|
|
}
|
|
|
|
// First returns the first Bouncer entity from the query.
|
|
// Returns a *NotFoundError when no Bouncer was found.
|
|
func (bq *BouncerQuery) First(ctx context.Context) (*Bouncer, error) {
|
|
nodes, err := bq.Limit(1).All(ctx)
|
|
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
|
|
}
|
|
|
|
// FirstID returns the first Bouncer ID from the query.
|
|
// Returns a *NotFoundError when no Bouncer ID was found.
|
|
func (bq *BouncerQuery) FirstID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = bq.Limit(1).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{bouncer.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
func (bq *BouncerQuery) FirstIDX(ctx context.Context) int {
|
|
id, err := bq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns a single Bouncer entity found by the query, ensuring it only returns one.
|
|
// Returns a *NotSingularError when exactly one Bouncer entity is not found.
|
|
// Returns a *NotFoundError when no Bouncer entities are found.
|
|
func (bq *BouncerQuery) Only(ctx context.Context) (*Bouncer, error) {
|
|
nodes, err := bq.Limit(2).All(ctx)
|
|
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
|
|
}
|
|
|
|
// OnlyID is like Only, but returns the only Bouncer ID in the query.
|
|
// Returns a *NotSingularError when exactly one Bouncer ID is not found.
|
|
// Returns a *NotFoundError when no entities are found.
|
|
func (bq *BouncerQuery) OnlyID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = bq.Limit(2).IDs(ctx); err != nil {
|
|
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) {
|
|
if err := bq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return bq.sqlAll(ctx)
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// IDs executes the query and returns a list of Bouncer IDs.
|
|
func (bq *BouncerQuery) IDs(ctx context.Context) ([]int, error) {
|
|
var ids []int
|
|
if err := bq.Select(bouncer.FieldID).Scan(ctx, &ids); err != nil {
|
|
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) {
|
|
if err := bq.prepareQuery(ctx); err != nil {
|
|
return 0, err
|
|
}
|
|
return bq.sqlCount(ctx)
|
|
}
|
|
|
|
// 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) {
|
|
if err := bq.prepareQuery(ctx); err != nil {
|
|
return false, err
|
|
}
|
|
return bq.sqlExist(ctx)
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// Clone returns a duplicate of the BouncerQuery builder, including all associated steps. It can be
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
func (bq *BouncerQuery) Clone() *BouncerQuery {
|
|
if bq == nil {
|
|
return nil
|
|
}
|
|
return &BouncerQuery{
|
|
config: bq.config,
|
|
limit: bq.limit,
|
|
offset: bq.offset,
|
|
order: append([]OrderFunc{}, bq.order...),
|
|
predicates: append([]predicate.Bouncer{}, bq.predicates...),
|
|
// clone intermediate query.
|
|
sql: bq.sql.Clone(),
|
|
path: bq.path,
|
|
}
|
|
}
|
|
|
|
// 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 {
|
|
// CreatedAt time.Time `json:"created_at,omitempty"`
|
|
// 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 {
|
|
group := &BouncerGroupBy{config: bq.config}
|
|
group.fields = append([]string{field}, fields...)
|
|
group.path = func(ctx context.Context) (prev *sql.Selector, err error) {
|
|
if err := bq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return bq.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 {
|
|
// CreatedAt time.Time `json:"created_at,omitempty"`
|
|
// }
|
|
//
|
|
// client.Bouncer.Query().
|
|
// Select(bouncer.FieldCreatedAt).
|
|
// Scan(ctx, &v)
|
|
//
|
|
func (bq *BouncerQuery) Select(field string, fields ...string) *BouncerSelect {
|
|
bq.fields = append([]string{field}, fields...)
|
|
return &BouncerSelect{BouncerQuery: bq}
|
|
}
|
|
|
|
func (bq *BouncerQuery) prepareQuery(ctx context.Context) error {
|
|
for _, f := range bq.fields {
|
|
if !bouncer.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
}
|
|
if bq.path != nil {
|
|
prev, err := bq.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
bq.sql = prev
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (bq *BouncerQuery) sqlAll(ctx context.Context) ([]*Bouncer, error) {
|
|
var (
|
|
nodes = []*Bouncer{}
|
|
_spec = bq.querySpec()
|
|
)
|
|
_spec.ScanValues = func(columns []string) ([]interface{}, error) {
|
|
node := &Bouncer{config: bq.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]
|
|
return node.assignValues(columns, values)
|
|
}
|
|
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()
|
|
return sqlgraph.CountNodes(ctx, bq.driver, _spec)
|
|
}
|
|
|
|
func (bq *BouncerQuery) sqlExist(ctx context.Context) (bool, error) {
|
|
n, err := bq.sqlCount(ctx)
|
|
if err != nil {
|
|
return false, fmt.Errorf("ent: check existence: %w", err)
|
|
}
|
|
return n > 0, nil
|
|
}
|
|
|
|
func (bq *BouncerQuery) querySpec() *sqlgraph.QuerySpec {
|
|
_spec := &sqlgraph.QuerySpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: bouncer.Table,
|
|
Columns: bouncer.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: bouncer.FieldID,
|
|
},
|
|
},
|
|
From: bq.sql,
|
|
Unique: true,
|
|
}
|
|
if fields := bq.fields; len(fields) > 0 {
|
|
_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])
|
|
}
|
|
}
|
|
}
|
|
if ps := bq.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if limit := bq.limit; limit != nil {
|
|
_spec.Limit = *limit
|
|
}
|
|
if offset := bq.offset; offset != nil {
|
|
_spec.Offset = *offset
|
|
}
|
|
if ps := bq.order; len(ps) > 0 {
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector, bouncer.ValidColumn)
|
|
}
|
|
}
|
|
}
|
|
return _spec
|
|
}
|
|
|
|
func (bq *BouncerQuery) sqlQuery(ctx context.Context) *sql.Selector {
|
|
builder := sql.Dialect(bq.driver.Dialect())
|
|
t1 := builder.Table(bouncer.Table)
|
|
selector := builder.Select(t1.Columns(bouncer.Columns...)...).From(t1)
|
|
if bq.sql != nil {
|
|
selector = bq.sql
|
|
selector.Select(selector.Columns(bouncer.Columns...)...)
|
|
}
|
|
for _, p := range bq.predicates {
|
|
p(selector)
|
|
}
|
|
for _, p := range bq.order {
|
|
p(selector, bouncer.ValidColumn)
|
|
}
|
|
if offset := bq.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 := bq.limit; limit != nil {
|
|
selector.Limit(*limit)
|
|
}
|
|
return selector
|
|
}
|
|
|
|
// BouncerGroupBy is the group-by builder for Bouncer entities.
|
|
type BouncerGroupBy 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 (bgb *BouncerGroupBy) Aggregate(fns ...AggregateFunc) *BouncerGroupBy {
|
|
bgb.fns = append(bgb.fns, fns...)
|
|
return bgb
|
|
}
|
|
|
|
// Scan applies the group-by query and scans the result into the given value.
|
|
func (bgb *BouncerGroupBy) Scan(ctx context.Context, v interface{}) error {
|
|
query, err := bgb.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
bgb.sql = query
|
|
return bgb.sqlScan(ctx, v)
|
|
}
|
|
|
|
// ScanX is like Scan, but panics if an error occurs.
|
|
func (bgb *BouncerGroupBy) ScanX(ctx context.Context, v interface{}) {
|
|
if err := bgb.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 (bgb *BouncerGroupBy) Strings(ctx context.Context) ([]string, error) {
|
|
if len(bgb.fields) > 1 {
|
|
return nil, errors.New("ent: BouncerGroupBy.Strings is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []string
|
|
if err := bgb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// StringsX is like Strings, but panics if an error occurs.
|
|
func (bgb *BouncerGroupBy) StringsX(ctx context.Context) []string {
|
|
v, err := bgb.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 (bgb *BouncerGroupBy) String(ctx context.Context) (_ string, err error) {
|
|
var v []string
|
|
if v, err = bgb.Strings(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{bouncer.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: BouncerGroupBy.Strings returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// StringX is like String, but panics if an error occurs.
|
|
func (bgb *BouncerGroupBy) StringX(ctx context.Context) string {
|
|
v, err := bgb.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 (bgb *BouncerGroupBy) Ints(ctx context.Context) ([]int, error) {
|
|
if len(bgb.fields) > 1 {
|
|
return nil, errors.New("ent: BouncerGroupBy.Ints is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []int
|
|
if err := bgb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// IntsX is like Ints, but panics if an error occurs.
|
|
func (bgb *BouncerGroupBy) IntsX(ctx context.Context) []int {
|
|
v, err := bgb.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 (bgb *BouncerGroupBy) Int(ctx context.Context) (_ int, err error) {
|
|
var v []int
|
|
if v, err = bgb.Ints(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{bouncer.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: BouncerGroupBy.Ints returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// IntX is like Int, but panics if an error occurs.
|
|
func (bgb *BouncerGroupBy) IntX(ctx context.Context) int {
|
|
v, err := bgb.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 (bgb *BouncerGroupBy) Float64s(ctx context.Context) ([]float64, error) {
|
|
if len(bgb.fields) > 1 {
|
|
return nil, errors.New("ent: BouncerGroupBy.Float64s is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []float64
|
|
if err := bgb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// Float64sX is like Float64s, but panics if an error occurs.
|
|
func (bgb *BouncerGroupBy) Float64sX(ctx context.Context) []float64 {
|
|
v, err := bgb.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 (bgb *BouncerGroupBy) Float64(ctx context.Context) (_ float64, err error) {
|
|
var v []float64
|
|
if v, err = bgb.Float64s(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{bouncer.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: BouncerGroupBy.Float64s returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// Float64X is like Float64, but panics if an error occurs.
|
|
func (bgb *BouncerGroupBy) Float64X(ctx context.Context) float64 {
|
|
v, err := bgb.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 (bgb *BouncerGroupBy) Bools(ctx context.Context) ([]bool, error) {
|
|
if len(bgb.fields) > 1 {
|
|
return nil, errors.New("ent: BouncerGroupBy.Bools is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []bool
|
|
if err := bgb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// BoolsX is like Bools, but panics if an error occurs.
|
|
func (bgb *BouncerGroupBy) BoolsX(ctx context.Context) []bool {
|
|
v, err := bgb.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 (bgb *BouncerGroupBy) Bool(ctx context.Context) (_ bool, err error) {
|
|
var v []bool
|
|
if v, err = bgb.Bools(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{bouncer.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: BouncerGroupBy.Bools returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// BoolX is like Bool, but panics if an error occurs.
|
|
func (bgb *BouncerGroupBy) BoolX(ctx context.Context) bool {
|
|
v, err := bgb.Bool(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (bgb *BouncerGroupBy) sqlScan(ctx context.Context, v interface{}) error {
|
|
for _, f := range bgb.fields {
|
|
if !bouncer.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("invalid field %q for group-by", f)}
|
|
}
|
|
}
|
|
selector := bgb.sqlQuery()
|
|
if err := selector.Err(); err != nil {
|
|
return err
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := bgb.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
func (bgb *BouncerGroupBy) sqlQuery() *sql.Selector {
|
|
selector := bgb.sql
|
|
columns := make([]string, 0, len(bgb.fields)+len(bgb.fns))
|
|
columns = append(columns, bgb.fields...)
|
|
for _, fn := range bgb.fns {
|
|
columns = append(columns, fn(selector, bouncer.ValidColumn))
|
|
}
|
|
return selector.Select(columns...).GroupBy(bgb.fields...)
|
|
}
|
|
|
|
// BouncerSelect is the builder for selecting fields of Bouncer entities.
|
|
type BouncerSelect struct {
|
|
*BouncerQuery
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (bs *BouncerSelect) Scan(ctx context.Context, v interface{}) error {
|
|
if err := bs.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
bs.sql = bs.BouncerQuery.sqlQuery(ctx)
|
|
return bs.sqlScan(ctx, v)
|
|
}
|
|
|
|
// ScanX is like Scan, but panics if an error occurs.
|
|
func (bs *BouncerSelect) ScanX(ctx context.Context, v interface{}) {
|
|
if err := bs.Scan(ctx, v); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// Strings returns list of strings from a selector. It is only allowed when selecting one field.
|
|
func (bs *BouncerSelect) Strings(ctx context.Context) ([]string, error) {
|
|
if len(bs.fields) > 1 {
|
|
return nil, errors.New("ent: BouncerSelect.Strings is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []string
|
|
if err := bs.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// StringsX is like Strings, but panics if an error occurs.
|
|
func (bs *BouncerSelect) StringsX(ctx context.Context) []string {
|
|
v, err := bs.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 (bs *BouncerSelect) String(ctx context.Context) (_ string, err error) {
|
|
var v []string
|
|
if v, err = bs.Strings(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{bouncer.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: BouncerSelect.Strings returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// StringX is like String, but panics if an error occurs.
|
|
func (bs *BouncerSelect) StringX(ctx context.Context) string {
|
|
v, err := bs.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 (bs *BouncerSelect) Ints(ctx context.Context) ([]int, error) {
|
|
if len(bs.fields) > 1 {
|
|
return nil, errors.New("ent: BouncerSelect.Ints is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []int
|
|
if err := bs.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// IntsX is like Ints, but panics if an error occurs.
|
|
func (bs *BouncerSelect) IntsX(ctx context.Context) []int {
|
|
v, err := bs.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 (bs *BouncerSelect) Int(ctx context.Context) (_ int, err error) {
|
|
var v []int
|
|
if v, err = bs.Ints(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{bouncer.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: BouncerSelect.Ints returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// IntX is like Int, but panics if an error occurs.
|
|
func (bs *BouncerSelect) IntX(ctx context.Context) int {
|
|
v, err := bs.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 (bs *BouncerSelect) Float64s(ctx context.Context) ([]float64, error) {
|
|
if len(bs.fields) > 1 {
|
|
return nil, errors.New("ent: BouncerSelect.Float64s is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []float64
|
|
if err := bs.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// Float64sX is like Float64s, but panics if an error occurs.
|
|
func (bs *BouncerSelect) Float64sX(ctx context.Context) []float64 {
|
|
v, err := bs.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 (bs *BouncerSelect) Float64(ctx context.Context) (_ float64, err error) {
|
|
var v []float64
|
|
if v, err = bs.Float64s(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{bouncer.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: BouncerSelect.Float64s returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// Float64X is like Float64, but panics if an error occurs.
|
|
func (bs *BouncerSelect) Float64X(ctx context.Context) float64 {
|
|
v, err := bs.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 (bs *BouncerSelect) Bools(ctx context.Context) ([]bool, error) {
|
|
if len(bs.fields) > 1 {
|
|
return nil, errors.New("ent: BouncerSelect.Bools is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []bool
|
|
if err := bs.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// BoolsX is like Bools, but panics if an error occurs.
|
|
func (bs *BouncerSelect) BoolsX(ctx context.Context) []bool {
|
|
v, err := bs.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 (bs *BouncerSelect) Bool(ctx context.Context) (_ bool, err error) {
|
|
var v []bool
|
|
if v, err = bs.Bools(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{bouncer.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: BouncerSelect.Bools returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// BoolX is like Bool, but panics if an error occurs.
|
|
func (bs *BouncerSelect) BoolX(ctx context.Context) bool {
|
|
v, err := bs.Bool(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (bs *BouncerSelect) sqlScan(ctx context.Context, v interface{}) error {
|
|
rows := &sql.Rows{}
|
|
query, args := bs.sqlQuery().Query()
|
|
if err := bs.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
func (bs *BouncerSelect) sqlQuery() sql.Querier {
|
|
selector := bs.sql
|
|
selector.Select(selector.Columns(bs.fields...)...)
|
|
return selector
|
|
}
|