2011-05-10 13:49:28 +04:00
|
|
|
"""
|
|
|
|
Django supports parsing the content of an HTTP request, but only for form POST requests.
|
|
|
|
That behavior is sufficient for dealing with standard HTML forms, but it doesn't map well
|
2011-04-02 19:32:37 +04:00
|
|
|
to general HTTP requests.
|
2011-03-04 13:28:20 +03:00
|
|
|
|
2011-04-02 19:32:37 +04:00
|
|
|
We need a method to be able to:
|
2011-03-04 13:28:20 +03:00
|
|
|
|
2011-04-02 19:32:37 +04:00
|
|
|
1) Determine the parsed content on a request for methods other than POST (eg typically also PUT)
|
|
|
|
2) Determine the parsed content on a request for media types other than application/x-www-form-urlencoded
|
|
|
|
and multipart/form-data. (eg also handle multipart/json)
|
|
|
|
"""
|
2011-04-25 07:50:28 +04:00
|
|
|
|
2011-05-10 13:49:28 +04:00
|
|
|
from django.http.multipartparser import MultiPartParser as DjangoMultiPartParser
|
|
|
|
from django.utils import simplejson as json
|
2011-02-19 13:47:26 +03:00
|
|
|
from djangorestframework import status
|
2011-04-25 07:50:28 +04:00
|
|
|
from djangorestframework.compat import parse_qs
|
2011-05-10 13:49:28 +04:00
|
|
|
from djangorestframework.response import ErrorResponse
|
|
|
|
from djangorestframework.utils import as_tuple
|
|
|
|
from djangorestframework.utils.mediatypes import media_type_matches
|
|
|
|
|
|
|
|
__all__ = (
|
|
|
|
'BaseParser',
|
|
|
|
'JSONParser',
|
|
|
|
'PlainTextParser',
|
|
|
|
'FormParser',
|
|
|
|
'MultiPartParser'
|
|
|
|
)
|
2011-02-07 11:23:54 +03:00
|
|
|
|
2011-01-24 02:08:16 +03:00
|
|
|
|
|
|
|
class BaseParser(object):
|
2011-05-10 13:49:28 +04:00
|
|
|
"""
|
|
|
|
All parsers should extend BaseParser, specifying a media_type attribute,
|
|
|
|
and overriding the parse() method.
|
|
|
|
"""
|
2011-01-26 23:31:47 +03:00
|
|
|
media_type = None
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-04-02 19:32:37 +04:00
|
|
|
def __init__(self, view):
|
|
|
|
"""
|
2011-05-10 13:49:28 +04:00
|
|
|
Initialize the parser with the ``View`` instance as state,
|
|
|
|
in case the parser needs to access any metadata on the ``View`` object.
|
2011-04-02 19:32:37 +04:00
|
|
|
"""
|
|
|
|
self.view = view
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-05-12 15:55:13 +04:00
|
|
|
def can_handle_request(self, content_type):
|
2011-04-02 19:32:37 +04:00
|
|
|
"""
|
2011-05-10 13:49:28 +04:00
|
|
|
Returns `True` if this parser is able to deal with the given media type.
|
|
|
|
|
|
|
|
The default implementation for this function is to check the ``media_type``
|
|
|
|
argument against the ``media_type`` attribute set on the class to see if
|
|
|
|
they match.
|
|
|
|
|
|
|
|
This may be overridden to provide for other behavior, but typically you'll
|
|
|
|
instead want to just set the ``media_type`` attribute on the class.
|
2011-04-02 19:32:37 +04:00
|
|
|
"""
|
2011-05-12 15:55:13 +04:00
|
|
|
return media_type_matches(content_type, self.media_type)
|
2011-04-02 19:32:37 +04:00
|
|
|
|
|
|
|
def parse(self, stream):
|
2011-05-10 13:49:28 +04:00
|
|
|
"""
|
|
|
|
Given a stream to read from, return the deserialized output.
|
2011-05-12 15:55:13 +04:00
|
|
|
Should return a 2-tuple of (data, files).
|
2011-05-10 13:49:28 +04:00
|
|
|
"""
|
2011-04-02 19:32:37 +04:00
|
|
|
raise NotImplementedError("BaseParser.parse() Must be overridden to be implemented.")
|
2011-01-24 02:08:16 +03:00
|
|
|
|
|
|
|
|
|
|
|
class JSONParser(BaseParser):
|
2011-05-10 13:49:28 +04:00
|
|
|
media_type = 'application/json'
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-04-02 19:32:37 +04:00
|
|
|
def parse(self, stream):
|
2011-01-24 02:08:16 +03:00
|
|
|
try:
|
2011-05-12 15:55:13 +04:00
|
|
|
return (json.load(stream), None)
|
2011-01-24 02:08:16 +03:00
|
|
|
except ValueError, exc:
|
2011-05-10 13:49:28 +04:00
|
|
|
raise ErrorResponse(status.HTTP_400_BAD_REQUEST,
|
|
|
|
{'detail': 'JSON parse error - %s' % unicode(exc)})
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-01-26 11:58:09 +03:00
|
|
|
|
2011-03-04 18:06:44 +03:00
|
|
|
class DataFlatener(object):
|
2011-05-10 13:49:28 +04:00
|
|
|
"""Utility object for flattening dictionaries of lists. Useful for "urlencoded" decoded data."""
|
2011-03-04 18:06:44 +03:00
|
|
|
|
|
|
|
def flatten_data(self, data):
|
2011-03-10 17:49:11 +03:00
|
|
|
"""Given a data dictionary {<key>: <value_list>}, returns a flattened dictionary
|
|
|
|
with information provided by the method "is_a_list"."""
|
2011-03-04 18:06:44 +03:00
|
|
|
flatdata = dict()
|
2011-03-11 15:34:39 +03:00
|
|
|
for key, val_list in data.items():
|
|
|
|
if self.is_a_list(key, val_list):
|
|
|
|
flatdata[key] = val_list
|
2011-03-04 18:06:44 +03:00
|
|
|
else:
|
2011-03-11 15:34:39 +03:00
|
|
|
if val_list:
|
|
|
|
flatdata[key] = val_list[0]
|
2011-03-04 18:06:44 +03:00
|
|
|
else:
|
2011-03-11 15:34:39 +03:00
|
|
|
# If the list is empty, but the parameter is not a list,
|
|
|
|
# we strip this parameter.
|
|
|
|
data.pop(key)
|
2011-03-04 18:06:44 +03:00
|
|
|
return flatdata
|
|
|
|
|
2011-03-11 15:34:39 +03:00
|
|
|
def is_a_list(self, key, val_list):
|
2011-03-10 17:49:11 +03:00
|
|
|
"""Returns True if the parameter with name *key* is expected to be a list, or False otherwise.
|
2011-03-11 15:34:39 +03:00
|
|
|
*val_list* which is the received value for parameter *key* can be used to guess the answer."""
|
2011-03-04 18:06:44 +03:00
|
|
|
return False
|
|
|
|
|
2011-04-02 19:32:37 +04:00
|
|
|
|
2011-04-11 14:54:26 +04:00
|
|
|
class PlainTextParser(BaseParser):
|
|
|
|
"""
|
|
|
|
Plain text parser.
|
|
|
|
|
2011-05-10 13:49:28 +04:00
|
|
|
Simply returns the content of the stream.
|
2011-04-11 14:54:26 +04:00
|
|
|
"""
|
2011-05-10 13:49:28 +04:00
|
|
|
media_type = 'text/plain'
|
2011-04-11 14:54:26 +04:00
|
|
|
|
|
|
|
def parse(self, stream):
|
2011-05-12 15:55:13 +04:00
|
|
|
return (stream.read(), None)
|
2011-04-11 14:54:26 +04:00
|
|
|
|
|
|
|
|
2011-03-04 18:06:44 +03:00
|
|
|
class FormParser(BaseParser, DataFlatener):
|
2011-05-13 12:59:36 +04:00
|
|
|
"""
|
|
|
|
The default parser for form data.
|
2011-01-24 02:08:16 +03:00
|
|
|
Return a dict containing a single value for each non-reserved parameter.
|
2011-03-10 17:49:11 +03:00
|
|
|
|
|
|
|
In order to handle select multiple (and having possibly more than a single value for each parameter),
|
2011-03-11 16:05:35 +03:00
|
|
|
you can customize the output by subclassing the method 'is_a_list'."""
|
2011-03-10 17:49:11 +03:00
|
|
|
|
2011-05-10 13:49:28 +04:00
|
|
|
media_type = 'application/x-www-form-urlencoded'
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-03-10 17:49:11 +03:00
|
|
|
"""The value of the parameter when the select multiple is empty.
|
|
|
|
Browsers are usually stripping the select multiple that have no option selected from the parameters sent.
|
|
|
|
A common hack to avoid this is to send the parameter with a value specifying that the list is empty.
|
2011-05-13 12:59:36 +04:00
|
|
|
This value will always be stripped before the data is returned.
|
|
|
|
"""
|
2011-03-10 17:49:11 +03:00
|
|
|
EMPTY_VALUE = '_empty'
|
2011-04-02 19:32:37 +04:00
|
|
|
RESERVED_FORM_PARAMS = ('csrfmiddlewaretoken',)
|
2011-03-04 18:23:18 +03:00
|
|
|
|
2011-04-02 19:32:37 +04:00
|
|
|
def parse(self, stream):
|
|
|
|
data = parse_qs(stream.read(), keep_blank_values=True)
|
2011-03-04 18:06:44 +03:00
|
|
|
|
2011-03-11 15:34:39 +03:00
|
|
|
# removing EMPTY_VALUEs from the lists and flatening the data
|
|
|
|
for key, val_list in data.items():
|
|
|
|
self.remove_empty_val(val_list)
|
2011-03-04 18:06:44 +03:00
|
|
|
data = self.flatten_data(data)
|
2011-01-24 02:08:16 +03:00
|
|
|
|
|
|
|
# Strip any parameters that we are treating as reserved
|
2011-03-08 18:19:55 +03:00
|
|
|
for key in data.keys():
|
2011-04-02 19:32:37 +04:00
|
|
|
if key in self.RESERVED_FORM_PARAMS:
|
2011-03-04 13:28:20 +03:00
|
|
|
data.pop(key)
|
2011-04-02 19:32:37 +04:00
|
|
|
|
2011-05-12 15:55:13 +04:00
|
|
|
return (data, None)
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-03-04 18:23:18 +03:00
|
|
|
def remove_empty_val(self, val_list):
|
|
|
|
""" """
|
|
|
|
while(1): # Because there might be several times EMPTY_VALUE in the list
|
|
|
|
try:
|
|
|
|
ind = val_list.index(self.EMPTY_VALUE)
|
|
|
|
except ValueError:
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
val_list.pop(ind)
|
|
|
|
|
2011-02-15 11:19:57 +03:00
|
|
|
|
2011-05-10 13:49:28 +04:00
|
|
|
class MultiPartParser(BaseParser, DataFlatener):
|
|
|
|
media_type = 'multipart/form-data'
|
2011-04-02 19:32:37 +04:00
|
|
|
RESERVED_FORM_PARAMS = ('csrfmiddlewaretoken',)
|
2011-03-04 13:28:20 +03:00
|
|
|
|
2011-04-02 19:32:37 +04:00
|
|
|
def parse(self, stream):
|
|
|
|
upload_handlers = self.view.request._get_upload_handlers()
|
2011-05-10 13:49:28 +04:00
|
|
|
django_parser = DjangoMultiPartParser(self.view.request.META, stream, upload_handlers)
|
|
|
|
data, files = django_parser.parse()
|
2011-03-04 18:06:44 +03:00
|
|
|
|
2011-03-04 18:23:18 +03:00
|
|
|
# Flatening data, files and combining them
|
2011-03-11 16:05:35 +03:00
|
|
|
data = self.flatten_data(dict(data.iterlists()))
|
|
|
|
files = self.flatten_data(dict(files.iterlists()))
|
2011-04-02 19:32:37 +04:00
|
|
|
|
2011-03-04 13:28:20 +03:00
|
|
|
# Strip any parameters that we are treating as reserved
|
2011-03-08 18:19:55 +03:00
|
|
|
for key in data.keys():
|
2011-04-02 19:32:37 +04:00
|
|
|
if key in self.RESERVED_FORM_PARAMS:
|
2011-03-04 13:28:20 +03:00
|
|
|
data.pop(key)
|
2011-04-02 19:32:37 +04:00
|
|
|
|
2011-05-12 15:55:13 +04:00
|
|
|
return (data, files)
|