2022-08-29 07:16:12 +00:00
|
|
|
// Code generated by ent, DO NOT EDIT.
|
2021-01-01 20:34:47 +00:00
|
|
|
|
|
|
|
package db
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"math"
|
|
|
|
|
2021-03-24 06:37:51 +00:00
|
|
|
"entgo.io/ent/dialect/sql"
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
|
|
"entgo.io/ent/schema/field"
|
2021-01-01 20:34:47 +00:00
|
|
|
"github.com/dexidp/dex/storage/ent/db/devicetoken"
|
|
|
|
"github.com/dexidp/dex/storage/ent/db/predicate"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DeviceTokenQuery is the builder for querying DeviceToken entities.
|
|
|
|
type DeviceTokenQuery struct {
|
|
|
|
config
|
|
|
|
limit *int
|
|
|
|
offset *int
|
2021-04-30 14:31:49 +00:00
|
|
|
unique *bool
|
2021-01-01 20:34:47 +00:00
|
|
|
order []OrderFunc
|
|
|
|
fields []string
|
|
|
|
predicates []predicate.DeviceToken
|
|
|
|
// intermediate query (i.e. traversal path).
|
|
|
|
sql *sql.Selector
|
|
|
|
path func(context.Context) (*sql.Selector, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Where adds a new predicate for the DeviceTokenQuery builder.
|
|
|
|
func (dtq *DeviceTokenQuery) Where(ps ...predicate.DeviceToken) *DeviceTokenQuery {
|
|
|
|
dtq.predicates = append(dtq.predicates, ps...)
|
|
|
|
return dtq
|
|
|
|
}
|
|
|
|
|
|
|
|
// Limit adds a limit step to the query.
|
|
|
|
func (dtq *DeviceTokenQuery) Limit(limit int) *DeviceTokenQuery {
|
|
|
|
dtq.limit = &limit
|
|
|
|
return dtq
|
|
|
|
}
|
|
|
|
|
|
|
|
// Offset adds an offset step to the query.
|
|
|
|
func (dtq *DeviceTokenQuery) Offset(offset int) *DeviceTokenQuery {
|
|
|
|
dtq.offset = &offset
|
|
|
|
return dtq
|
|
|
|
}
|
|
|
|
|
2021-04-30 14:31:49 +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 (dtq *DeviceTokenQuery) Unique(unique bool) *DeviceTokenQuery {
|
|
|
|
dtq.unique = &unique
|
|
|
|
return dtq
|
|
|
|
}
|
|
|
|
|
2021-01-01 20:34:47 +00:00
|
|
|
// Order adds an order step to the query.
|
|
|
|
func (dtq *DeviceTokenQuery) Order(o ...OrderFunc) *DeviceTokenQuery {
|
|
|
|
dtq.order = append(dtq.order, o...)
|
|
|
|
return dtq
|
|
|
|
}
|
|
|
|
|
|
|
|
// First returns the first DeviceToken entity from the query.
|
|
|
|
// Returns a *NotFoundError when no DeviceToken was found.
|
|
|
|
func (dtq *DeviceTokenQuery) First(ctx context.Context) (*DeviceToken, error) {
|
|
|
|
nodes, err := dtq.Limit(1).All(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(nodes) == 0 {
|
|
|
|
return nil, &NotFoundError{devicetoken.Label}
|
|
|
|
}
|
|
|
|
return nodes[0], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
|
|
func (dtq *DeviceTokenQuery) FirstX(ctx context.Context) *DeviceToken {
|
|
|
|
node, err := dtq.First(ctx)
|
|
|
|
if err != nil && !IsNotFound(err) {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return node
|
|
|
|
}
|
|
|
|
|
|
|
|
// FirstID returns the first DeviceToken ID from the query.
|
|
|
|
// Returns a *NotFoundError when no DeviceToken ID was found.
|
|
|
|
func (dtq *DeviceTokenQuery) FirstID(ctx context.Context) (id int, err error) {
|
|
|
|
var ids []int
|
|
|
|
if ids, err = dtq.Limit(1).IDs(ctx); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(ids) == 0 {
|
|
|
|
err = &NotFoundError{devicetoken.Label}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return ids[0], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
|
|
func (dtq *DeviceTokenQuery) FirstIDX(ctx context.Context) int {
|
|
|
|
id, err := dtq.FirstID(ctx)
|
|
|
|
if err != nil && !IsNotFound(err) {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only returns a single DeviceToken entity found by the query, ensuring it only returns one.
|
2022-03-07 09:15:01 +00:00
|
|
|
// Returns a *NotSingularError when more than one DeviceToken entity is found.
|
2021-01-01 20:34:47 +00:00
|
|
|
// Returns a *NotFoundError when no DeviceToken entities are found.
|
|
|
|
func (dtq *DeviceTokenQuery) Only(ctx context.Context) (*DeviceToken, error) {
|
|
|
|
nodes, err := dtq.Limit(2).All(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
switch len(nodes) {
|
|
|
|
case 1:
|
|
|
|
return nodes[0], nil
|
|
|
|
case 0:
|
|
|
|
return nil, &NotFoundError{devicetoken.Label}
|
|
|
|
default:
|
|
|
|
return nil, &NotSingularError{devicetoken.Label}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
|
|
func (dtq *DeviceTokenQuery) OnlyX(ctx context.Context) *DeviceToken {
|
|
|
|
node, err := dtq.Only(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return node
|
|
|
|
}
|
|
|
|
|
|
|
|
// OnlyID is like Only, but returns the only DeviceToken ID in the query.
|
2022-03-07 09:15:01 +00:00
|
|
|
// Returns a *NotSingularError when more than one DeviceToken ID is found.
|
2021-01-01 20:34:47 +00:00
|
|
|
// Returns a *NotFoundError when no entities are found.
|
|
|
|
func (dtq *DeviceTokenQuery) OnlyID(ctx context.Context) (id int, err error) {
|
|
|
|
var ids []int
|
|
|
|
if ids, err = dtq.Limit(2).IDs(ctx); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
switch len(ids) {
|
|
|
|
case 1:
|
|
|
|
id = ids[0]
|
|
|
|
case 0:
|
|
|
|
err = &NotFoundError{devicetoken.Label}
|
|
|
|
default:
|
|
|
|
err = &NotSingularError{devicetoken.Label}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
|
|
func (dtq *DeviceTokenQuery) OnlyIDX(ctx context.Context) int {
|
|
|
|
id, err := dtq.OnlyID(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
|
|
|
// All executes the query and returns a list of DeviceTokens.
|
|
|
|
func (dtq *DeviceTokenQuery) All(ctx context.Context) ([]*DeviceToken, error) {
|
|
|
|
if err := dtq.prepareQuery(ctx); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return dtq.sqlAll(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
|
|
func (dtq *DeviceTokenQuery) AllX(ctx context.Context) []*DeviceToken {
|
|
|
|
nodes, err := dtq.All(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return nodes
|
|
|
|
}
|
|
|
|
|
|
|
|
// IDs executes the query and returns a list of DeviceToken IDs.
|
|
|
|
func (dtq *DeviceTokenQuery) IDs(ctx context.Context) ([]int, error) {
|
|
|
|
var ids []int
|
|
|
|
if err := dtq.Select(devicetoken.FieldID).Scan(ctx, &ids); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return ids, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
|
|
func (dtq *DeviceTokenQuery) IDsX(ctx context.Context) []int {
|
|
|
|
ids, err := dtq.IDs(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return ids
|
|
|
|
}
|
|
|
|
|
|
|
|
// Count returns the count of the given query.
|
|
|
|
func (dtq *DeviceTokenQuery) Count(ctx context.Context) (int, error) {
|
|
|
|
if err := dtq.prepareQuery(ctx); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return dtq.sqlCount(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
|
|
func (dtq *DeviceTokenQuery) CountX(ctx context.Context) int {
|
|
|
|
count, err := dtq.Count(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return count
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
|
|
func (dtq *DeviceTokenQuery) Exist(ctx context.Context) (bool, error) {
|
|
|
|
if err := dtq.prepareQuery(ctx); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return dtq.sqlExist(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
|
|
func (dtq *DeviceTokenQuery) ExistX(ctx context.Context) bool {
|
|
|
|
exist, err := dtq.Exist(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return exist
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clone returns a duplicate of the DeviceTokenQuery builder, including all associated steps. It can be
|
|
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
|
|
func (dtq *DeviceTokenQuery) Clone() *DeviceTokenQuery {
|
|
|
|
if dtq == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return &DeviceTokenQuery{
|
|
|
|
config: dtq.config,
|
|
|
|
limit: dtq.limit,
|
|
|
|
offset: dtq.offset,
|
|
|
|
order: append([]OrderFunc{}, dtq.order...),
|
|
|
|
predicates: append([]predicate.DeviceToken{}, dtq.predicates...),
|
|
|
|
// clone intermediate query.
|
2022-03-07 09:15:01 +00:00
|
|
|
sql: dtq.sql.Clone(),
|
|
|
|
path: dtq.path,
|
|
|
|
unique: dtq.unique,
|
2021-01-01 20:34:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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 {
|
|
|
|
// DeviceCode string `json:"device_code,omitempty"`
|
|
|
|
// Count int `json:"count,omitempty"`
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// client.DeviceToken.Query().
|
|
|
|
// GroupBy(devicetoken.FieldDeviceCode).
|
|
|
|
// Aggregate(db.Count()).
|
|
|
|
// Scan(ctx, &v)
|
|
|
|
//
|
|
|
|
func (dtq *DeviceTokenQuery) GroupBy(field string, fields ...string) *DeviceTokenGroupBy {
|
2022-08-29 07:16:12 +00:00
|
|
|
grbuild := &DeviceTokenGroupBy{config: dtq.config}
|
|
|
|
grbuild.fields = append([]string{field}, fields...)
|
|
|
|
grbuild.path = func(ctx context.Context) (prev *sql.Selector, err error) {
|
2021-01-01 20:34:47 +00:00
|
|
|
if err := dtq.prepareQuery(ctx); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-03-24 06:37:51 +00:00
|
|
|
return dtq.sqlQuery(ctx), nil
|
2021-01-01 20:34:47 +00:00
|
|
|
}
|
2022-08-29 07:16:12 +00:00
|
|
|
grbuild.label = devicetoken.Label
|
|
|
|
grbuild.flds, grbuild.scan = &grbuild.fields, grbuild.Scan
|
|
|
|
return grbuild
|
2021-01-01 20:34:47 +00: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 {
|
|
|
|
// DeviceCode string `json:"device_code,omitempty"`
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// client.DeviceToken.Query().
|
|
|
|
// Select(devicetoken.FieldDeviceCode).
|
|
|
|
// Scan(ctx, &v)
|
|
|
|
//
|
2021-09-13 13:48:02 +00:00
|
|
|
func (dtq *DeviceTokenQuery) Select(fields ...string) *DeviceTokenSelect {
|
|
|
|
dtq.fields = append(dtq.fields, fields...)
|
2022-08-29 07:16:12 +00:00
|
|
|
selbuild := &DeviceTokenSelect{DeviceTokenQuery: dtq}
|
|
|
|
selbuild.label = devicetoken.Label
|
|
|
|
selbuild.flds, selbuild.scan = &dtq.fields, selbuild.Scan
|
|
|
|
return selbuild
|
2021-01-01 20:34:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (dtq *DeviceTokenQuery) prepareQuery(ctx context.Context) error {
|
|
|
|
for _, f := range dtq.fields {
|
|
|
|
if !devicetoken.ValidColumn(f) {
|
|
|
|
return &ValidationError{Name: f, err: fmt.Errorf("db: invalid field %q for query", f)}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if dtq.path != nil {
|
|
|
|
prev, err := dtq.path(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
dtq.sql = prev
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-08-29 07:16:12 +00:00
|
|
|
func (dtq *DeviceTokenQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*DeviceToken, error) {
|
2021-01-01 20:34:47 +00:00
|
|
|
var (
|
|
|
|
nodes = []*DeviceToken{}
|
|
|
|
_spec = dtq.querySpec()
|
|
|
|
)
|
|
|
|
_spec.ScanValues = func(columns []string) ([]interface{}, error) {
|
2022-08-29 07:16:12 +00:00
|
|
|
return (*DeviceToken).scanValues(nil, columns)
|
2021-01-01 20:34:47 +00:00
|
|
|
}
|
|
|
|
_spec.Assign = func(columns []string, values []interface{}) error {
|
2022-08-29 07:16:12 +00:00
|
|
|
node := &DeviceToken{config: dtq.config}
|
|
|
|
nodes = append(nodes, node)
|
2021-01-01 20:34:47 +00:00
|
|
|
return node.assignValues(columns, values)
|
|
|
|
}
|
2022-08-29 07:16:12 +00:00
|
|
|
for i := range hooks {
|
|
|
|
hooks[i](ctx, _spec)
|
|
|
|
}
|
2021-01-01 20:34:47 +00:00
|
|
|
if err := sqlgraph.QueryNodes(ctx, dtq.driver, _spec); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(nodes) == 0 {
|
|
|
|
return nodes, nil
|
|
|
|
}
|
|
|
|
return nodes, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dtq *DeviceTokenQuery) sqlCount(ctx context.Context) (int, error) {
|
|
|
|
_spec := dtq.querySpec()
|
2022-03-07 09:15:01 +00:00
|
|
|
_spec.Node.Columns = dtq.fields
|
|
|
|
if len(dtq.fields) > 0 {
|
|
|
|
_spec.Unique = dtq.unique != nil && *dtq.unique
|
|
|
|
}
|
2021-01-01 20:34:47 +00:00
|
|
|
return sqlgraph.CountNodes(ctx, dtq.driver, _spec)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dtq *DeviceTokenQuery) sqlExist(ctx context.Context) (bool, error) {
|
|
|
|
n, err := dtq.sqlCount(ctx)
|
|
|
|
if err != nil {
|
2021-03-24 06:37:51 +00:00
|
|
|
return false, fmt.Errorf("db: check existence: %w", err)
|
2021-01-01 20:34:47 +00:00
|
|
|
}
|
|
|
|
return n > 0, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dtq *DeviceTokenQuery) querySpec() *sqlgraph.QuerySpec {
|
|
|
|
_spec := &sqlgraph.QuerySpec{
|
|
|
|
Node: &sqlgraph.NodeSpec{
|
|
|
|
Table: devicetoken.Table,
|
|
|
|
Columns: devicetoken.Columns,
|
|
|
|
ID: &sqlgraph.FieldSpec{
|
|
|
|
Type: field.TypeInt,
|
|
|
|
Column: devicetoken.FieldID,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
From: dtq.sql,
|
|
|
|
Unique: true,
|
|
|
|
}
|
2021-04-30 14:31:49 +00:00
|
|
|
if unique := dtq.unique; unique != nil {
|
|
|
|
_spec.Unique = *unique
|
|
|
|
}
|
2021-01-01 20:34:47 +00:00
|
|
|
if fields := dtq.fields; len(fields) > 0 {
|
|
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
|
|
_spec.Node.Columns = append(_spec.Node.Columns, devicetoken.FieldID)
|
|
|
|
for i := range fields {
|
|
|
|
if fields[i] != devicetoken.FieldID {
|
|
|
|
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ps := dtq.predicates; len(ps) > 0 {
|
|
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
|
|
for i := range ps {
|
|
|
|
ps[i](selector)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if limit := dtq.limit; limit != nil {
|
|
|
|
_spec.Limit = *limit
|
|
|
|
}
|
|
|
|
if offset := dtq.offset; offset != nil {
|
|
|
|
_spec.Offset = *offset
|
|
|
|
}
|
|
|
|
if ps := dtq.order; len(ps) > 0 {
|
|
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
|
|
for i := range ps {
|
2021-04-30 14:31:49 +00:00
|
|
|
ps[i](selector)
|
2021-01-01 20:34:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return _spec
|
|
|
|
}
|
|
|
|
|
2021-03-24 06:37:51 +00:00
|
|
|
func (dtq *DeviceTokenQuery) sqlQuery(ctx context.Context) *sql.Selector {
|
2021-01-01 20:34:47 +00:00
|
|
|
builder := sql.Dialect(dtq.driver.Dialect())
|
|
|
|
t1 := builder.Table(devicetoken.Table)
|
2021-09-13 13:48:02 +00:00
|
|
|
columns := dtq.fields
|
|
|
|
if len(columns) == 0 {
|
|
|
|
columns = devicetoken.Columns
|
|
|
|
}
|
|
|
|
selector := builder.Select(t1.Columns(columns...)...).From(t1)
|
2021-01-01 20:34:47 +00:00
|
|
|
if dtq.sql != nil {
|
|
|
|
selector = dtq.sql
|
2021-09-13 13:48:02 +00:00
|
|
|
selector.Select(selector.Columns(columns...)...)
|
2021-01-01 20:34:47 +00:00
|
|
|
}
|
2022-03-07 09:15:01 +00:00
|
|
|
if dtq.unique != nil && *dtq.unique {
|
|
|
|
selector.Distinct()
|
|
|
|
}
|
2021-01-01 20:34:47 +00:00
|
|
|
for _, p := range dtq.predicates {
|
|
|
|
p(selector)
|
|
|
|
}
|
|
|
|
for _, p := range dtq.order {
|
2021-04-30 14:31:49 +00:00
|
|
|
p(selector)
|
2021-01-01 20:34:47 +00:00
|
|
|
}
|
|
|
|
if offset := dtq.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 := dtq.limit; limit != nil {
|
|
|
|
selector.Limit(*limit)
|
|
|
|
}
|
|
|
|
return selector
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeviceTokenGroupBy is the group-by builder for DeviceToken entities.
|
|
|
|
type DeviceTokenGroupBy struct {
|
|
|
|
config
|
2022-08-29 07:16:12 +00:00
|
|
|
selector
|
2021-01-01 20:34:47 +00:00
|
|
|
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 (dtgb *DeviceTokenGroupBy) Aggregate(fns ...AggregateFunc) *DeviceTokenGroupBy {
|
|
|
|
dtgb.fns = append(dtgb.fns, fns...)
|
|
|
|
return dtgb
|
|
|
|
}
|
|
|
|
|
|
|
|
// Scan applies the group-by query and scans the result into the given value.
|
|
|
|
func (dtgb *DeviceTokenGroupBy) Scan(ctx context.Context, v interface{}) error {
|
|
|
|
query, err := dtgb.path(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
dtgb.sql = query
|
|
|
|
return dtgb.sqlScan(ctx, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dtgb *DeviceTokenGroupBy) sqlScan(ctx context.Context, v interface{}) error {
|
|
|
|
for _, f := range dtgb.fields {
|
|
|
|
if !devicetoken.ValidColumn(f) {
|
|
|
|
return &ValidationError{Name: f, err: fmt.Errorf("invalid field %q for group-by", f)}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
selector := dtgb.sqlQuery()
|
|
|
|
if err := selector.Err(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
rows := &sql.Rows{}
|
|
|
|
query, args := selector.Query()
|
|
|
|
if err := dtgb.driver.Query(ctx, query, args, rows); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
return sql.ScanSlice(rows, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dtgb *DeviceTokenGroupBy) sqlQuery() *sql.Selector {
|
2021-09-13 13:48:02 +00:00
|
|
|
selector := dtgb.sql.Select()
|
|
|
|
aggregation := make([]string, 0, len(dtgb.fns))
|
2021-01-01 20:34:47 +00:00
|
|
|
for _, fn := range dtgb.fns {
|
2021-09-13 13:48:02 +00:00
|
|
|
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(dtgb.fields)+len(dtgb.fns))
|
|
|
|
for _, f := range dtgb.fields {
|
|
|
|
columns = append(columns, selector.C(f))
|
|
|
|
}
|
2022-03-07 09:15:01 +00:00
|
|
|
columns = append(columns, aggregation...)
|
2021-09-13 13:48:02 +00:00
|
|
|
selector.Select(columns...)
|
2021-01-01 20:34:47 +00:00
|
|
|
}
|
2021-09-13 13:48:02 +00:00
|
|
|
return selector.GroupBy(selector.Columns(dtgb.fields...)...)
|
2021-01-01 20:34:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeviceTokenSelect is the builder for selecting fields of DeviceToken entities.
|
|
|
|
type DeviceTokenSelect struct {
|
|
|
|
*DeviceTokenQuery
|
2022-08-29 07:16:12 +00:00
|
|
|
selector
|
2021-01-01 20:34:47 +00:00
|
|
|
// intermediate query (i.e. traversal path).
|
|
|
|
sql *sql.Selector
|
|
|
|
}
|
|
|
|
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
|
|
func (dts *DeviceTokenSelect) Scan(ctx context.Context, v interface{}) error {
|
|
|
|
if err := dts.prepareQuery(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-03-24 06:37:51 +00:00
|
|
|
dts.sql = dts.DeviceTokenQuery.sqlQuery(ctx)
|
2021-01-01 20:34:47 +00:00
|
|
|
return dts.sqlScan(ctx, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dts *DeviceTokenSelect) sqlScan(ctx context.Context, v interface{}) error {
|
|
|
|
rows := &sql.Rows{}
|
2021-09-13 13:48:02 +00:00
|
|
|
query, args := dts.sql.Query()
|
2021-01-01 20:34:47 +00:00
|
|
|
if err := dts.driver.Query(ctx, query, args, rows); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
return sql.ScanSlice(rows, v)
|
|
|
|
}
|