django-rest-framework/docs/api-guide/parsers.md

236 lines
8.8 KiB
Markdown
Raw Normal View History

source: parsers.py
2012-09-09 01:06:13 +04:00
2012-09-01 23:26:27 +04:00
# Parsers
2012-09-27 00:47:19 +04:00
> Machine interacting web services tend to use more
structured formats for sending data than form-encoded, since they're
sending more complex data than simple forms
>
> — Malcom Tredinnick, [Django developers group][cite]
2012-10-21 18:34:07 +04:00
REST framework includes a number of built in Parser classes, that allow you to accept requests with various media types. There is also support for defining your own custom parsers, which gives you the flexibility to design the media types that your API accepts.
2012-10-15 01:43:07 +04:00
## How the parser is determined
The set of valid parsers for a view is always defined as a list of classes. When `request.data` is accessed, REST framework will examine the `Content-Type` header on the incoming request, and determine which parser to use to parse the request content.
2012-10-15 01:43:07 +04:00
---
**Note**: When developing client applications always remember to make sure you're setting the `Content-Type` header when sending data in an HTTP request.
If you don't set the content type, most clients will default to using `'application/x-www-form-urlencoded'`, which may not be what you wanted.
As an example, if you are sending `json` encoded data using jQuery with the [.ajax() method][jquery-ajax], you should make sure to include the `contentType: 'application/json'` setting.
---
2012-10-15 01:43:07 +04:00
## Setting the parsers
The default set of parsers may be set globally, using the `DEFAULT_PARSER_CLASSES` setting. For example, the following settings would allow only requests with `JSON` content, instead of the default of JSON or form data.
2012-10-15 01:43:07 +04:00
REST_FRAMEWORK = {
'DEFAULT_PARSER_CLASSES': (
2014-11-29 21:43:05 +03:00
'rest_framework.parsers.JSONParser',
2012-10-15 01:43:07 +04:00
)
}
2013-08-22 19:40:12 +04:00
You can also set the parsers used for an individual view, or viewset,
using the `APIView` class-based views.
2012-10-15 01:43:07 +04:00
from rest_framework.parsers import JSONParser
from rest_framework.response import Response
from rest_framework.views import APIView
2012-10-15 01:43:07 +04:00
class ExampleView(APIView):
"""
2014-11-29 21:43:05 +03:00
A view that can accept POST requests with JSON content.
2012-10-15 01:43:07 +04:00
"""
2014-11-29 21:43:05 +03:00
parser_classes = (JSONParser,)
2012-10-15 01:43:07 +04:00
def post(self, request, format=None):
return Response({'received data': request.data})
2012-10-15 01:43:07 +04:00
Or, if you're using the `@api_view` decorator with function based views.
from rest_framework.decorators import api_view
from rest_framework.decorators import parser_classes
2012-10-15 01:43:07 +04:00
2012-10-29 12:07:42 +04:00
@api_view(['POST'])
2014-11-29 21:43:05 +03:00
@parser_classes((JSONParser,))
2012-10-15 01:43:07 +04:00
def example_view(request, format=None):
"""
2014-11-29 21:43:05 +03:00
A view that can accept POST requests with JSON content.
2012-10-15 01:43:07 +04:00
"""
return Response({'received data': request.data})
2012-10-15 01:43:07 +04:00
---
# API Reference
2012-09-27 00:47:19 +04:00
## JSONParser
2012-10-15 01:43:07 +04:00
Parses `JSON` request content.
**.media_type**: `application/json`
2012-09-27 00:47:19 +04:00
## FormParser
Parses HTML form content. `request.data` will be populated with a `QueryDict` of data.
2012-10-15 01:43:07 +04:00
You will typically want to use both `FormParser` and `MultiPartParser` together in order to fully support HTML form data.
**.media_type**: `application/x-www-form-urlencoded`
2012-09-27 00:47:19 +04:00
## MultiPartParser
Parses multipart HTML form content, which supports file uploads. Both `request.data` will be populated with a `QueryDict`.
2012-10-15 01:43:07 +04:00
You will typically want to use both `FormParser` and `MultiPartParser` together in order to fully support HTML form data.
**.media_type**: `multipart/form-data`
2013-05-04 16:04:48 +04:00
## FileUploadParser
Parses raw file upload content. The `request.data` property will be a dictionary with a single key `'file'` containing the uploaded file.
2013-05-04 16:04:48 +04:00
If the view used with `FileUploadParser` is called with a `filename` URL keyword argument, then that argument will be used as the filename.
If it is called without a `filename` URL keyword argument, then the client must set the filename in the `Content-Disposition` HTTP header. For example `Content-Disposition: attachment; filename=upload.jpg`.
2013-05-04 16:04:48 +04:00
2013-05-07 16:27:27 +04:00
**.media_type**: `*/*`
##### Notes:
2013-05-04 16:04:48 +04:00
2013-05-07 16:27:27 +04:00
* The `FileUploadParser` is for usage with native clients that can upload the file as a raw data request. For web-based uploads, or for native clients with multipart upload support, you should use the `MultiPartParser` parser instead.
* Since this parser's `media_type` matches any content type, `FileUploadParser` should generally be the only parser set on an API view.
2013-05-08 23:07:51 +04:00
* `FileUploadParser` respects Django's standard `FILE_UPLOAD_HANDLERS` setting, and the `request.upload_handlers` attribute. See the [Django documentation][upload-handlers] for more details.
2013-05-07 16:27:27 +04:00
##### Basic usage example:
2013-05-04 16:04:48 +04:00
# views.py
2013-05-04 16:04:48 +04:00
class FileUploadView(views.APIView):
parser_classes = (FileUploadParser,)
def put(self, request, filename, format=None):
file_obj = request.data['file']
2013-05-04 16:04:48 +04:00
# ...
2015-01-30 14:00:29 +03:00
# do some stuff with uploaded file
2013-05-04 16:04:48 +04:00
# ...
return Response(status=204)
# urls.py
urlpatterns = [
# ...
url(r'^upload/(?P<filename>[^/]+)$', FileUploadView.as_view())
]
2013-05-04 16:04:48 +04:00
2012-10-15 01:43:07 +04:00
---
# Custom parsers
2012-10-18 12:19:38 +04:00
To implement a custom parser, you should override `BaseParser`, set the `.media_type` property, and implement the `.parse(self, stream, media_type, parser_context)` method.
2012-10-15 01:43:07 +04:00
The method should return the data that will be used to populate the `request.data` property.
2012-10-15 01:43:07 +04:00
The arguments passed to `.parse()` are:
2012-10-15 16:27:50 +04:00
### stream
A stream-like object representing the body of the request.
### media_type
2012-10-18 12:19:38 +04:00
Optional. If provided, this is the media type of the incoming request content.
Depending on the request's `Content-Type:` header, this may be more specific than the renderer's `media_type` attribute, and may include media type parameters. For example `"text/plain; charset=utf-8"`.
2012-10-15 16:27:50 +04:00
### parser_context
Optional. If supplied, this argument will be a dictionary containing any additional context that may be required to parse the request content.
By default this will include the following keys: `view`, `request`, `args`, `kwargs`.
2012-10-15 16:27:50 +04:00
## Example
2014-11-29 21:50:51 +03:00
The following is an example plaintext parser that will populate the `request.data` property with a string representing the body of the request.
2012-10-15 01:43:07 +04:00
class PlainTextParser(BaseParser):
"""
2015-07-05 23:47:02 +03:00
Plain text parser.
2012-10-15 01:43:07 +04:00
"""
2015-07-05 23:47:02 +03:00
media_type = 'text/plain'
def parse(self, stream, media_type=None, parser_context=None):
"""
Simply return a string representing the body of the request.
"""
return stream.read()
2012-10-15 01:43:07 +04:00
---
# Third party packages
The following third party packages are also available.
## YAML
[REST framework YAML][rest-framework-yaml] provides [YAML][yaml] parsing and rendering support. It was previously included directly in the REST framework package, and is now instead supported as a third-party package.
#### Installation & configuration
Install using pip.
$ pip install djangorestframework-yaml
Modify your REST framework settings.
REST_FRAMEWORK = {
'DEFAULT_PARSER_CLASSES': (
'rest_framework_yaml.parsers.YAMLParser',
),
'DEFAULT_RENDERER_CLASSES': (
'rest_framework_yaml.renderers.YAMLRenderer',
),
}
## XML
[REST Framework XML][rest-framework-xml] provides a simple informal XML format. It was previously included directly in the REST framework package, and is now instead supported as a third-party package.
#### Installation & configuration
Install using pip.
$ pip install djangorestframework-xml
Modify your REST framework settings.
REST_FRAMEWORK = {
'DEFAULT_PARSER_CLASSES': (
'rest_framework_xml.parsers.XMLParser',
),
'DEFAULT_RENDERER_CLASSES': (
'rest_framework_xml.renderers.XMLRenderer',
),
}
## MessagePack
2013-01-14 21:38:45 +04:00
[MessagePack][messagepack] is a fast, efficient binary serialization format. [Juan Riaza][juanriaza] maintains the [djangorestframework-msgpack][djangorestframework-msgpack] package which provides MessagePack renderer and parser support for REST framework.
## CamelCase JSON
2013-12-21 21:18:25 +04:00
[djangorestframework-camel-case] provides camel case JSON renderers and parsers for REST framework. This allows serializers to use Python-style underscored field names, but be exposed in the API as Javascript-style camel case field names. It is maintained by [Vitaly Babiy][vbabiy].
[jquery-ajax]: http://api.jquery.com/jQuery.ajax/
2012-09-27 00:47:19 +04:00
[cite]: https://groups.google.com/d/topic/django-developers/dxI4qVzrBY4/discussion
2013-05-08 23:07:51 +04:00
[upload-handlers]: https://docs.djangoproject.com/en/dev/topics/http/file-uploads/#upload-handlers
[rest-framework-yaml]: http://jpadilla.github.io/django-rest-framework-yaml/
[rest-framework-xml]: http://jpadilla.github.io/django-rest-framework-xml/
[yaml]: http://www.yaml.org/
[messagepack]: https://github.com/juanriaza/django-rest-framework-msgpack
[juanriaza]: https://github.com/juanriaza
[vbabiy]: https://github.com/vbabiy
[djangorestframework-msgpack]: https://github.com/juanriaza/django-rest-framework-msgpack
[djangorestframework-camel-case]: https://github.com/vbabiy/djangorestframework-camel-case