django-rest-framework/djangorestframework/renderers.py

281 lines
10 KiB
Python
Raw Normal View History

2011-05-10 15:21:48 +04:00
"""
Renderers are used to serialize a View's output into specific media types.
django-rest-framework also provides HTML and PlainText renderers that help self-document the API,
2011-01-28 01:30:10 +03:00
by serializing the output along with documentation regarding the Resource, output status and headers,
and providing forms and links depending on the allowed methods, renderers and parsers on the Resource.
2011-01-28 01:30:10 +03:00
"""
from django import forms
from django.conf import settings
from django.template import RequestContext, loader
from django.utils import simplejson as json
2011-05-10 15:21:48 +04:00
from djangorestframework import status
from djangorestframework.compat import apply_markdown
2011-05-10 15:21:48 +04:00
from djangorestframework.utils import dict2xml, url_resolves
from djangorestframework.utils.breadcrumbs import get_breadcrumbs
from djangorestframework.utils.description import get_name, get_description
2011-05-10 15:21:48 +04:00
from djangorestframework.utils.mediatypes import get_media_type_params, add_media_type_param
2011-04-27 21:53:54 +04:00
from decimal import Decimal
2011-05-10 15:21:48 +04:00
import re
import string
from urllib import quote_plus
__all__ = (
'BaseRenderer',
'JSONRenderer',
'DocumentingHTMLRenderer',
'DocumentingXHTMLRenderer',
'DocumentingPlainTextRenderer',
'XMLRenderer'
)
class BaseRenderer(object):
2011-05-10 15:21:48 +04:00
"""
All renderers must extend this class, set the media_type attribute, and
override the render() function.
"""
media_type = None
2011-05-10 13:49:28 +04:00
def __init__(self, view):
self.view = view
2011-05-10 15:21:48 +04:00
def render(self, obj=None, media_type=None):
"""
By default render simply returns the ouput as-is.
Override this method to provide for other behavior.
"""
if obj is None:
2011-01-26 11:58:09 +03:00
return ''
2011-05-10 15:21:48 +04:00
return obj
2011-01-28 01:30:10 +03:00
class TemplateRenderer(BaseRenderer):
2011-05-10 15:21:48 +04:00
"""
A Base class provided for convenience.
2011-05-10 13:49:28 +04:00
2011-05-10 15:21:48 +04:00
Render the object simply by using the given template.
2011-05-10 13:49:28 +04:00
To create a template renderer, subclass this, and set
2011-05-10 15:21:48 +04:00
the ``media_type`` and ``template`` attributes
"""
2011-01-26 11:58:09 +03:00
media_type = None
template = None
2011-05-10 15:21:48 +04:00
def render(self, obj=None, media_type=None):
if obj is None:
2011-01-26 11:58:09 +03:00
return ''
2011-05-10 15:21:48 +04:00
context = RequestContext(self.request, obj)
2011-01-28 01:30:10 +03:00
return self.template.render(context)
2011-01-26 23:31:47 +03:00
class DocumentingTemplateRenderer(BaseRenderer):
2011-05-10 15:21:48 +04:00
"""
Base class for renderers used to self-document the API.
Implementing classes should extend this class and set the template attribute.
"""
template = None
2011-05-10 15:21:48 +04:00
def _get_content(self, resource, request, obj, media_type):
"""Get the content as if it had been rendered by a non-documenting renderer.
2011-01-26 23:31:47 +03:00
(Typically this will be the content as it would have been if the Resource had been
requested with an 'Accept: */*' header, although with verbose style formatting if appropriate.)"""
# Find the first valid renderer and render the content. (Don't use another documenting renderer.)
renderers = [renderer for renderer in resource.renderers if not isinstance(renderer, DocumentingTemplateRenderer)]
if not renderers:
return '[No renderers were found]'
2011-05-10 15:21:48 +04:00
media_type = add_media_type_param(media_type, 'indent', '4')
content = renderers[0](resource).render(obj, media_type)
2011-01-26 23:31:47 +03:00
if not all(char in string.printable for char in content):
return '[%d bytes of binary content]'
return content
def _get_form_instance(self, resource):
2011-01-28 01:30:10 +03:00
"""Get a form, possibly bound to either the input or output data.
In the absence on of the Resource having an associated form then
provide a form that can be used to submit arbitrary content."""
# Get the form instance if we have one bound to the input
#form_instance = resource.form_instance
# TODO! Reinstate this
form_instance = getattr(resource, 'bound_form_instance', None)
if not form_instance and hasattr(resource, 'get_bound_form'):
# Otherwise if we have a response that is valid against the form then use that
if resource.response.has_content_body:
try:
form_instance = resource.get_bound_form(resource.response.cleaned_content)
if form_instance and not form_instance.is_valid():
form_instance = None
except:
form_instance = None
# If we still don't have a form instance then try to get an unbound form
if not form_instance:
try:
form_instance = resource.get_bound_form()
except:
pass
2011-01-26 23:31:47 +03:00
# If we still don't have a form instance then try to get an unbound form which can tunnel arbitrary content types
if not form_instance:
2011-01-26 23:31:47 +03:00
form_instance = self._get_generic_content_form(resource)
return form_instance
def _get_generic_content_form(self, resource):
"""Returns a form that allows for arbitrary content types to be tunneled via standard HTML forms
(Which are typically application/x-www-form-urlencoded)"""
# If we're not using content overloading there's no point in supplying a generic form,
# as the resource won't treat the form's value as the content of the request.
if not getattr(resource, 'USE_FORM_OVERLOADING', False):
return None
2011-01-26 23:31:47 +03:00
# NB. http://jacobian.org/writing/dynamic-form-generation/
class GenericContentForm(forms.Form):
def __init__(self, resource):
"""We don't know the names of the fields we want to set until the point the form is instantiated,
as they are determined by the Resource the form is being created against.
Add the fields dynamically."""
super(GenericContentForm, self).__init__()
contenttype_choices = [(media_type, media_type) for media_type in resource.parsed_media_types]
initial_contenttype = resource.default_parser.media_type
self.fields[resource.CONTENTTYPE_PARAM] = forms.ChoiceField(label='Content Type',
choices=contenttype_choices,
initial=initial_contenttype)
self.fields[resource.CONTENT_PARAM] = forms.CharField(label='Content',
widget=forms.Textarea)
# If either of these reserved parameters are turned off then content tunneling is not possible
2011-05-10 13:49:28 +04:00
if self.view.CONTENTTYPE_PARAM is None or self.view.CONTENT_PARAM is None:
2011-01-26 23:31:47 +03:00
return None
# Okey doke, let's do it
return GenericContentForm(resource)
2011-05-10 15:21:48 +04:00
def render(self, obj=None, media_type=None):
content = self._get_content(self.view, self.view.request, obj, media_type)
2011-05-10 13:49:28 +04:00
form_instance = self._get_form_instance(self.view)
if url_resolves(settings.LOGIN_URL) and url_resolves(settings.LOGOUT_URL):
2011-05-10 13:49:28 +04:00
login_url = "%s?next=%s" % (settings.LOGIN_URL, quote_plus(self.view.request.path))
logout_url = "%s?next=%s" % (settings.LOGOUT_URL, quote_plus(self.view.request.path))
else:
login_url = None
logout_url = None
2011-05-10 13:49:28 +04:00
name = get_name(self.view)
description = get_description(self.view)
markeddown = None
if apply_markdown:
try:
markeddown = apply_markdown(description)
except AttributeError: # TODO: possibly split the get_description / get_name into a mixin class
markeddown = None
2011-05-10 13:49:28 +04:00
breadcrumb_list = get_breadcrumbs(self.view.request.path)
template = loader.get_template(self.template)
2011-05-10 13:49:28 +04:00
context = RequestContext(self.view.request, {
'content': content,
2011-05-10 13:49:28 +04:00
'resource': self.view,
'request': self.view.request,
'response': self.view.response,
'description': description,
'name': name,
'markeddown': markeddown,
'breadcrumblist': breadcrumb_list,
'form': form_instance,
'login_url': login_url,
'logout_url': logout_url,
'ADMIN_MEDIA_PREFIX': settings.ADMIN_MEDIA_PREFIX
})
ret = template.render(context)
return ret
class JSONRenderer(BaseRenderer):
2011-05-10 15:21:48 +04:00
"""
Renderer which serializes to JSON
"""
media_type = 'application/json'
2011-05-10 15:21:48 +04:00
def render(self, obj=None, media_type=None):
if obj is None:
return ''
2011-05-10 15:21:48 +04:00
indent = get_media_type_params(media_type).get('indent', None)
if indent is not None:
try:
indent = int(indent)
except ValueError:
indent = None
sort_keys = indent and True or False
return json.dumps(obj, indent=indent, sort_keys=sort_keys)
class XMLRenderer(BaseRenderer):
2011-05-10 15:21:48 +04:00
"""
Renderer which serializes to XML.
"""
media_type = 'application/xml'
2011-05-10 15:21:48 +04:00
def render(self, obj=None, media_type=None):
if obj is None:
return ''
2011-05-10 15:21:48 +04:00
return dict2xml(obj)
class DocumentingHTMLRenderer(DocumentingTemplateRenderer):
2011-05-10 15:21:48 +04:00
"""
Renderer which provides a browsable HTML interface for an API.
See the examples at http://api.django-rest-framework.org to see this in action.
"""
media_type = 'text/html'
template = 'renderer.html'
class DocumentingXHTMLRenderer(DocumentingTemplateRenderer):
2011-05-10 15:21:48 +04:00
"""
Identical to DocumentingHTMLRenderer, except with an xhtml media type.
2011-01-28 01:30:10 +03:00
We need this to be listed in preference to xml in order to return HTML to WebKit based browsers,
2011-05-10 15:21:48 +04:00
given their Accept headers.
"""
media_type = 'application/xhtml+xml'
template = 'renderer.html'
class DocumentingPlainTextRenderer(DocumentingTemplateRenderer):
2011-05-10 15:21:48 +04:00
"""
Renderer that serializes the object with the default renderer, but also provides plain-text
documentation of the returned status and headers, and of the resource's name and description.
Useful for browsing an API with command line tools.
"""
media_type = 'text/plain'
template = 'renderer.txt'
2011-05-10 13:49:28 +04:00
DEFAULT_RENDERERS = ( JSONRenderer,
2011-05-10 13:49:28 +04:00
DocumentingHTMLRenderer,
DocumentingXHTMLRenderer,
DocumentingPlainTextRenderer,
XMLRenderer )