2016-09-18 02:29:00 +03:00
|
|
|
from functools import partial
|
|
|
|
|
|
|
|
from django.db.models.query import QuerySet
|
2022-09-24 16:00:45 +03:00
|
|
|
from graphql_relay import (
|
2020-06-27 13:05:56 +03:00
|
|
|
connection_from_array_slice,
|
2020-12-31 02:37:57 +03:00
|
|
|
cursor_to_offset,
|
2020-06-25 15:00:24 +03:00
|
|
|
get_offset_with_default,
|
2020-12-31 02:37:57 +03:00
|
|
|
offset_to_cursor,
|
2020-06-25 15:00:24 +03:00
|
|
|
)
|
2017-05-20 02:12:28 +03:00
|
|
|
from promise import Promise
|
|
|
|
|
2020-12-31 02:37:57 +03:00
|
|
|
from graphene import Int, NonNull
|
2020-05-09 14:13:47 +03:00
|
|
|
from graphene.relay import ConnectionField
|
|
|
|
from graphene.relay.connection import connection_adapter, page_info_adapter
|
2019-09-17 19:14:18 +03:00
|
|
|
from graphene.types import Field, List
|
2016-09-18 03:09:56 +03:00
|
|
|
|
2017-04-15 12:09:05 +03:00
|
|
|
from .settings import graphene_settings
|
2017-07-25 09:42:40 +03:00
|
|
|
from .utils import maybe_queryset
|
2016-09-18 02:29:00 +03:00
|
|
|
|
|
|
|
|
2016-09-22 05:32:39 +03:00
|
|
|
class DjangoListField(Field):
|
2016-09-21 07:25:05 +03:00
|
|
|
def __init__(self, _type, *args, **kwargs):
|
2019-09-17 19:14:18 +03:00
|
|
|
if isinstance(_type, NonNull):
|
|
|
|
_type = _type.of_type
|
|
|
|
|
2020-03-13 13:05:35 +03:00
|
|
|
# Django would never return a Set of None vvvvvvv
|
2022-10-19 17:10:30 +03:00
|
|
|
super().__init__(List(NonNull(_type)), *args, **kwargs)
|
2020-03-13 13:05:35 +03:00
|
|
|
|
2024-01-20 11:36:00 +03:00
|
|
|
@property
|
|
|
|
def type(self):
|
|
|
|
from .types import DjangoObjectType
|
|
|
|
|
2019-09-17 19:14:18 +03:00
|
|
|
assert issubclass(
|
2020-03-13 13:05:35 +03:00
|
|
|
self._underlying_type, DjangoObjectType
|
2024-01-20 11:36:00 +03:00
|
|
|
), "DjangoListField only accepts DjangoObjectType types as underlying type"
|
|
|
|
return super().type
|
2019-09-17 19:14:18 +03:00
|
|
|
|
2020-03-13 13:05:35 +03:00
|
|
|
@property
|
|
|
|
def _underlying_type(self):
|
|
|
|
_type = self._type
|
|
|
|
while hasattr(_type, "of_type"):
|
|
|
|
_type = _type.of_type
|
|
|
|
return _type
|
2016-09-22 05:32:39 +03:00
|
|
|
|
|
|
|
@property
|
|
|
|
def model(self):
|
2020-03-13 13:05:35 +03:00
|
|
|
return self._underlying_type._meta.model
|
2016-09-21 07:25:05 +03:00
|
|
|
|
2020-12-31 02:37:57 +03:00
|
|
|
def get_manager(self):
|
|
|
|
return self.model._default_manager
|
2020-05-09 14:28:03 +03:00
|
|
|
|
2016-09-21 07:25:05 +03:00
|
|
|
@staticmethod
|
2020-05-09 14:28:03 +03:00
|
|
|
def list_resolver(
|
2020-12-31 02:37:57 +03:00
|
|
|
django_object_type, resolver, default_manager, root, info, **args
|
2020-05-09 14:28:03 +03:00
|
|
|
):
|
2019-09-17 19:14:18 +03:00
|
|
|
queryset = maybe_queryset(resolver(root, info, **args))
|
|
|
|
if queryset is None:
|
2020-12-31 02:37:57 +03:00
|
|
|
queryset = maybe_queryset(default_manager)
|
2020-05-09 14:28:03 +03:00
|
|
|
|
|
|
|
if isinstance(queryset, QuerySet):
|
|
|
|
# Pass queryset to the DjangoObjectType get_queryset method
|
|
|
|
queryset = maybe_queryset(django_object_type.get_queryset(queryset, info))
|
|
|
|
|
2019-09-17 19:14:18 +03:00
|
|
|
return queryset
|
2016-09-21 07:25:05 +03:00
|
|
|
|
2020-08-06 22:44:33 +03:00
|
|
|
def wrap_resolve(self, parent_resolver):
|
2022-10-19 17:10:30 +03:00
|
|
|
resolver = super().wrap_resolve(parent_resolver)
|
2019-09-17 19:14:18 +03:00
|
|
|
_type = self.type
|
|
|
|
if isinstance(_type, NonNull):
|
|
|
|
_type = _type.of_type
|
|
|
|
django_object_type = _type.of_type.of_type
|
2020-05-09 14:28:03 +03:00
|
|
|
return partial(
|
2022-09-22 12:26:21 +03:00
|
|
|
self.list_resolver,
|
|
|
|
django_object_type,
|
|
|
|
resolver,
|
|
|
|
self.get_manager(),
|
2020-05-09 14:28:03 +03:00
|
|
|
)
|
2016-09-21 07:25:05 +03:00
|
|
|
|
|
|
|
|
2016-09-18 02:29:00 +03:00
|
|
|
class DjangoConnectionField(ConnectionField):
|
|
|
|
def __init__(self, *args, **kwargs):
|
2018-07-20 02:51:33 +03:00
|
|
|
self.on = kwargs.pop("on", False)
|
2017-04-15 12:09:05 +03:00
|
|
|
self.max_limit = kwargs.pop(
|
2018-07-20 02:51:33 +03:00
|
|
|
"max_limit", graphene_settings.RELAY_CONNECTION_MAX_LIMIT
|
2017-04-15 12:09:05 +03:00
|
|
|
)
|
|
|
|
self.enforce_first_or_last = kwargs.pop(
|
2018-07-20 02:51:33 +03:00
|
|
|
"enforce_first_or_last",
|
|
|
|
graphene_settings.RELAY_CONNECTION_ENFORCE_FIRST_OR_LAST,
|
2017-04-15 12:09:05 +03:00
|
|
|
)
|
2020-12-31 02:37:57 +03:00
|
|
|
kwargs.setdefault("offset", Int())
|
2022-10-19 17:10:30 +03:00
|
|
|
super().__init__(*args, **kwargs)
|
2016-09-18 02:29:00 +03:00
|
|
|
|
2017-07-25 08:27:50 +03:00
|
|
|
@property
|
|
|
|
def type(self):
|
|
|
|
from .types import DjangoObjectType
|
2018-07-20 02:51:33 +03:00
|
|
|
|
2017-07-25 08:27:50 +03:00
|
|
|
_type = super(ConnectionField, self).type
|
2019-03-30 21:38:20 +03:00
|
|
|
non_null = False
|
|
|
|
if isinstance(_type, NonNull):
|
|
|
|
_type = _type.of_type
|
|
|
|
non_null = True
|
2018-07-20 02:51:33 +03:00
|
|
|
assert issubclass(
|
|
|
|
_type, DjangoObjectType
|
2024-04-18 07:00:31 +03:00
|
|
|
), "DjangoConnectionField only accepts DjangoObjectType types"
|
2018-07-20 02:51:33 +03:00
|
|
|
assert _type._meta.connection, "The type {} doesn't have a connection".format(
|
|
|
|
_type.__name__
|
|
|
|
)
|
2019-03-30 21:38:20 +03:00
|
|
|
connection_type = _type._meta.connection
|
|
|
|
if non_null:
|
|
|
|
return NonNull(connection_type)
|
|
|
|
return connection_type
|
|
|
|
|
|
|
|
@property
|
|
|
|
def connection_type(self):
|
|
|
|
type = self.type
|
|
|
|
if isinstance(type, NonNull):
|
|
|
|
return type.of_type
|
|
|
|
return type
|
2017-07-25 08:27:50 +03:00
|
|
|
|
2017-03-03 04:54:15 +03:00
|
|
|
@property
|
|
|
|
def node_type(self):
|
2019-03-30 21:38:20 +03:00
|
|
|
return self.connection_type._meta.node
|
2017-03-03 04:54:15 +03:00
|
|
|
|
2016-09-18 02:29:00 +03:00
|
|
|
@property
|
|
|
|
def model(self):
|
2017-03-03 04:54:15 +03:00
|
|
|
return self.node_type._meta.model
|
2016-09-18 02:29:00 +03:00
|
|
|
|
|
|
|
def get_manager(self):
|
|
|
|
if self.on:
|
|
|
|
return getattr(self.model, self.on)
|
|
|
|
else:
|
|
|
|
return self.model._default_manager
|
|
|
|
|
2019-03-31 14:01:17 +03:00
|
|
|
@classmethod
|
|
|
|
def resolve_queryset(cls, connection, queryset, info, args):
|
2019-11-28 13:49:37 +03:00
|
|
|
# queryset is the resolved iterable from ObjectType
|
2019-03-31 14:01:17 +03:00
|
|
|
return connection._meta.node.get_queryset(queryset, info)
|
|
|
|
|
2017-04-15 11:00:02 +03:00
|
|
|
@classmethod
|
2020-06-06 21:00:21 +03:00
|
|
|
def resolve_connection(cls, connection, args, iterable, max_limit=None):
|
2020-12-31 02:37:57 +03:00
|
|
|
# Remove the offset parameter and convert it to an after cursor.
|
|
|
|
offset = args.pop("offset", None)
|
|
|
|
after = args.get("after")
|
|
|
|
if offset:
|
|
|
|
if after:
|
|
|
|
offset += cursor_to_offset(after) + 1
|
|
|
|
# input offset starts at 1 while the graphene offset starts at 0
|
|
|
|
args["after"] = offset_to_cursor(offset - 1)
|
|
|
|
|
2017-05-20 02:33:00 +03:00
|
|
|
iterable = maybe_queryset(iterable)
|
2020-06-25 15:00:24 +03:00
|
|
|
|
2017-05-20 02:33:00 +03:00
|
|
|
if isinstance(iterable, QuerySet):
|
2022-09-06 15:00:13 +03:00
|
|
|
array_length = iterable.count()
|
2017-05-20 02:33:00 +03:00
|
|
|
else:
|
2022-09-06 15:00:13 +03:00
|
|
|
array_length = len(iterable)
|
2020-06-25 15:00:24 +03:00
|
|
|
|
2022-09-22 18:01:28 +03:00
|
|
|
# If after is higher than array_length, connection_from_array_slice
|
2020-07-09 20:01:22 +03:00
|
|
|
# would try to do a negative slicing which makes django throw an
|
|
|
|
# AssertionError
|
2022-09-06 15:00:13 +03:00
|
|
|
slice_start = min(
|
2022-09-22 18:01:28 +03:00
|
|
|
get_offset_with_default(args.get("after"), -1) + 1,
|
|
|
|
array_length,
|
2022-09-06 15:00:13 +03:00
|
|
|
)
|
2022-09-22 18:01:28 +03:00
|
|
|
array_slice_length = array_length - slice_start
|
|
|
|
|
|
|
|
# Impose the maximum limit via the `first` field if neither first or last are already provided
|
|
|
|
# (note that if any of them is provided they must be under max_limit otherwise an error is raised).
|
|
|
|
if (
|
|
|
|
max_limit is not None
|
|
|
|
and args.get("first", None) is None
|
|
|
|
and args.get("last", None) is None
|
|
|
|
):
|
|
|
|
args["first"] = max_limit
|
2020-06-25 17:10:56 +03:00
|
|
|
|
2020-05-09 14:13:47 +03:00
|
|
|
connection = connection_from_array_slice(
|
2022-09-06 15:00:13 +03:00
|
|
|
iterable[slice_start:],
|
2017-05-20 02:33:00 +03:00
|
|
|
args,
|
2022-09-06 15:00:13 +03:00
|
|
|
slice_start=slice_start,
|
|
|
|
array_length=array_length,
|
|
|
|
array_slice_length=array_slice_length,
|
2020-05-09 14:13:47 +03:00
|
|
|
connection_type=partial(connection_adapter, connection),
|
2017-05-20 02:33:00 +03:00
|
|
|
edge_type=connection.Edge,
|
2020-05-09 14:13:47 +03:00
|
|
|
page_info_type=page_info_adapter,
|
2017-05-20 02:33:00 +03:00
|
|
|
)
|
|
|
|
connection.iterable = iterable
|
2022-09-06 15:00:13 +03:00
|
|
|
connection.length = array_length
|
2017-05-20 02:33:00 +03:00
|
|
|
return connection
|
|
|
|
|
2017-04-15 11:00:02 +03:00
|
|
|
@classmethod
|
2018-07-20 02:51:33 +03:00
|
|
|
def connection_resolver(
|
|
|
|
cls,
|
|
|
|
resolver,
|
|
|
|
connection,
|
|
|
|
default_manager,
|
2019-11-28 13:49:37 +03:00
|
|
|
queryset_resolver,
|
2018-07-20 02:51:33 +03:00
|
|
|
max_limit,
|
|
|
|
enforce_first_or_last,
|
|
|
|
root,
|
|
|
|
info,
|
2023-10-25 11:33:00 +03:00
|
|
|
**args,
|
2018-07-20 02:51:33 +03:00
|
|
|
):
|
|
|
|
first = args.get("first")
|
|
|
|
last = args.get("last")
|
2020-12-31 02:37:57 +03:00
|
|
|
offset = args.get("offset")
|
|
|
|
before = args.get("before")
|
2017-04-15 12:09:05 +03:00
|
|
|
|
|
|
|
if enforce_first_or_last:
|
|
|
|
assert first or last, (
|
2018-07-20 02:51:33 +03:00
|
|
|
"You must provide a `first` or `last` value to properly paginate the `{}` connection."
|
2017-04-15 12:09:05 +03:00
|
|
|
).format(info.field_name)
|
|
|
|
|
|
|
|
if max_limit:
|
|
|
|
if first:
|
|
|
|
assert first <= max_limit, (
|
2018-07-20 02:51:33 +03:00
|
|
|
"Requesting {} records on the `{}` connection exceeds the `first` limit of {} records."
|
2017-04-15 12:09:05 +03:00
|
|
|
).format(first, info.field_name, max_limit)
|
2018-07-20 02:51:33 +03:00
|
|
|
args["first"] = min(first, max_limit)
|
2017-04-15 12:09:05 +03:00
|
|
|
|
|
|
|
if last:
|
|
|
|
assert last <= max_limit, (
|
2018-07-20 02:51:33 +03:00
|
|
|
"Requesting {} records on the `{}` connection exceeds the `last` limit of {} records."
|
2017-12-12 20:24:11 +03:00
|
|
|
).format(last, info.field_name, max_limit)
|
2018-07-20 02:51:33 +03:00
|
|
|
args["last"] = min(last, max_limit)
|
2017-04-15 12:09:05 +03:00
|
|
|
|
2020-12-31 02:37:57 +03:00
|
|
|
if offset is not None:
|
|
|
|
assert before is None, (
|
|
|
|
"You can't provide a `before` value at the same time as an `offset` value to properly paginate the `{}` connection."
|
|
|
|
).format(info.field_name)
|
|
|
|
|
2019-11-28 13:49:37 +03:00
|
|
|
# eventually leads to DjangoObjectType's get_queryset (accepts queryset)
|
|
|
|
# or a resolve_foo (does not accept queryset)
|
2017-07-28 19:43:27 +03:00
|
|
|
iterable = resolver(root, info, **args)
|
2019-11-28 13:49:37 +03:00
|
|
|
if iterable is None:
|
|
|
|
iterable = default_manager
|
|
|
|
# thus the iterable gets refiltered by resolve_queryset
|
|
|
|
# but iterable might be promise
|
|
|
|
iterable = queryset_resolver(connection, iterable, info, args)
|
2020-06-06 21:00:21 +03:00
|
|
|
on_resolve = partial(
|
|
|
|
cls.resolve_connection, connection, args, max_limit=max_limit
|
|
|
|
)
|
2017-05-20 02:33:00 +03:00
|
|
|
|
|
|
|
if Promise.is_thenable(iterable):
|
|
|
|
return Promise.resolve(iterable).then(on_resolve)
|
|
|
|
|
|
|
|
return on_resolve(iterable)
|
2016-09-18 02:29:00 +03:00
|
|
|
|
2020-08-06 22:44:33 +03:00
|
|
|
def wrap_resolve(self, parent_resolver):
|
2017-07-28 19:43:27 +03:00
|
|
|
return partial(
|
2017-04-15 12:09:05 +03:00
|
|
|
self.connection_resolver,
|
|
|
|
parent_resolver,
|
2019-03-30 21:38:20 +03:00
|
|
|
self.connection_type,
|
2017-04-15 12:09:05 +03:00
|
|
|
self.get_manager(),
|
2019-11-28 13:49:37 +03:00
|
|
|
self.get_queryset_resolver(),
|
2017-04-15 12:09:05 +03:00
|
|
|
self.max_limit,
|
2018-07-20 02:51:33 +03:00
|
|
|
self.enforce_first_or_last,
|
2017-07-28 19:43:27 +03:00
|
|
|
)
|
2019-11-28 13:49:37 +03:00
|
|
|
|
|
|
|
def get_queryset_resolver(self):
|
|
|
|
return self.resolve_queryset
|