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

163 lines
5.8 KiB
Markdown
Raw Normal View History

2012-09-09 01:06:13 +04:00
<a class="github" href="parsers.py"></a>
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
>
> &mdash; 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 either `request.DATA` or `request.FILES` 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.
## 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 requests with `YAML` content.
2012-10-15 01:43:07 +04:00
REST_FRAMEWORK = {
'DEFAULT_PARSER_CLASSES': (
2012-10-15 01:43:07 +04:00
'rest_framework.parsers.YAMLParser',
)
}
You can also set the renderers used for an individual view, using the `APIView` class based views.
class ExampleView(APIView):
"""
A view that can accept POST requests with YAML content.
"""
parser_classes = (YAMLParser,)
def post(self, request, format=None):
return Response({'received data': request.DATA})
Or, if you're using the `@api_view` decorator with function based views.
2012-10-29 12:07:42 +04:00
@api_view(['POST'])
2012-10-15 01:43:07 +04:00
@parser_classes((YAMLParser,))
def example_view(request, format=None):
"""
A view that can accept POST requests with YAML content.
"""
return Response({'received data': request.DATA})
---
# 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
## YAMLParser
2012-10-15 01:43:07 +04:00
Parses `YAML` request content.
**.media_type**: `application/yaml`
2012-09-27 00:47:19 +04:00
## XMLParser
2012-10-15 01:43:07 +04:00
Parses REST framework's default style of `XML` request content.
2012-10-21 18:34:07 +04:00
Note that the `XML` markup language is typically used as the base language for more strictly defined domain-specific languages, such as `RSS`, `Atom`, and `XHTML`.
2012-10-15 01:43:07 +04:00
If you are considering using `XML` for your API, you may want to consider implementing a custom renderer and parser for your specific requirements, and using an existing domain-specific media-type, or creating your own custom XML-based media-type.
**.media_type**: `application/xml`
2012-09-27 00:47:19 +04:00
## FormParser
2012-10-15 01:43:07 +04:00
Parses HTML form content. `request.DATA` will be populated with a `QueryDict` of data, `request.FILES` will be populated with an empty `QueryDict` of data.
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
2012-10-15 01:43:07 +04:00
Parses multipart HTML form content, which supports file uploads. Both `request.DATA` and `request.FILES` will be populated with a `QueryDict`.
You will typically want to use both `FormParser` and `MultiPartParser` together in order to fully support HTML form data.
**.media_type**: `multipart/form-data`
---
# 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.
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
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):
"""
Plain text parser.
"""
media_type = 'text/plain'
def parse(self, stream, media_type=None, parser_context=None):
2012-10-15 01:43:07 +04:00
"""
Simply return a string representing the body of the request.
"""
return stream.read()
## Uploading file content
If your custom parser needs to support file uploads, you may return a `DataAndFiles` object from the `.parse()` method. `DataAndFiles` should be instantiated with two arguments. The first argument will be used to populate the `request.DATA` property, and the second argument will be used to populate the `request.FILES` property.
2012-10-15 01:43:07 +04:00
For example:
class SimpleFileUploadParser(BaseParser):
"""
A naive raw file upload parser.
"""
2012-11-09 00:43:15 +04:00
media_type = '*/*' # Accept anything
2012-10-15 01:43:07 +04:00
def parse(self, stream, media_type=None, parser_context=None):
2012-10-15 01:43:07 +04:00
content = stream.read()
name = 'example.dat'
content_type = 'application/octet-stream'
size = len(content)
charset = 'utf-8'
# Write a temporary file based on the request content
temp = tempfile.NamedTemporaryFile(delete=False)
temp.write(content)
uploaded = UploadedFile(temp, name, content_type, size, charset)
# Return the uploaded file
data = {}
files = {name: uploaded}
return DataAndFiles(data, files)
2012-09-27 00:47:19 +04:00
[cite]: https://groups.google.com/d/topic/django-developers/dxI4qVzrBY4/discussion