Skip to content
This repository was archived by the owner on Dec 8, 2023. It is now read-only.

Adds pre_response_handlers to Endpoints for response manipulation #37

Merged
merged 1 commit into from
Oct 21, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions pale/endpoint.py
Original file line number Diff line number Diff line change
@@ -159,6 +159,17 @@ def _execute(self, request, **kwargs):
HTML or XML or whatever in the future).
The rendered JSON text is then returned as the response that should
be sent by your HTTP framework's routing handler.
*
*
``pre_response_handler``
The pre_response_handlers are sepcified by the Endpoint definition,
and enable manipulation of the response object before it is
returned to the client, but after the response is rendered.

Because these are instancemethods, they may share instance data
from `self` specified in the endpoint's `_handle` method.


"""
try:
self._create_context(request)
@@ -199,6 +210,11 @@ def _execute(self, request, **kwargs):
logging.exception(e)
raise e

if hasattr(self, '_pre_response_handlers') and \
isinstance(self._pre_response_handlers, (list, tuple)):
for handler in self._pre_response_handlers:
handler(self._context, self._context.response)

return self._context.response


7 changes: 7 additions & 0 deletions tests/example_app/api/endpoints.py
Original file line number Diff line number Diff line change
@@ -7,6 +7,11 @@
DateTimeRangeResource)


def add_cors_header(context, response):
"""Adds a CORs definition to the response header."""
response.headers['Access-Control-Allow-Origin'] = "*"


class CurrentTimeEndpoint(Endpoint):
"""An API endpoint to get the current time."""
_http_method = "GET"
@@ -18,6 +23,8 @@ class CurrentTimeEndpoint(Endpoint):
"server.",
fields=DateTimeResource._all_fields())

_pre_response_handlers = (add_cors_header, )

def _handle(self, context):
now = DateTimeModel(datetime.datetime.utcnow())
return {'time': now}
2 changes: 2 additions & 0 deletions tests/test_flask_adapter.py
Original file line number Diff line number Diff line change
@@ -29,6 +29,8 @@ def assertExpectedFields(self, returned_dict, expected_fields):
def test_successful_get_without_params(self):
resp = self.app.get('/api/time/current')
self.assertEqual(resp.status_code, 200)
self.assertIn("Access-Control-Allow-Origin", resp.headers)
self.assertEqual(resp.headers["Access-Control-Allow-Origin"], '*')

# the 'time' value was set in the endpoint handler
self.assertIn('time', resp.json_body)