mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
880 lines
22 KiB
Go
880 lines
22 KiB
Go
// Code generated by entc, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"math"
|
|
|
|
"github.com/facebook/ent/dialect/sql"
|
|
"github.com/facebook/ent/dialect/sql/sqlgraph"
|
|
"github.com/facebook/ent/schema/field"
|
|
"github.com/roleypoly/roleypoly/src/db/ent/predicate"
|
|
"github.com/roleypoly/roleypoly/src/db/ent/session"
|
|
)
|
|
|
|
// SessionQuery is the builder for querying Session entities.
|
|
type SessionQuery struct {
|
|
config
|
|
limit *int
|
|
offset *int
|
|
order []OrderFunc
|
|
unique []string
|
|
predicates []predicate.Session
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
path func(context.Context) (*sql.Selector, error)
|
|
}
|
|
|
|
// Where adds a new predicate for the builder.
|
|
func (sq *SessionQuery) Where(ps ...predicate.Session) *SessionQuery {
|
|
sq.predicates = append(sq.predicates, ps...)
|
|
return sq
|
|
}
|
|
|
|
// Limit adds a limit step to the query.
|
|
func (sq *SessionQuery) Limit(limit int) *SessionQuery {
|
|
sq.limit = &limit
|
|
return sq
|
|
}
|
|
|
|
// Offset adds an offset step to the query.
|
|
func (sq *SessionQuery) Offset(offset int) *SessionQuery {
|
|
sq.offset = &offset
|
|
return sq
|
|
}
|
|
|
|
// Order adds an order step to the query.
|
|
func (sq *SessionQuery) Order(o ...OrderFunc) *SessionQuery {
|
|
sq.order = append(sq.order, o...)
|
|
return sq
|
|
}
|
|
|
|
// First returns the first Session entity in the query. Returns *NotFoundError when no session was found.
|
|
func (sq *SessionQuery) First(ctx context.Context) (*Session, error) {
|
|
nodes, err := sq.Limit(1).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nil, &NotFoundError{session.Label}
|
|
}
|
|
return nodes[0], nil
|
|
}
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
func (sq *SessionQuery) FirstX(ctx context.Context) *Session {
|
|
node, err := sq.First(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// FirstID returns the first Session id in the query. Returns *NotFoundError when no id was found.
|
|
func (sq *SessionQuery) FirstID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = sq.Limit(1).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{session.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstXID is like FirstID, but panics if an error occurs.
|
|
func (sq *SessionQuery) FirstXID(ctx context.Context) int {
|
|
id, err := sq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns the only Session entity in the query, returns an error if not exactly one entity was returned.
|
|
func (sq *SessionQuery) Only(ctx context.Context) (*Session, error) {
|
|
nodes, err := sq.Limit(2).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch len(nodes) {
|
|
case 1:
|
|
return nodes[0], nil
|
|
case 0:
|
|
return nil, &NotFoundError{session.Label}
|
|
default:
|
|
return nil, &NotSingularError{session.Label}
|
|
}
|
|
}
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
func (sq *SessionQuery) OnlyX(ctx context.Context) *Session {
|
|
node, err := sq.Only(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// OnlyID returns the only Session id in the query, returns an error if not exactly one id was returned.
|
|
func (sq *SessionQuery) OnlyID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = sq.Limit(2).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(ids) {
|
|
case 1:
|
|
id = ids[0]
|
|
case 0:
|
|
err = &NotFoundError{session.Label}
|
|
default:
|
|
err = &NotSingularError{session.Label}
|
|
}
|
|
return
|
|
}
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
func (sq *SessionQuery) OnlyIDX(ctx context.Context) int {
|
|
id, err := sq.OnlyID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// All executes the query and returns a list of Sessions.
|
|
func (sq *SessionQuery) All(ctx context.Context) ([]*Session, error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return sq.sqlAll(ctx)
|
|
}
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
func (sq *SessionQuery) AllX(ctx context.Context) []*Session {
|
|
nodes, err := sq.All(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return nodes
|
|
}
|
|
|
|
// IDs executes the query and returns a list of Session ids.
|
|
func (sq *SessionQuery) IDs(ctx context.Context) ([]int, error) {
|
|
var ids []int
|
|
if err := sq.Select(session.FieldID).Scan(ctx, &ids); err != nil {
|
|
return nil, err
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
func (sq *SessionQuery) IDsX(ctx context.Context) []int {
|
|
ids, err := sq.IDs(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return ids
|
|
}
|
|
|
|
// Count returns the count of the given query.
|
|
func (sq *SessionQuery) Count(ctx context.Context) (int, error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return 0, err
|
|
}
|
|
return sq.sqlCount(ctx)
|
|
}
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
func (sq *SessionQuery) CountX(ctx context.Context) int {
|
|
count, err := sq.Count(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return count
|
|
}
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
func (sq *SessionQuery) Exist(ctx context.Context) (bool, error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return false, err
|
|
}
|
|
return sq.sqlExist(ctx)
|
|
}
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
func (sq *SessionQuery) ExistX(ctx context.Context) bool {
|
|
exist, err := sq.Exist(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return exist
|
|
}
|
|
|
|
// Clone returns a duplicate of the query builder, including all associated steps. It can be
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
func (sq *SessionQuery) Clone() *SessionQuery {
|
|
return &SessionQuery{
|
|
config: sq.config,
|
|
limit: sq.limit,
|
|
offset: sq.offset,
|
|
order: append([]OrderFunc{}, sq.order...),
|
|
unique: append([]string{}, sq.unique...),
|
|
predicates: append([]predicate.Session{}, sq.predicates...),
|
|
// clone intermediate query.
|
|
sql: sq.sql.Clone(),
|
|
path: sq.path,
|
|
}
|
|
}
|
|
|
|
// GroupBy 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 {
|
|
// CreateTime time.Time `json:"create_time,omitempty"`
|
|
// Count int `json:"count,omitempty"`
|
|
// }
|
|
//
|
|
// client.Session.Query().
|
|
// GroupBy(session.FieldCreateTime).
|
|
// Aggregate(ent.Count()).
|
|
// Scan(ctx, &v)
|
|
//
|
|
func (sq *SessionQuery) GroupBy(field string, fields ...string) *SessionGroupBy {
|
|
group := &SessionGroupBy{config: sq.config}
|
|
group.fields = append([]string{field}, fields...)
|
|
group.path = func(ctx context.Context) (prev *sql.Selector, err error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return sq.sqlQuery(), nil
|
|
}
|
|
return group
|
|
}
|
|
|
|
// Select one or more fields from the given query.
|
|
//
|
|
// Example:
|
|
//
|
|
// var v []struct {
|
|
// CreateTime time.Time `json:"create_time,omitempty"`
|
|
// }
|
|
//
|
|
// client.Session.Query().
|
|
// Select(session.FieldCreateTime).
|
|
// Scan(ctx, &v)
|
|
//
|
|
func (sq *SessionQuery) Select(field string, fields ...string) *SessionSelect {
|
|
selector := &SessionSelect{config: sq.config}
|
|
selector.fields = append([]string{field}, fields...)
|
|
selector.path = func(ctx context.Context) (prev *sql.Selector, err error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return sq.sqlQuery(), nil
|
|
}
|
|
return selector
|
|
}
|
|
|
|
func (sq *SessionQuery) prepareQuery(ctx context.Context) error {
|
|
if sq.path != nil {
|
|
prev, err := sq.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
sq.sql = prev
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (sq *SessionQuery) sqlAll(ctx context.Context) ([]*Session, error) {
|
|
var (
|
|
nodes = []*Session{}
|
|
_spec = sq.querySpec()
|
|
)
|
|
_spec.ScanValues = func() []interface{} {
|
|
node := &Session{config: sq.config}
|
|
nodes = append(nodes, node)
|
|
values := node.scanValues()
|
|
return values
|
|
}
|
|
_spec.Assign = func(values ...interface{}) error {
|
|
if len(nodes) == 0 {
|
|
return fmt.Errorf("ent: Assign called without calling ScanValues")
|
|
}
|
|
node := nodes[len(nodes)-1]
|
|
return node.assignValues(values...)
|
|
}
|
|
if err := sqlgraph.QueryNodes(ctx, sq.driver, _spec); err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nodes, nil
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
func (sq *SessionQuery) sqlCount(ctx context.Context) (int, error) {
|
|
_spec := sq.querySpec()
|
|
return sqlgraph.CountNodes(ctx, sq.driver, _spec)
|
|
}
|
|
|
|
func (sq *SessionQuery) sqlExist(ctx context.Context) (bool, error) {
|
|
n, err := sq.sqlCount(ctx)
|
|
if err != nil {
|
|
return false, fmt.Errorf("ent: check existence: %v", err)
|
|
}
|
|
return n > 0, nil
|
|
}
|
|
|
|
func (sq *SessionQuery) querySpec() *sqlgraph.QuerySpec {
|
|
_spec := &sqlgraph.QuerySpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: session.Table,
|
|
Columns: session.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: session.FieldID,
|
|
},
|
|
},
|
|
From: sq.sql,
|
|
Unique: true,
|
|
}
|
|
if ps := sq.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if limit := sq.limit; limit != nil {
|
|
_spec.Limit = *limit
|
|
}
|
|
if offset := sq.offset; offset != nil {
|
|
_spec.Offset = *offset
|
|
}
|
|
if ps := sq.order; len(ps) > 0 {
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector, session.ValidColumn)
|
|
}
|
|
}
|
|
}
|
|
return _spec
|
|
}
|
|
|
|
func (sq *SessionQuery) sqlQuery() *sql.Selector {
|
|
builder := sql.Dialect(sq.driver.Dialect())
|
|
t1 := builder.Table(session.Table)
|
|
selector := builder.Select(t1.Columns(session.Columns...)...).From(t1)
|
|
if sq.sql != nil {
|
|
selector = sq.sql
|
|
selector.Select(selector.Columns(session.Columns...)...)
|
|
}
|
|
for _, p := range sq.predicates {
|
|
p(selector)
|
|
}
|
|
for _, p := range sq.order {
|
|
p(selector, session.ValidColumn)
|
|
}
|
|
if offset := sq.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 := sq.limit; limit != nil {
|
|
selector.Limit(*limit)
|
|
}
|
|
return selector
|
|
}
|
|
|
|
// SessionGroupBy is the builder for group-by Session entities.
|
|
type SessionGroupBy 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 (sgb *SessionGroupBy) Aggregate(fns ...AggregateFunc) *SessionGroupBy {
|
|
sgb.fns = append(sgb.fns, fns...)
|
|
return sgb
|
|
}
|
|
|
|
// Scan applies the group-by query and scan the result into the given value.
|
|
func (sgb *SessionGroupBy) Scan(ctx context.Context, v interface{}) error {
|
|
query, err := sgb.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
sgb.sql = query
|
|
return sgb.sqlScan(ctx, v)
|
|
}
|
|
|
|
// ScanX is like Scan, but panics if an error occurs.
|
|
func (sgb *SessionGroupBy) ScanX(ctx context.Context, v interface{}) {
|
|
if err := sgb.Scan(ctx, v); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// Strings returns list of strings from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SessionGroupBy) Strings(ctx context.Context) ([]string, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: SessionGroupBy.Strings is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []string
|
|
if err := sgb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// StringsX is like Strings, but panics if an error occurs.
|
|
func (sgb *SessionGroupBy) StringsX(ctx context.Context) []string {
|
|
v, err := sgb.Strings(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// String returns a single string from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SessionGroupBy) String(ctx context.Context) (_ string, err error) {
|
|
var v []string
|
|
if v, err = sgb.Strings(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{session.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: SessionGroupBy.Strings returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// StringX is like String, but panics if an error occurs.
|
|
func (sgb *SessionGroupBy) StringX(ctx context.Context) string {
|
|
v, err := sgb.String(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Ints returns list of ints from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SessionGroupBy) Ints(ctx context.Context) ([]int, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: SessionGroupBy.Ints is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []int
|
|
if err := sgb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// IntsX is like Ints, but panics if an error occurs.
|
|
func (sgb *SessionGroupBy) IntsX(ctx context.Context) []int {
|
|
v, err := sgb.Ints(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Int returns a single int from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SessionGroupBy) Int(ctx context.Context) (_ int, err error) {
|
|
var v []int
|
|
if v, err = sgb.Ints(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{session.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: SessionGroupBy.Ints returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// IntX is like Int, but panics if an error occurs.
|
|
func (sgb *SessionGroupBy) IntX(ctx context.Context) int {
|
|
v, err := sgb.Int(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Float64s returns list of float64s from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SessionGroupBy) Float64s(ctx context.Context) ([]float64, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: SessionGroupBy.Float64s is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []float64
|
|
if err := sgb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// Float64sX is like Float64s, but panics if an error occurs.
|
|
func (sgb *SessionGroupBy) Float64sX(ctx context.Context) []float64 {
|
|
v, err := sgb.Float64s(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Float64 returns a single float64 from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SessionGroupBy) Float64(ctx context.Context) (_ float64, err error) {
|
|
var v []float64
|
|
if v, err = sgb.Float64s(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{session.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: SessionGroupBy.Float64s returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// Float64X is like Float64, but panics if an error occurs.
|
|
func (sgb *SessionGroupBy) Float64X(ctx context.Context) float64 {
|
|
v, err := sgb.Float64(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Bools returns list of bools from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SessionGroupBy) Bools(ctx context.Context) ([]bool, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: SessionGroupBy.Bools is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []bool
|
|
if err := sgb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// BoolsX is like Bools, but panics if an error occurs.
|
|
func (sgb *SessionGroupBy) BoolsX(ctx context.Context) []bool {
|
|
v, err := sgb.Bools(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Bool returns a single bool from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SessionGroupBy) Bool(ctx context.Context) (_ bool, err error) {
|
|
var v []bool
|
|
if v, err = sgb.Bools(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{session.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: SessionGroupBy.Bools returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// BoolX is like Bool, but panics if an error occurs.
|
|
func (sgb *SessionGroupBy) BoolX(ctx context.Context) bool {
|
|
v, err := sgb.Bool(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (sgb *SessionGroupBy) sqlScan(ctx context.Context, v interface{}) error {
|
|
for _, f := range sgb.fields {
|
|
if !session.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("invalid field %q for group-by", f)}
|
|
}
|
|
}
|
|
selector := sgb.sqlQuery()
|
|
if err := selector.Err(); err != nil {
|
|
return err
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := sgb.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
func (sgb *SessionGroupBy) sqlQuery() *sql.Selector {
|
|
selector := sgb.sql
|
|
columns := make([]string, 0, len(sgb.fields)+len(sgb.fns))
|
|
columns = append(columns, sgb.fields...)
|
|
for _, fn := range sgb.fns {
|
|
columns = append(columns, fn(selector, session.ValidColumn))
|
|
}
|
|
return selector.Select(columns...).GroupBy(sgb.fields...)
|
|
}
|
|
|
|
// SessionSelect is the builder for select fields of Session entities.
|
|
type SessionSelect struct {
|
|
config
|
|
fields []string
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
path func(context.Context) (*sql.Selector, error)
|
|
}
|
|
|
|
// Scan applies the selector query and scan the result into the given value.
|
|
func (ss *SessionSelect) Scan(ctx context.Context, v interface{}) error {
|
|
query, err := ss.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
ss.sql = query
|
|
return ss.sqlScan(ctx, v)
|
|
}
|
|
|
|
// ScanX is like Scan, but panics if an error occurs.
|
|
func (ss *SessionSelect) ScanX(ctx context.Context, v interface{}) {
|
|
if err := ss.Scan(ctx, v); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// Strings returns list of strings from selector. It is only allowed when selecting one field.
|
|
func (ss *SessionSelect) Strings(ctx context.Context) ([]string, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: SessionSelect.Strings is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []string
|
|
if err := ss.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// StringsX is like Strings, but panics if an error occurs.
|
|
func (ss *SessionSelect) StringsX(ctx context.Context) []string {
|
|
v, err := ss.Strings(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// String returns a single string from selector. It is only allowed when selecting one field.
|
|
func (ss *SessionSelect) String(ctx context.Context) (_ string, err error) {
|
|
var v []string
|
|
if v, err = ss.Strings(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{session.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: SessionSelect.Strings returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// StringX is like String, but panics if an error occurs.
|
|
func (ss *SessionSelect) StringX(ctx context.Context) string {
|
|
v, err := ss.String(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Ints returns list of ints from selector. It is only allowed when selecting one field.
|
|
func (ss *SessionSelect) Ints(ctx context.Context) ([]int, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: SessionSelect.Ints is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []int
|
|
if err := ss.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// IntsX is like Ints, but panics if an error occurs.
|
|
func (ss *SessionSelect) IntsX(ctx context.Context) []int {
|
|
v, err := ss.Ints(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Int returns a single int from selector. It is only allowed when selecting one field.
|
|
func (ss *SessionSelect) Int(ctx context.Context) (_ int, err error) {
|
|
var v []int
|
|
if v, err = ss.Ints(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{session.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: SessionSelect.Ints returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// IntX is like Int, but panics if an error occurs.
|
|
func (ss *SessionSelect) IntX(ctx context.Context) int {
|
|
v, err := ss.Int(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Float64s returns list of float64s from selector. It is only allowed when selecting one field.
|
|
func (ss *SessionSelect) Float64s(ctx context.Context) ([]float64, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: SessionSelect.Float64s is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []float64
|
|
if err := ss.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// Float64sX is like Float64s, but panics if an error occurs.
|
|
func (ss *SessionSelect) Float64sX(ctx context.Context) []float64 {
|
|
v, err := ss.Float64s(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Float64 returns a single float64 from selector. It is only allowed when selecting one field.
|
|
func (ss *SessionSelect) Float64(ctx context.Context) (_ float64, err error) {
|
|
var v []float64
|
|
if v, err = ss.Float64s(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{session.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: SessionSelect.Float64s returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// Float64X is like Float64, but panics if an error occurs.
|
|
func (ss *SessionSelect) Float64X(ctx context.Context) float64 {
|
|
v, err := ss.Float64(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Bools returns list of bools from selector. It is only allowed when selecting one field.
|
|
func (ss *SessionSelect) Bools(ctx context.Context) ([]bool, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: SessionSelect.Bools is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []bool
|
|
if err := ss.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// BoolsX is like Bools, but panics if an error occurs.
|
|
func (ss *SessionSelect) BoolsX(ctx context.Context) []bool {
|
|
v, err := ss.Bools(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Bool returns a single bool from selector. It is only allowed when selecting one field.
|
|
func (ss *SessionSelect) Bool(ctx context.Context) (_ bool, err error) {
|
|
var v []bool
|
|
if v, err = ss.Bools(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{session.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: SessionSelect.Bools returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// BoolX is like Bool, but panics if an error occurs.
|
|
func (ss *SessionSelect) BoolX(ctx context.Context) bool {
|
|
v, err := ss.Bool(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (ss *SessionSelect) sqlScan(ctx context.Context, v interface{}) error {
|
|
for _, f := range ss.fields {
|
|
if !session.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("invalid field %q for selection", f)}
|
|
}
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := ss.sqlQuery().Query()
|
|
if err := ss.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
func (ss *SessionSelect) sqlQuery() sql.Querier {
|
|
selector := ss.sql
|
|
selector.Select(selector.Columns(ss.fields...)...)
|
|
return selector
|
|
}
|