Handles Content-Type & Accept header serialization and deserialization for you
Find a file
Dave Shawley ce54332cab Repackage sprockets.mixins.mediatype into a package.
Distributing a raw python module into a namespace package seems to be
somewhat unreliable though I haven't proven it yet...  In any case,
installing a package inside of a namespace package behaves itself.
2016-01-10 11:36:46 -05:00
docs Repackage sprockets.mixins.mediatype into a package. 2016-01-10 11:36:46 -05:00
requires Clean up documentation. 2015-08-20 07:12:26 -04:00
sprockets Repackage sprockets.mixins.mediatype into a package. 2016-01-10 11:36:46 -05:00
.gitignore Initial commit 2015-06-09 09:28:29 -04:00
.travis.yml Reset password. 2015-09-09 17:51:31 -04:00
examples.py Rename module from media_type -> mediatype. 2015-09-09 18:26:33 -04:00
LICENSE Initial commit 2015-06-09 09:28:29 -04:00
MANIFEST.in RST 2015-08-07 17:14:37 -04:00
README.rst Update README.rst 2015-09-09 18:53:12 -04:00
setup.cfg Update setup.cfg to include coverage 2015-06-09 10:29:35 -04:00
setup.py Repackage sprockets.mixins.mediatype into a package. 2016-01-10 11:36:46 -05:00
tests.py tests: Correct msgpack-related test. 2015-11-02 14:25:36 -05:00
tox.ini Fix Python 3 issues. 2015-08-26 15:29:48 -04:00

sprockets.mixins.mediatype
==========================
A mixin that performs Content-Type negotiation and request/response
(de)serialization.

|Documentation| |Build Badge| |Package Info|

This mix-in adds two methods to a ``tornado.web.RequestHandler`` instance:

- ``get_request_body() -> dict``: deserializes the request body according
  to the HTTP ``Content-Type`` header and returns the deserialized body.
- ``send_response(object)``: serializes the response into the content type
  requested by the ``Accept`` header.

Support for a content types is enabled by calling either the
``add_binary_content_type`` or ``add_text_content_type`` function with the
``tornado.web.Application`` instance, the content type, encoding and decoding
functions as parameters:

.. code-block:: python

   import json

   from sprockets.mixins import mediatype
   from tornado import web

   def make_application():
       application = web.Application([
           # insert your handlers here
       ])

       mediatype.add_text_content_type(application,
                                       'application/json', 'utf-8',
                                       json.dumps, json.loads)

       return application

The *add content type* functions will add a attribute to the ``Application``
instance that the mix-in uses to manipulate the request and response bodies.

.. code-block:: python

   from sprockets.mixins import mediatype
   from tornado import web

   class SomeHandler(mediatype.ContentMixin, web.RequestHandler):
       def get(self):
           self.send_response({'data': 'value'})
           self.finish()

       def post(self):
           body = self.get_request_body()
           # do whatever
           self.send_response({'action': 'performed'})
           self.finish()

Based on the settings stored in the ``Application`` instance and the HTTP
headers, the request and response data will be handled correctly or the
appropriate HTTP exceptions will be raised.

.. |Documentation| image:: https://readthedocs.org/projects/sprocketsmixinsmedia-type/badge/?version=latest
   :target: https://sprocketsmixinsmedia-type.readthedocs.org/
.. |Build Badge| image:: https://travis-ci.org/sprockets/sprockets.mixins.media_type.svg
   :target: https://travis-ci.org/sprockets/sprockets.mixins.media_type
.. |Package Info| image:: https://img.shields.io/pypi/v/sprockets.mixins.mediatype.svg
   :target: https://pypi.python.org/pypi/sprockets.mixins.mediatype