Skip to content
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

Ensure we allow application/problem+json as a valid Accept header value in v2 #1206

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

coderbydesign
Copy link
Contributor

Link(s) to Jira

  • RHCLOUD-35321

Description of Intent of Change(s)

Since we are starting to use application/problem+json as a response content type in v2 APIs [1], we need RBAC/Django to accept this as a valid Accept header value, given clients built off the API spec will be sending this.

Currently, if you send a request to /api/rbac/v2/workspaces/<uuid>/ -XDELETE -H 'Accept: application/problem+json' which is what a client built off the spec will do (with the Accept header), you'll get an error from RBAC: "Not acceptable 406".

We do set the correct content-type to align with the spec [2], however Django complains becasue it can't find the application/problem+json renderer.

This implements a custom renderer in Django Rest Framework [3] on the v2 views, specifically workspaces now, specifying it in the renderer_classes of the view, and setting the media_type (used to match the Accept value(s) to a renderer) and format (response) properties accordingly.

The DELETE test was modified prior to this change to add Accept: application/problem+json to confirm it failed (it did), and now succeeds with the changes in place.

[1] [https://github.com/RedHatInsights/insights-rbac/blob/master/docs/source/specs/v2/openapi.v2.yaml]
[2] https://github.com/RedHatInsights/insights-rbac/blob/master/rbac/api/common/exception_handler.py#L93
[3] [https://www.django-rest-framework.org/api-guide/renderers/#custom-renderers]

Local Testing

To exploit the bug on main, which also presents through a generated API client, send the following request:

curl http://localhost:8000/api/rbac/v2/workspaces/<uuid>/ -XDELETE -H 'Accept: application/problem+json'

You'll see a 406 response. Now check this branch out and run the same curl. You should also see application/json, application/problem+json accordingly, depending on success/failure of the requests.

Checklist

  • if API spec changes are required, is the spec updated?
  • are there any pre/post merge actions required? if so, document here.
  • are theses changes covered by unit tests?
  • if warranted, are documentation changes accounted for?
  • does this require migration changes?
    • if yes, are they backwards compatible?
  • is there known, direct impact to dependent teams/components?
    • if yes, how will this be handled?

Secure Coding Practices Checklist Link

Secure Coding Practices Checklist

  • Input Validation
  • Output Encoding
  • Authentication and Password Management
  • Session Management
  • Access Control
  • Cryptographic Practices
  • Error Handling and Logging
  • Data Protection
  • Communication Security
  • System Configuration
  • Database Security
  • File Management
  • Memory Management
  • General Coding Practices

… value in v2

Ticket: RHCLOUD-35321

Since we are starting to use `application/problem+json` as a response content type
in v2 APIs [1], we need RBAC/Django to accept this as a valid `Accept` header value,
given clients built off the API spec will be sending this.

Currently, if you send a request to `/api/rbac/v2/workspaces/<uuid>/ -XDELETE -H 'Accept: application/problem+json'`
which is what a client built off the spec will do (with the `Accept` header),
you'll get an error from RBAC: "Not acceptable 406".

We _do_ set the correct `content-type` to align with the spec [2], however Django
complains becasue it can't find the `application/problem+json` renderer.

This implements a custom renderer in Django Rest Framework [3] on the v2 views,
specifically workspaces now, specifying it in the `renderer_classes` of the view,
and setting the `media_type` (used to match the `Accept` value(s) to a renderer)
and `format` (response) properties accordingly.

The `DELETE` test was modified prior to this change to add `Accept: application/problem+json`
to confirm it failed (it did), and now succeeds with the changes in place.

[1] [https://github.com/RedHatInsights/insights-rbac/blob/master/docs/source/specs/v2/openapi.v2.yaml]
[2] https://github.com/RedHatInsights/insights-rbac/blob/master/rbac/api/common/exception_handler.py#L93
[3] [https://www.django-rest-framework.org/api-guide/renderers/#custom-renderers]
@@ -50,6 +52,7 @@ class WorkspaceViewSet(
queryset = Workspace.objects.annotate()
lookup_field = "uuid"
serializer_class = WorkspaceSerializer
renderer_classes = api_settings.DEFAULT_RENDERER_CLASSES + [ProblemJSONRenderer]
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This ensures we pull in the default JSON renderer and just add the custom problem renderer. We'll need to do this for each v2 view, or design a better way to inherit from a v2 viewset, have middleware plug this in based on path, etc. I figured this was probably the easiest for now, and we can revisit if folks think we should refactor when we introduce more views.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Look to see if we can have a v2 viewset to inherit from.

@@ -410,9 +426,12 @@ def test_delete_workspace(self):

url = reverse("workspace-detail", kwargs={"uuid": workspace.uuid})
client = APIClient()
response = client.delete(url, None, format="json", **self.headers)
test_headers = self.headers.copy()
test_headers["HTTP_ACCEPT"] = "application/problem+json"
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Look at adding a v2 identity request which inherits from v1 to add headers.

Copy link
Collaborator

Choose a reason for hiding this comment

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

One interesting thing about this I guess is that the headers are dependent on the request. So like if we added both accept media types unconditionally, I guess we wouldn't have reproduced the bug.

I wonder if we should try and use the generated client in the tests somehow? (If so this is very likely a future reliability topic I guess)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@alechenninger yeah, good point.

that's actually something I've brought up in the past for PR check/IQE tests, around potentially building clients on PR changes and having a small suite that would test client changes based on spec changes and run through some tests.

Copy link
Contributor

@vbelchio vbelchio left a comment

Choose a reason for hiding this comment

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

LGTM
QE: Passed

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