Skip to content

Added nested included serializer support for remapped relations #347

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged

Conversation

sliverc
Copy link
Member

@sliverc sliverc commented May 11, 2017

In ResourceRelatedField it is possible to rename/remap a field so it can be represented in the api with a different name using the source attribute. This works well however if I request to include this relationship in included it won't be returned.

I have added a test which should make it clearer what issue this PR addresses.

@mblayman
Copy link
Collaborator

Hey, @sliverc, this branch now has some conflicts because of the work you did on the flake8 branch. Could you fix that up and also add a CHANGELOG entry for this too? I'm not sure I'll have time to review this today, but I will get to it when I can. Thanks!

@sliverc sliverc force-pushed the bug_nested_included_serializers branch from 03f7943 to 2d0303b Compare May 11, 2017 14:59
@sliverc
Copy link
Member Author

sliverc commented May 11, 2017

@mblayman Solved merge conflicts and added CHANGELOG entry

@codecov-io
Copy link

codecov-io commented May 11, 2017

Codecov Report

Merging #347 into develop will increase coverage by 0.27%.
The diff coverage is 96.55%.

Impacted file tree graph

@@             Coverage Diff             @@
##           develop     #347      +/-   ##
===========================================
+ Coverage    76.86%   77.13%   +0.27%     
===========================================
  Files           50       50              
  Lines         6013     6036      +23     
===========================================
+ Hits          4622     4656      +34     
+ Misses        1391     1380      -11
Impacted Files Coverage Δ
example/tests/test_serializers.py 100% <ø> (ø) ⬆️
example/serializers.py 100% <100%> (ø) ⬆️
example/tests/integration/test_includes.py 100% <100%> (ø) ⬆️
rest_framework_json_api/renderers.py 64.02% <94.73%> (-0.05%) ⬇️
rest_framework_json_api/pagination.py 54.81% <0%> (-0.14%) ⬇️
example/models.py 66.95% <0%> (-0.13%) ⬇️
rest_framework_json_api/serializers.py 88.46% <0%> (ø) ⬆️
rest_framework_json_api/utils.py 90.61% <0%> (+0.81%) ⬆️
... and 1 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update dec89af...5023383. Read the comment docs.

@@ -273,6 +273,30 @@ def extract_relationships(cls, fields, resource, resource_instance):
return utils.format_keys(data)

@classmethod
def extract_relation_instance(cls, field_name, field, resource_instance, serializer):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you please add a docstring which provides a conceptual overview of what's going on here? I'm finding the four nested levels to be really intense. If you could use PEP 257 style, that would be great.

"""Extract ...

<relevant details that might help understand what's going on here>
"""

This many levels of exceptions makes me wonder if there might performance challenges here (because of the cost of going through the exception stack over and over). I don't think it's fair to ask you for a performance test so I'm mostly wondering "out loud" if this is too much exception handling as a way to do control flow. It does feel like a bit of a code smell. Maybe that's the cost of working with a spec that's so dynamic ¯\(ツ)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have added a docstring.

Considering the levels of exceptions I also think this is certainly not ideal but I cannot think of an alternative way to do it though.

For example calling getattr with default argument None wouldn't work, as an attribute could actually be None. Calling hasattr wouldn't make things better either as internally it also does a try-except (https://docs.python.org/3/library/functions.html#hasattr).
It could be argued whether the serializer method case is really needed but otherwise I guess we will need to live with it.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for thinking about it. The only alternative that I can think of is to have multiple returns. What do you think of something like the following:

         try:
             return getattr(resource_instance, field_name)
         except AttributeError:
             pass

         try:
             # For ManyRelatedFields if `related_name` is not set
             # we need to access `foo_set` from `source`
             return getattr(resource_instance, field.child_relation.source)
         except AttributeError:
             pass

        <and so on...>

Is that any "better?" Or is it worse? It would remove the deep nesting even if the logic is functionally the same.

@mblayman
Copy link
Collaborator

mblayman commented Jun 5, 2017

Thanks, @sliverc. I think this will work well. I appreciate the contribution and dialog.

@mblayman mblayman merged commit 9e395a2 into django-json-api:develop Jun 5, 2017
noslouch pushed a commit to nypublicradio/wnyc-web-client that referenced this pull request Jun 7, 2017
this is a split from the `Channel` model, while the server reconfigures
to conform to JSON:API and use DRF to manage its endpoints.

The key for `image` is different (was `logoImage`) due to a bug in the
JSON:API extension to DRF. Included nested serialized resources at
a different key than its source throws an error. There was an issue that
was closed that was supposed to fix it, but it didn't in my experience.

django-json-api/django-rest-framework-json-api#347
noslouch pushed a commit to nypublicradio/wnyc-web-client that referenced this pull request Jun 8, 2017
this is a split from the `Channel` model, while the server reconfigures
to conform to JSON:API and use DRF to manage its endpoints.

The key for `image` is different (was `logoImage`) due to a bug in the
JSON:API extension to DRF. Included nested serialized resources at
a different key than its source throws an error. There was an issue that
was closed that was supposed to fix it, but it didn't in my experience.

django-json-api/django-rest-framework-json-api#347
noslouch pushed a commit to nypublicradio/wnyc-web-client that referenced this pull request Jun 8, 2017
this is a split from the `Channel` model, while the server reconfigures
to conform to JSON:API and use DRF to manage its endpoints.

The key for `image` is different (was `logoImage`) due to a bug in the
JSON:API extension to DRF. Included nested serialized resources at
a different key than its source throws an error. There was an issue that
was closed that was supposed to fix it, but it didn't in my experience.

django-json-api/django-rest-framework-json-api#347
noslouch pushed a commit to nypublicradio/wqxr-web-client that referenced this pull request Jun 8, 2017
this is a split from the `Channel` model, while the server reconfigures
to conform to JSON:API and use DRF to manage its endpoints.

The key for `image` is different (was `logoImage`) due to a bug in the
JSON:API extension to DRF. Included nested serialized resources at
a different key than its source throws an error. There was an issue that
was closed that was supposed to fix it, but it didn't in my experience.

django-json-api/django-rest-framework-json-api#347
noslouch pushed a commit to nypublicradio/wqxr-web-client that referenced this pull request Jun 8, 2017
this is a split from the `Channel` model, while the server reconfigures
to conform to JSON:API and use DRF to manage its endpoints.

The key for `image` is different (was `logoImage`) due to a bug in the
JSON:API extension to DRF. Included nested serialized resources at
a different key than its source throws an error. There was an issue that
was closed that was supposed to fix it, but it didn't in my experience.

django-json-api/django-rest-framework-json-api#347
noslouch pushed a commit to nypublicradio/wnyc-web-client that referenced this pull request Jun 9, 2017
this is a split from the `Channel` model, while the server reconfigures
to conform to JSON:API and use DRF to manage its endpoints.

The key for `image` is different (was `logoImage`) due to a bug in the
JSON:API extension to DRF. Included nested serialized resources at
a different key than its source throws an error. There was an issue that
was closed that was supposed to fix it, but it didn't in my experience.

django-json-api/django-rest-framework-json-api#347
noslouch pushed a commit to nypublicradio/wqxr-web-client that referenced this pull request Jun 9, 2017
this is a split from the `Channel` model, while the server reconfigures
to conform to JSON:API and use DRF to manage its endpoints.

The key for `image` is different (was `logoImage`) due to a bug in the
JSON:API extension to DRF. Included nested serialized resources at
a different key than its source throws an error. There was an issue that
was closed that was supposed to fix it, but it didn't in my experience.

django-json-api/django-rest-framework-json-api#347
noslouch pushed a commit to nypublicradio/wqxr-web-client that referenced this pull request Jun 15, 2017
this is a split from the `Channel` model, while the server reconfigures
to conform to JSON:API and use DRF to manage its endpoints.

The key for `image` is different (was `logoImage`) due to a bug in the
JSON:API extension to DRF. Included nested serialized resources at
a different key than its source throws an error. There was an issue that
was closed that was supposed to fix it, but it didn't in my experience.

django-json-api/django-rest-framework-json-api#347
noslouch pushed a commit to nypublicradio/wnyc-web-client that referenced this pull request Jun 22, 2017
this is a split from the `Channel` model, while the server reconfigures
to conform to JSON:API and use DRF to manage its endpoints.

The key for `image` is different (was `logoImage`) due to a bug in the
JSON:API extension to DRF. Included nested serialized resources at
a different key than its source throws an error. There was an issue that
was closed that was supposed to fix it, but it didn't in my experience.

django-json-api/django-rest-framework-json-api#347
noslouch pushed a commit to nypublicradio/wnyc-web-client that referenced this pull request Jun 26, 2017
this is a split from the `Channel` model, while the server reconfigures
to conform to JSON:API and use DRF to manage its endpoints.

The key for `image` is different (was `logoImage`) due to a bug in the
JSON:API extension to DRF. Included nested serialized resources at
a different key than its source throws an error. There was an issue that
was closed that was supposed to fix it, but it didn't in my experience.

django-json-api/django-rest-framework-json-api#347
noslouch pushed a commit to nypublicradio/wnyc-web-client that referenced this pull request Jun 26, 2017
this is a split from the `Channel` model, while the server reconfigures
to conform to JSON:API and use DRF to manage its endpoints.

The key for `image` is different (was `logoImage`) due to a bug in the
JSON:API extension to DRF. Included nested serialized resources at
a different key than its source throws an error. There was an issue that
was closed that was supposed to fix it, but it didn't in my experience.

django-json-api/django-rest-framework-json-api#347
noslouch pushed a commit to nypublicradio/wqxr-web-client that referenced this pull request Jun 26, 2017
this is a split from the `Channel` model, while the server reconfigures
to conform to JSON:API and use DRF to manage its endpoints.

The key for `image` is different (was `logoImage`) due to a bug in the
JSON:API extension to DRF. Included nested serialized resources at
a different key than its source throws an error. There was an issue that
was closed that was supposed to fix it, but it didn't in my experience.

django-json-api/django-rest-framework-json-api#347
noslouch pushed a commit to nypublicradio/wnyc-web-client that referenced this pull request Jun 26, 2017
this is a split from the `Channel` model, while the server reconfigures
to conform to JSON:API and use DRF to manage its endpoints.

The key for `image` is different (was `logoImage`) due to a bug in the
JSON:API extension to DRF. Included nested serialized resources at
a different key than its source throws an error. There was an issue that
was closed that was supposed to fix it, but it didn't in my experience.

django-json-api/django-rest-framework-json-api#347
@sliverc sliverc deleted the bug_nested_included_serializers branch December 28, 2021 18:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants