529 lines
14 KiB
Go
529 lines
14 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
"github.com/FrankenBotDev/FrankenAPI/ent/authorizables"
|
|
"github.com/FrankenBotDev/FrankenAPI/ent/predicate"
|
|
)
|
|
|
|
// AuthorizablesQuery is the builder for querying Authorizables entities.
|
|
type AuthorizablesQuery struct {
|
|
config
|
|
limit *int
|
|
offset *int
|
|
unique *bool
|
|
order []OrderFunc
|
|
fields []string
|
|
predicates []predicate.Authorizables
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
path func(context.Context) (*sql.Selector, error)
|
|
}
|
|
|
|
// Where adds a new predicate for the AuthorizablesQuery builder.
|
|
func (aq *AuthorizablesQuery) Where(ps ...predicate.Authorizables) *AuthorizablesQuery {
|
|
aq.predicates = append(aq.predicates, ps...)
|
|
return aq
|
|
}
|
|
|
|
// Limit adds a limit step to the query.
|
|
func (aq *AuthorizablesQuery) Limit(limit int) *AuthorizablesQuery {
|
|
aq.limit = &limit
|
|
return aq
|
|
}
|
|
|
|
// Offset adds an offset step to the query.
|
|
func (aq *AuthorizablesQuery) Offset(offset int) *AuthorizablesQuery {
|
|
aq.offset = &offset
|
|
return aq
|
|
}
|
|
|
|
// 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 (aq *AuthorizablesQuery) Unique(unique bool) *AuthorizablesQuery {
|
|
aq.unique = &unique
|
|
return aq
|
|
}
|
|
|
|
// Order adds an order step to the query.
|
|
func (aq *AuthorizablesQuery) Order(o ...OrderFunc) *AuthorizablesQuery {
|
|
aq.order = append(aq.order, o...)
|
|
return aq
|
|
}
|
|
|
|
// First returns the first Authorizables entity from the query.
|
|
// Returns a *NotFoundError when no Authorizables was found.
|
|
func (aq *AuthorizablesQuery) First(ctx context.Context) (*Authorizables, error) {
|
|
nodes, err := aq.Limit(1).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nil, &NotFoundError{authorizables.Label}
|
|
}
|
|
return nodes[0], nil
|
|
}
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
func (aq *AuthorizablesQuery) FirstX(ctx context.Context) *Authorizables {
|
|
node, err := aq.First(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// FirstID returns the first Authorizables ID from the query.
|
|
// Returns a *NotFoundError when no Authorizables ID was found.
|
|
func (aq *AuthorizablesQuery) FirstID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = aq.Limit(1).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{authorizables.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
func (aq *AuthorizablesQuery) FirstIDX(ctx context.Context) int {
|
|
id, err := aq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns a single Authorizables entity found by the query, ensuring it only returns one.
|
|
// Returns a *NotSingularError when more than one Authorizables entity is found.
|
|
// Returns a *NotFoundError when no Authorizables entities are found.
|
|
func (aq *AuthorizablesQuery) Only(ctx context.Context) (*Authorizables, error) {
|
|
nodes, err := aq.Limit(2).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch len(nodes) {
|
|
case 1:
|
|
return nodes[0], nil
|
|
case 0:
|
|
return nil, &NotFoundError{authorizables.Label}
|
|
default:
|
|
return nil, &NotSingularError{authorizables.Label}
|
|
}
|
|
}
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
func (aq *AuthorizablesQuery) OnlyX(ctx context.Context) *Authorizables {
|
|
node, err := aq.Only(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// OnlyID is like Only, but returns the only Authorizables ID in the query.
|
|
// Returns a *NotSingularError when more than one Authorizables ID is found.
|
|
// Returns a *NotFoundError when no entities are found.
|
|
func (aq *AuthorizablesQuery) OnlyID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = aq.Limit(2).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(ids) {
|
|
case 1:
|
|
id = ids[0]
|
|
case 0:
|
|
err = &NotFoundError{authorizables.Label}
|
|
default:
|
|
err = &NotSingularError{authorizables.Label}
|
|
}
|
|
return
|
|
}
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
func (aq *AuthorizablesQuery) OnlyIDX(ctx context.Context) int {
|
|
id, err := aq.OnlyID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// All executes the query and returns a list of AuthorizablesSlice.
|
|
func (aq *AuthorizablesQuery) All(ctx context.Context) ([]*Authorizables, error) {
|
|
if err := aq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return aq.sqlAll(ctx)
|
|
}
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
func (aq *AuthorizablesQuery) AllX(ctx context.Context) []*Authorizables {
|
|
nodes, err := aq.All(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return nodes
|
|
}
|
|
|
|
// IDs executes the query and returns a list of Authorizables IDs.
|
|
func (aq *AuthorizablesQuery) IDs(ctx context.Context) ([]int, error) {
|
|
var ids []int
|
|
if err := aq.Select(authorizables.FieldID).Scan(ctx, &ids); err != nil {
|
|
return nil, err
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
func (aq *AuthorizablesQuery) IDsX(ctx context.Context) []int {
|
|
ids, err := aq.IDs(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return ids
|
|
}
|
|
|
|
// Count returns the count of the given query.
|
|
func (aq *AuthorizablesQuery) Count(ctx context.Context) (int, error) {
|
|
if err := aq.prepareQuery(ctx); err != nil {
|
|
return 0, err
|
|
}
|
|
return aq.sqlCount(ctx)
|
|
}
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
func (aq *AuthorizablesQuery) CountX(ctx context.Context) int {
|
|
count, err := aq.Count(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return count
|
|
}
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
func (aq *AuthorizablesQuery) Exist(ctx context.Context) (bool, error) {
|
|
if err := aq.prepareQuery(ctx); err != nil {
|
|
return false, err
|
|
}
|
|
return aq.sqlExist(ctx)
|
|
}
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
func (aq *AuthorizablesQuery) ExistX(ctx context.Context) bool {
|
|
exist, err := aq.Exist(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return exist
|
|
}
|
|
|
|
// Clone returns a duplicate of the AuthorizablesQuery builder, including all associated steps. It can be
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
func (aq *AuthorizablesQuery) Clone() *AuthorizablesQuery {
|
|
if aq == nil {
|
|
return nil
|
|
}
|
|
return &AuthorizablesQuery{
|
|
config: aq.config,
|
|
limit: aq.limit,
|
|
offset: aq.offset,
|
|
order: append([]OrderFunc{}, aq.order...),
|
|
predicates: append([]predicate.Authorizables{}, aq.predicates...),
|
|
// clone intermediate query.
|
|
sql: aq.sql.Clone(),
|
|
path: aq.path,
|
|
unique: aq.unique,
|
|
}
|
|
}
|
|
|
|
// 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 {
|
|
// Username string `json:"username,omitempty"`
|
|
// Count int `json:"count,omitempty"`
|
|
// }
|
|
//
|
|
// client.Authorizables.Query().
|
|
// GroupBy(authorizables.FieldUsername).
|
|
// Aggregate(ent.Count()).
|
|
// Scan(ctx, &v)
|
|
//
|
|
func (aq *AuthorizablesQuery) GroupBy(field string, fields ...string) *AuthorizablesGroupBy {
|
|
grbuild := &AuthorizablesGroupBy{config: aq.config}
|
|
grbuild.fields = append([]string{field}, fields...)
|
|
grbuild.path = func(ctx context.Context) (prev *sql.Selector, err error) {
|
|
if err := aq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return aq.sqlQuery(ctx), nil
|
|
}
|
|
grbuild.label = authorizables.Label
|
|
grbuild.flds, grbuild.scan = &grbuild.fields, grbuild.Scan
|
|
return grbuild
|
|
}
|
|
|
|
// 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 {
|
|
// Username string `json:"username,omitempty"`
|
|
// }
|
|
//
|
|
// client.Authorizables.Query().
|
|
// Select(authorizables.FieldUsername).
|
|
// Scan(ctx, &v)
|
|
//
|
|
func (aq *AuthorizablesQuery) Select(fields ...string) *AuthorizablesSelect {
|
|
aq.fields = append(aq.fields, fields...)
|
|
selbuild := &AuthorizablesSelect{AuthorizablesQuery: aq}
|
|
selbuild.label = authorizables.Label
|
|
selbuild.flds, selbuild.scan = &aq.fields, selbuild.Scan
|
|
return selbuild
|
|
}
|
|
|
|
func (aq *AuthorizablesQuery) prepareQuery(ctx context.Context) error {
|
|
for _, f := range aq.fields {
|
|
if !authorizables.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
}
|
|
if aq.path != nil {
|
|
prev, err := aq.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
aq.sql = prev
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (aq *AuthorizablesQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*Authorizables, error) {
|
|
var (
|
|
nodes = []*Authorizables{}
|
|
_spec = aq.querySpec()
|
|
)
|
|
_spec.ScanValues = func(columns []string) ([]interface{}, error) {
|
|
return (*Authorizables).scanValues(nil, columns)
|
|
}
|
|
_spec.Assign = func(columns []string, values []interface{}) error {
|
|
node := &Authorizables{config: aq.config}
|
|
nodes = append(nodes, node)
|
|
return node.assignValues(columns, values)
|
|
}
|
|
for i := range hooks {
|
|
hooks[i](ctx, _spec)
|
|
}
|
|
if err := sqlgraph.QueryNodes(ctx, aq.driver, _spec); err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nodes, nil
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
func (aq *AuthorizablesQuery) sqlCount(ctx context.Context) (int, error) {
|
|
_spec := aq.querySpec()
|
|
_spec.Node.Columns = aq.fields
|
|
if len(aq.fields) > 0 {
|
|
_spec.Unique = aq.unique != nil && *aq.unique
|
|
}
|
|
return sqlgraph.CountNodes(ctx, aq.driver, _spec)
|
|
}
|
|
|
|
func (aq *AuthorizablesQuery) sqlExist(ctx context.Context) (bool, error) {
|
|
n, err := aq.sqlCount(ctx)
|
|
if err != nil {
|
|
return false, fmt.Errorf("ent: check existence: %w", err)
|
|
}
|
|
return n > 0, nil
|
|
}
|
|
|
|
func (aq *AuthorizablesQuery) querySpec() *sqlgraph.QuerySpec {
|
|
_spec := &sqlgraph.QuerySpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: authorizables.Table,
|
|
Columns: authorizables.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: authorizables.FieldID,
|
|
},
|
|
},
|
|
From: aq.sql,
|
|
Unique: true,
|
|
}
|
|
if unique := aq.unique; unique != nil {
|
|
_spec.Unique = *unique
|
|
}
|
|
if fields := aq.fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, authorizables.FieldID)
|
|
for i := range fields {
|
|
if fields[i] != authorizables.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
|
|
}
|
|
}
|
|
}
|
|
if ps := aq.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if limit := aq.limit; limit != nil {
|
|
_spec.Limit = *limit
|
|
}
|
|
if offset := aq.offset; offset != nil {
|
|
_spec.Offset = *offset
|
|
}
|
|
if ps := aq.order; len(ps) > 0 {
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
return _spec
|
|
}
|
|
|
|
func (aq *AuthorizablesQuery) sqlQuery(ctx context.Context) *sql.Selector {
|
|
builder := sql.Dialect(aq.driver.Dialect())
|
|
t1 := builder.Table(authorizables.Table)
|
|
columns := aq.fields
|
|
if len(columns) == 0 {
|
|
columns = authorizables.Columns
|
|
}
|
|
selector := builder.Select(t1.Columns(columns...)...).From(t1)
|
|
if aq.sql != nil {
|
|
selector = aq.sql
|
|
selector.Select(selector.Columns(columns...)...)
|
|
}
|
|
if aq.unique != nil && *aq.unique {
|
|
selector.Distinct()
|
|
}
|
|
for _, p := range aq.predicates {
|
|
p(selector)
|
|
}
|
|
for _, p := range aq.order {
|
|
p(selector)
|
|
}
|
|
if offset := aq.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 := aq.limit; limit != nil {
|
|
selector.Limit(*limit)
|
|
}
|
|
return selector
|
|
}
|
|
|
|
// AuthorizablesGroupBy is the group-by builder for Authorizables entities.
|
|
type AuthorizablesGroupBy struct {
|
|
config
|
|
selector
|
|
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 (agb *AuthorizablesGroupBy) Aggregate(fns ...AggregateFunc) *AuthorizablesGroupBy {
|
|
agb.fns = append(agb.fns, fns...)
|
|
return agb
|
|
}
|
|
|
|
// Scan applies the group-by query and scans the result into the given value.
|
|
func (agb *AuthorizablesGroupBy) Scan(ctx context.Context, v interface{}) error {
|
|
query, err := agb.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
agb.sql = query
|
|
return agb.sqlScan(ctx, v)
|
|
}
|
|
|
|
func (agb *AuthorizablesGroupBy) sqlScan(ctx context.Context, v interface{}) error {
|
|
for _, f := range agb.fields {
|
|
if !authorizables.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("invalid field %q for group-by", f)}
|
|
}
|
|
}
|
|
selector := agb.sqlQuery()
|
|
if err := selector.Err(); err != nil {
|
|
return err
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := agb.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
func (agb *AuthorizablesGroupBy) sqlQuery() *sql.Selector {
|
|
selector := agb.sql.Select()
|
|
aggregation := make([]string, 0, len(agb.fns))
|
|
for _, fn := range agb.fns {
|
|
aggregation = append(aggregation, fn(selector))
|
|
}
|
|
// If no columns were selected in a custom aggregation function, the default
|
|
// selection is the fields used for "group-by", and the aggregation functions.
|
|
if len(selector.SelectedColumns()) == 0 {
|
|
columns := make([]string, 0, len(agb.fields)+len(agb.fns))
|
|
for _, f := range agb.fields {
|
|
columns = append(columns, selector.C(f))
|
|
}
|
|
columns = append(columns, aggregation...)
|
|
selector.Select(columns...)
|
|
}
|
|
return selector.GroupBy(selector.Columns(agb.fields...)...)
|
|
}
|
|
|
|
// AuthorizablesSelect is the builder for selecting fields of Authorizables entities.
|
|
type AuthorizablesSelect struct {
|
|
*AuthorizablesQuery
|
|
selector
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (as *AuthorizablesSelect) Scan(ctx context.Context, v interface{}) error {
|
|
if err := as.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
as.sql = as.AuthorizablesQuery.sqlQuery(ctx)
|
|
return as.sqlScan(ctx, v)
|
|
}
|
|
|
|
func (as *AuthorizablesSelect) sqlScan(ctx context.Context, v interface{}) error {
|
|
rows := &sql.Rows{}
|
|
query, args := as.sql.Query()
|
|
if err := as.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|