mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-07-10 16:22:20 +03:00
Merge e2638408b1
into 36cf100e8b
This commit is contained in:
commit
d0b8c97cdc
4
Makefile
4
Makefile
|
@ -12,6 +12,10 @@ dev-setup:
|
|||
tests:
|
||||
PYTHONPATH=. pytest graphene_django --cov=graphene_django -vv
|
||||
|
||||
.PHONY: tests-repeat ## Run unit tests 100 times to possibly identify flaky unit tests (and run them in parallel)
|
||||
tests-repeat:
|
||||
PYTHONPATH=. pytest graphene_django --cov=graphene_django -vv --count 100 -n logical
|
||||
|
||||
.PHONY: format ## Format code
|
||||
format:
|
||||
ruff format graphene_django examples setup.py
|
||||
|
|
|
@ -31,14 +31,14 @@ def initialize():
|
|||
falcon = Ship(id="4", name="Millennium Falcon", faction=rebels)
|
||||
falcon.save()
|
||||
|
||||
homeOne = Ship(id="5", name="Home One", faction=rebels)
|
||||
homeOne.save()
|
||||
home_one = Ship(id="5", name="Home One", faction=rebels)
|
||||
home_one.save()
|
||||
|
||||
tieFighter = Ship(id="6", name="TIE Fighter", faction=empire)
|
||||
tieFighter.save()
|
||||
tie_fighter = Ship(id="6", name="TIE Fighter", faction=empire)
|
||||
tie_fighter.save()
|
||||
|
||||
tieInterceptor = Ship(id="7", name="TIE Interceptor", faction=empire)
|
||||
tieInterceptor.save()
|
||||
tie_interceptor = Ship(id="7", name="TIE Interceptor", faction=empire)
|
||||
tie_interceptor.save()
|
||||
|
||||
executor = Ship(id="8", name="Executor", faction=empire)
|
||||
executor.save()
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
from django.db import connections
|
||||
|
||||
from .exception.formating import wrap_exception
|
||||
from .exception.formatting import wrap_exception
|
||||
from .sql.tracking import unwrap_cursor, wrap_cursor
|
||||
from .types import DjangoDebug
|
||||
|
||||
|
|
|
@ -8,19 +8,102 @@ from .filters import ListFilter, RangeFilter, TypedFilter
|
|||
from .filterset import custom_filterset_factory, setup_filterset
|
||||
|
||||
|
||||
def get_field_type(registry, model, field_name):
|
||||
def get_field_type_from_registry(registry, model, field_name):
|
||||
"""
|
||||
Try to get a model field corresponding Graphql type from the DjangoObjectType.
|
||||
Try to get a model field corresponding GraphQL type from the DjangoObjectType.
|
||||
"""
|
||||
object_type = registry.get_type_for_model(model)
|
||||
if object_type:
|
||||
if not object_type:
|
||||
return None
|
||||
|
||||
object_type_field = object_type._meta.fields.get(field_name)
|
||||
if object_type_field:
|
||||
if not object_type_field:
|
||||
return None
|
||||
|
||||
field_type = object_type_field.type
|
||||
if isinstance(field_type, graphene.NonNull):
|
||||
field_type = field_type.of_type
|
||||
return field_type
|
||||
return None
|
||||
|
||||
|
||||
def get_field_type_from_model_field(model_field, form_field, registry):
|
||||
"""
|
||||
Get the field type from the model field.
|
||||
|
||||
If the model field is a foreign key, then we need to get the type from the related model.
|
||||
"""
|
||||
if (
|
||||
isinstance(form_field, forms.ModelChoiceField)
|
||||
or isinstance(form_field, forms.ModelMultipleChoiceField)
|
||||
or isinstance(form_field, GlobalIDMultipleChoiceField)
|
||||
or isinstance(form_field, GlobalIDFormField)
|
||||
):
|
||||
# Foreign key have dynamic types and filtering on a foreign key actually means filtering on its ID.
|
||||
return get_field_type_from_registry(registry, model_field.related_model, "id")
|
||||
|
||||
return get_field_type_from_registry(registry, model_field.model, model_field.name)
|
||||
|
||||
|
||||
def get_form_field(model_field, filter_field, required):
|
||||
"""
|
||||
Retrieve the form field to use for the filter.
|
||||
|
||||
Get the form field either from:
|
||||
# 1. the formfield corresponding to the model field
|
||||
# 2. the field defined on filter
|
||||
|
||||
Returns None if no form field can be found.
|
||||
"""
|
||||
form_field = None
|
||||
if hasattr(model_field, "formfield"):
|
||||
form_field = model_field.formfield(required=required)
|
||||
if not form_field:
|
||||
form_field = filter_field.field
|
||||
return form_field
|
||||
|
||||
|
||||
def get_field_type_and_form_field_for_implicit_filter(
|
||||
model, filter_type, filter_field, registry, required
|
||||
):
|
||||
"""
|
||||
Get the filter type for filters that are not explicitly declared.
|
||||
|
||||
Returns a tuple of (field_type, form_field) where:
|
||||
- field_type is the type of the filter argument
|
||||
- form_field is the form field to use to validate the input value
|
||||
"""
|
||||
if filter_type == "isnull":
|
||||
# Filter type is boolean, no form field.
|
||||
return (graphene.Boolean, None)
|
||||
|
||||
model_field = get_model_field(model, filter_field.field_name)
|
||||
form_field = get_form_field(model_field, filter_field, required)
|
||||
|
||||
# First try to get the matching field type from the GraphQL DjangoObjectType
|
||||
if model_field:
|
||||
field_type = get_field_type_from_model_field(model_field, form_field, registry)
|
||||
return (field_type, form_field)
|
||||
|
||||
return (None, None)
|
||||
|
||||
|
||||
def get_field_type_for_explicit_filter(filter_field, form_field):
|
||||
"""
|
||||
Fallback on converting the form field either because:
|
||||
- it's an explicitly declared filters
|
||||
- we did not manage to get the type from the model type
|
||||
"""
|
||||
from ..forms.converter import convert_form_field
|
||||
|
||||
form_field = form_field or filter_field.field
|
||||
return convert_form_field(form_field).get_type()
|
||||
|
||||
|
||||
def is_filter_list_or_range(filter_field):
|
||||
"""
|
||||
Determine if the filter is a ListFilter or RangeFilter.
|
||||
"""
|
||||
return isinstance(filter_field, ListFilter) or isinstance(filter_field, RangeFilter)
|
||||
|
||||
|
||||
def get_filtering_args_from_filterset(filterset_class, type):
|
||||
|
@ -28,7 +111,6 @@ def get_filtering_args_from_filterset(filterset_class, type):
|
|||
Inspect a FilterSet and produce the arguments to pass to a Graphene Field.
|
||||
These arguments will be available to filter against in the GraphQL API.
|
||||
"""
|
||||
from ..forms.converter import convert_form_field
|
||||
|
||||
args = {}
|
||||
model = filterset_class._meta.model
|
||||
|
@ -49,49 +131,21 @@ def get_filtering_args_from_filterset(filterset_class, type):
|
|||
if name not in filterset_class.declared_filters or isinstance(
|
||||
filter_field, TypedFilter
|
||||
):
|
||||
# Get the filter field for filters that are no explicitly declared.
|
||||
if filter_type == "isnull":
|
||||
field_type = graphene.Boolean
|
||||
else:
|
||||
model_field = get_model_field(model, filter_field.field_name)
|
||||
|
||||
# Get the form field either from:
|
||||
# 1. the formfield corresponding to the model field
|
||||
# 2. the field defined on filter
|
||||
if hasattr(model_field, "formfield"):
|
||||
form_field = model_field.formfield(required=required)
|
||||
if not form_field:
|
||||
form_field = filter_field.field
|
||||
|
||||
# First try to get the matching field type from the GraphQL DjangoObjectType
|
||||
if model_field:
|
||||
if (
|
||||
isinstance(form_field, forms.ModelChoiceField)
|
||||
or isinstance(form_field, forms.ModelMultipleChoiceField)
|
||||
or isinstance(form_field, GlobalIDMultipleChoiceField)
|
||||
or isinstance(form_field, GlobalIDFormField)
|
||||
):
|
||||
# Foreign key have dynamic types and filtering on a foreign key actually means filtering on its ID.
|
||||
field_type = get_field_type(
|
||||
registry, model_field.related_model, "id"
|
||||
)
|
||||
else:
|
||||
field_type = get_field_type(
|
||||
registry, model_field.model, model_field.name
|
||||
(
|
||||
field_type,
|
||||
form_field,
|
||||
) = get_field_type_and_form_field_for_implicit_filter(
|
||||
model, filter_type, filter_field, registry, required
|
||||
)
|
||||
|
||||
if not field_type:
|
||||
# Fallback on converting the form field either because:
|
||||
# - it's an explicitly declared filters
|
||||
# - we did not manage to get the type from the model type
|
||||
form_field = form_field or filter_field.field
|
||||
field_type = convert_form_field(form_field).get_type()
|
||||
field_type = get_field_type_for_explicit_filter(
|
||||
filter_field, form_field
|
||||
)
|
||||
|
||||
if isinstance(filter_field, ListFilter) or isinstance(
|
||||
filter_field, RangeFilter
|
||||
):
|
||||
# Replace InFilter/RangeFilter filters (`in`, `range`) argument type to be a list of
|
||||
# the same type as the field. See comments in `replace_csv_filters` method for more details.
|
||||
if is_filter_list_or_range(filter_field):
|
||||
field_type = graphene.List(field_type)
|
||||
|
||||
args[name] = graphene.Argument(
|
||||
|
|
|
@ -30,7 +30,7 @@ class ArticleConnection(Connection):
|
|||
|
||||
test = String()
|
||||
|
||||
def resolve_test():
|
||||
def resolve_test(self):
|
||||
return "test"
|
||||
|
||||
class Meta:
|
||||
|
|
|
@ -62,10 +62,7 @@ def construct_fields(
|
|||
return fields
|
||||
|
||||
|
||||
def validate_fields(type_, model, fields, only_fields, exclude_fields):
|
||||
# Validate the given fields against the model's fields and custom fields
|
||||
all_field_names = set(fields.keys())
|
||||
only_fields = only_fields if only_fields is not ALL_FIELDS else ()
|
||||
def validate_only_fields(only_fields, all_field_names, model, type_):
|
||||
for name in only_fields or ():
|
||||
if name in all_field_names:
|
||||
continue
|
||||
|
@ -83,8 +80,8 @@ def validate_fields(type_, model, fields, only_fields, exclude_fields):
|
|||
type_=type_,
|
||||
)
|
||||
)
|
||||
continue
|
||||
|
||||
else:
|
||||
warnings.warn(
|
||||
(
|
||||
'Field name "{field_name}" doesn\'t exist on Django model "{app_label}.{object_name}". '
|
||||
|
@ -97,6 +94,8 @@ def validate_fields(type_, model, fields, only_fields, exclude_fields):
|
|||
)
|
||||
)
|
||||
|
||||
|
||||
def validate_exclude_fields(exclude_fields, all_field_names, model, type_):
|
||||
# Validate exclude fields
|
||||
for name in exclude_fields or ():
|
||||
if name in all_field_names:
|
||||
|
@ -105,7 +104,8 @@ def validate_fields(type_, model, fields, only_fields, exclude_fields):
|
|||
f'Excluding the custom field "{name}" on DjangoObjectType "{type_}" has no effect. '
|
||||
'Either remove the custom field or remove the field from the "exclude" list.'
|
||||
)
|
||||
else:
|
||||
continue
|
||||
|
||||
if not hasattr(model, name):
|
||||
warnings.warn(
|
||||
(
|
||||
|
@ -120,6 +120,15 @@ def validate_fields(type_, model, fields, only_fields, exclude_fields):
|
|||
)
|
||||
|
||||
|
||||
def validate_fields(type_, model, fields, only_fields, exclude_fields):
|
||||
# Validate the given fields against the model's fields and custom fields
|
||||
all_field_names = set(fields.keys())
|
||||
only_fields = only_fields if only_fields is not ALL_FIELDS else ()
|
||||
|
||||
validate_only_fields(only_fields, all_field_names, model, type_)
|
||||
validate_exclude_fields(exclude_fields, all_field_names, model, type_)
|
||||
|
||||
|
||||
class DjangoObjectTypeOptions(ObjectTypeOptions):
|
||||
model = None # type: Type[Model]
|
||||
registry = None # type: Registry
|
||||
|
|
|
@ -135,7 +135,7 @@ class GraphQLTestMixin:
|
|||
)
|
||||
self.client = client
|
||||
|
||||
def assertResponseNoErrors(self, resp, msg=None):
|
||||
def assert_response_no_errors(self, resp, msg=None):
|
||||
"""
|
||||
Assert that the call went through correctly. 200 means the syntax is ok, if there are no `errors`,
|
||||
the call was fine.
|
||||
|
@ -145,7 +145,7 @@ class GraphQLTestMixin:
|
|||
self.assertEqual(resp.status_code, 200, msg or content)
|
||||
self.assertNotIn("errors", list(content.keys()), msg or content)
|
||||
|
||||
def assertResponseHasErrors(self, resp, msg=None):
|
||||
def assert_response_has_errors(self, resp, msg=None):
|
||||
"""
|
||||
Assert that the call was failing. Take care: Even with errors, GraphQL returns status 200!
|
||||
:resp HttpResponse: Response
|
||||
|
|
|
@ -103,16 +103,15 @@ class GraphQLView(View):
|
|||
):
|
||||
if not schema:
|
||||
schema = graphene_settings.SCHEMA
|
||||
self.schema = schema or self.schema
|
||||
|
||||
if middleware is None:
|
||||
middleware = graphene_settings.MIDDLEWARE
|
||||
|
||||
self.schema = schema or self.schema
|
||||
if middleware is not None:
|
||||
if isinstance(middleware, MiddlewareManager):
|
||||
self.middleware = middleware
|
||||
else:
|
||||
self.middleware = list(instantiate_middleware(middleware))
|
||||
|
||||
self.root_value = root_value
|
||||
self.pretty = pretty or self.pretty
|
||||
self.graphiql = graphiql or self.graphiql
|
||||
|
@ -287,6 +286,25 @@ class GraphQLView(View):
|
|||
|
||||
return {}
|
||||
|
||||
def validate_query_request_type(
|
||||
self, request, document, operation_name, show_graphiql
|
||||
):
|
||||
if request.method.lower() == "get":
|
||||
operation_ast = get_operation_ast(document, operation_name)
|
||||
if (
|
||||
operation_ast
|
||||
and operation_ast.operation != OperationType.QUERY
|
||||
and not show_graphiql
|
||||
):
|
||||
raise HttpError(
|
||||
HttpResponseNotAllowed(
|
||||
["POST"],
|
||||
"Can only perform a {} operation from a POST request.".format(
|
||||
operation_ast.operation.value
|
||||
),
|
||||
)
|
||||
)
|
||||
|
||||
def execute_graphql_request(
|
||||
self, request, data, query, variables, operation_name, show_graphiql=False
|
||||
):
|
||||
|
@ -300,20 +318,12 @@ class GraphQLView(View):
|
|||
except Exception as e:
|
||||
return ExecutionResult(errors=[e])
|
||||
|
||||
if request.method.lower() == "get":
|
||||
operation_ast = get_operation_ast(document, operation_name)
|
||||
if operation_ast and operation_ast.operation != OperationType.QUERY:
|
||||
self.validate_query_request_type(
|
||||
request, document, operation_name, show_graphiql
|
||||
)
|
||||
if show_graphiql:
|
||||
return None
|
||||
|
||||
raise HttpError(
|
||||
HttpResponseNotAllowed(
|
||||
["POST"],
|
||||
"Can only perform a {} operation from a POST request.".format(
|
||||
operation_ast.operation.value
|
||||
),
|
||||
)
|
||||
)
|
||||
try:
|
||||
extra_options = {}
|
||||
if self.execution_context_class:
|
||||
|
@ -330,14 +340,7 @@ class GraphQLView(View):
|
|||
options.update(extra_options)
|
||||
|
||||
operation_ast = get_operation_ast(document, operation_name)
|
||||
if (
|
||||
operation_ast
|
||||
and operation_ast.operation == OperationType.MUTATION
|
||||
and (
|
||||
graphene_settings.ATOMIC_MUTATIONS is True
|
||||
or connection.settings_dict.get("ATOMIC_MUTATIONS", False) is True
|
||||
)
|
||||
):
|
||||
if self.is_atomic_mutation_enabled(operation_ast, connection):
|
||||
with transaction.atomic():
|
||||
result = self.schema.execute(**options)
|
||||
if getattr(request, MUTATION_ERRORS_FLAG, False) is True:
|
||||
|
@ -402,3 +405,14 @@ class GraphQLView(View):
|
|||
meta = request.META
|
||||
content_type = meta.get("CONTENT_TYPE", meta.get("HTTP_CONTENT_TYPE", ""))
|
||||
return content_type.split(";", 1)[0].lower()
|
||||
|
||||
@staticmethod
|
||||
def is_atomic_mutation_enabled(operation_ast, connection):
|
||||
return (
|
||||
operation_ast
|
||||
and operation_ast.operation == OperationType.MUTATION
|
||||
and (
|
||||
graphene_settings.ATOMIC_MUTATIONS is True
|
||||
or connection.settings_dict.get("ATOMIC_MUTATIONS", False) is True
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user