2011-01-28 01:30:10 +03:00
|
|
|
"""Emitters are used to serialize a Resource's output into specific media types.
|
2011-01-30 21:30:39 +03:00
|
|
|
django-rest-framework also provides HTML and PlainText emitters 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, emitters and parsers on the Resource.
|
|
|
|
"""
|
2011-04-26 23:20:31 +04:00
|
|
|
from django import forms
|
2011-01-28 00:09:25 +03:00
|
|
|
from django.conf import settings
|
2011-01-24 02:08:16 +03:00
|
|
|
from django.template import RequestContext, loader
|
2011-04-25 07:50:28 +04:00
|
|
|
from django.utils import simplejson as json
|
2011-01-26 23:31:47 +03:00
|
|
|
from django import forms
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-04-27 21:44:21 +04:00
|
|
|
from djangorestframework.utils import dict2xml, url_resolves
|
|
|
|
from djangorestframework.markdownwrapper import apply_markdown
|
|
|
|
from djangorestframework.breadcrumbs import get_breadcrumbs
|
|
|
|
from djangorestframework.description import get_name, get_description
|
|
|
|
from djangorestframework import status
|
2011-02-19 13:26:27 +03:00
|
|
|
|
2011-04-27 21:44:21 +04:00
|
|
|
from decimal import Decimal
|
|
|
|
import string
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-01-28 01:30:10 +03:00
|
|
|
# TODO: Rename verbose to something more appropriate
|
2011-04-11 19:38:00 +04:00
|
|
|
# TODO: Maybe None could be handled more cleanly. It'd be nice if it was handled by default,
|
2011-01-28 01:30:10 +03:00
|
|
|
# and only have an emitter output anything if it explicitly provides support for that.
|
2011-01-28 00:09:25 +03:00
|
|
|
|
2011-01-24 02:08:16 +03:00
|
|
|
class BaseEmitter(object):
|
2011-01-28 01:30:10 +03:00
|
|
|
"""All emitters must extend this class, set the media_type attribute, and
|
|
|
|
override the emit() function."""
|
2011-01-24 02:08:16 +03:00
|
|
|
media_type = None
|
|
|
|
|
|
|
|
def __init__(self, resource):
|
|
|
|
self.resource = resource
|
|
|
|
|
2011-04-11 19:38:00 +04:00
|
|
|
def emit(self, output=None, verbose=False):
|
2011-01-28 20:42:57 +03:00
|
|
|
"""By default emit simply returns the ouput as-is.
|
|
|
|
Override this method to provide for other behaviour."""
|
2011-04-11 19:38:00 +04:00
|
|
|
if output is None:
|
2011-01-26 11:58:09 +03:00
|
|
|
return ''
|
|
|
|
|
|
|
|
return output
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-01-28 01:30:10 +03:00
|
|
|
|
2011-01-26 11:58:09 +03:00
|
|
|
class TemplateEmitter(BaseEmitter):
|
2011-01-28 01:30:10 +03:00
|
|
|
"""Provided for convienience.
|
|
|
|
Emit the output by simply rendering it with the given template."""
|
2011-01-26 11:58:09 +03:00
|
|
|
media_type = None
|
|
|
|
template = None
|
|
|
|
|
2011-04-11 19:38:00 +04:00
|
|
|
def emit(self, output=None, verbose=False):
|
|
|
|
if output is None:
|
2011-01-26 11:58:09 +03:00
|
|
|
return ''
|
|
|
|
|
2011-02-19 13:26:27 +03:00
|
|
|
context = RequestContext(self.request, output)
|
2011-01-28 01:30:10 +03:00
|
|
|
return self.template.render(context)
|
2011-01-26 23:31:47 +03:00
|
|
|
|
2011-01-24 02:08:16 +03:00
|
|
|
|
|
|
|
class DocumentingTemplateEmitter(BaseEmitter):
|
2011-01-28 01:30:10 +03:00
|
|
|
"""Base class for emitters used to self-document the API.
|
|
|
|
Implementing classes should extend this class and set the template attribute."""
|
2011-01-24 02:08:16 +03:00
|
|
|
template = None
|
|
|
|
|
2011-02-19 13:26:27 +03:00
|
|
|
def _get_content(self, resource, request, output):
|
2011-01-26 23:31:47 +03:00
|
|
|
"""Get the content as if it had been emitted by a non-documenting emitter.
|
|
|
|
|
|
|
|
(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.)"""
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-01-26 23:31:47 +03:00
|
|
|
# Find the first valid emitter and emit the content. (Don't use another documenting emitter.)
|
2011-01-24 02:08:16 +03:00
|
|
|
emitters = [emitter for emitter in resource.emitters if not isinstance(emitter, DocumentingTemplateEmitter)]
|
|
|
|
if not emitters:
|
2011-01-26 23:31:47 +03:00
|
|
|
return '[No emitters were found]'
|
|
|
|
|
|
|
|
content = emitters[0](resource).emit(output, verbose=True)
|
|
|
|
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."""
|
2011-01-24 02:08:16 +03:00
|
|
|
# Get the form instance if we have one bound to the input
|
2011-02-07 11:23:54 +03:00
|
|
|
#form_instance = resource.form_instance
|
|
|
|
# TODO! Reinstate this
|
|
|
|
|
2011-04-11 18:03:49 +04:00
|
|
|
form_instance = getattr(resource, 'bound_form_instance', None)
|
2011-02-07 11:23:54 +03:00
|
|
|
|
2011-04-11 18:03:49 +04:00
|
|
|
if not form_instance and hasattr(resource, 'get_bound_form'):
|
2011-02-19 13:26:27 +03:00
|
|
|
# Otherwise if we have a response that is valid against the form then use that
|
2011-04-11 18:03:49 +04:00
|
|
|
if resource.response.has_content_body:
|
2011-02-07 11:23:54 +03:00
|
|
|
try:
|
2011-04-05 03:16:41 +04:00
|
|
|
form_instance = resource.get_bound_form(resource.response.cleaned_content)
|
2011-02-19 13:26:27 +03:00
|
|
|
if form_instance and not form_instance.is_valid():
|
|
|
|
form_instance = None
|
2011-02-07 11:23:54 +03:00
|
|
|
except:
|
|
|
|
form_instance = None
|
|
|
|
|
2011-04-11 18:03:49 +04:00
|
|
|
# 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-24 02:08:16 +03:00
|
|
|
|
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
|
2011-01-24 02:08:16 +03:00
|
|
|
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)"""
|
|
|
|
|
2011-02-19 13:26:27 +03:00
|
|
|
# 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.
|
2011-04-02 19:32:37 +04:00
|
|
|
if not getattr(resource, 'USE_FORM_OVERLOADING', False):
|
2011-02-19 13:26:27 +03:00
|
|
|
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
|
|
|
|
if self.resource.CONTENTTYPE_PARAM is None or self.resource.CONTENT_PARAM is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
# Okey doke, let's do it
|
|
|
|
return GenericContentForm(resource)
|
|
|
|
|
|
|
|
|
2011-04-11 19:38:00 +04:00
|
|
|
def emit(self, output=None):
|
2011-02-19 13:26:27 +03:00
|
|
|
content = self._get_content(self.resource, self.resource.request, output)
|
2011-01-26 23:31:47 +03:00
|
|
|
form_instance = self._get_form_instance(self.resource)
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-01-28 00:09:25 +03:00
|
|
|
if url_resolves(settings.LOGIN_URL) and url_resolves(settings.LOGOUT_URL):
|
2011-01-28 00:19:25 +03:00
|
|
|
login_url = "%s?next=%s" % (settings.LOGIN_URL, quote_plus(self.resource.request.path))
|
|
|
|
logout_url = "%s?next=%s" % (settings.LOGOUT_URL, quote_plus(self.resource.request.path))
|
2011-01-28 00:09:25 +03:00
|
|
|
else:
|
|
|
|
login_url = None
|
|
|
|
logout_url = None
|
|
|
|
|
2011-02-19 13:26:27 +03:00
|
|
|
name = get_name(self.resource)
|
|
|
|
description = get_description(self.resource)
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
breadcrumb_list = get_breadcrumbs(self.resource.request.path)
|
|
|
|
|
2011-01-24 02:08:16 +03:00
|
|
|
template = loader.get_template(self.template)
|
|
|
|
context = RequestContext(self.resource.request, {
|
|
|
|
'content': content,
|
|
|
|
'resource': self.resource,
|
|
|
|
'request': self.resource.request,
|
|
|
|
'response': self.resource.response,
|
2011-02-19 13:26:27 +03:00
|
|
|
'description': description,
|
|
|
|
'name': name,
|
|
|
|
'markeddown': markeddown,
|
|
|
|
'breadcrumblist': breadcrumb_list,
|
2011-01-28 00:09:25 +03:00
|
|
|
'form': form_instance,
|
|
|
|
'login_url': login_url,
|
|
|
|
'logout_url': logout_url,
|
2011-02-19 13:26:27 +03:00
|
|
|
'ADMIN_MEDIA_PREFIX': settings.ADMIN_MEDIA_PREFIX
|
2011-01-24 02:08:16 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
ret = template.render(context)
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
|
|
|
|
|
|
|
class JSONEmitter(BaseEmitter):
|
2011-01-28 01:30:10 +03:00
|
|
|
"""Emitter which serializes to JSON"""
|
2011-01-24 02:08:16 +03:00
|
|
|
media_type = 'application/json'
|
|
|
|
|
2011-04-11 19:38:00 +04:00
|
|
|
def emit(self, output=None, verbose=False):
|
|
|
|
if output is None:
|
2011-01-24 02:08:16 +03:00
|
|
|
return ''
|
|
|
|
if verbose:
|
|
|
|
return json.dumps(output, indent=4, sort_keys=True)
|
|
|
|
return json.dumps(output)
|
|
|
|
|
|
|
|
|
|
|
|
class XMLEmitter(BaseEmitter):
|
2011-01-28 01:30:10 +03:00
|
|
|
"""Emitter which serializes to XML."""
|
2011-01-24 02:08:16 +03:00
|
|
|
media_type = 'application/xml'
|
|
|
|
|
2011-04-11 19:38:00 +04:00
|
|
|
def emit(self, output=None, verbose=False):
|
|
|
|
if output is None:
|
2011-01-24 02:08:16 +03:00
|
|
|
return ''
|
|
|
|
return dict2xml(output)
|
|
|
|
|
|
|
|
|
|
|
|
class DocumentingHTMLEmitter(DocumentingTemplateEmitter):
|
2011-01-28 01:30:10 +03:00
|
|
|
"""Emitter which provides a browsable HTML interface for an API.
|
2011-01-30 21:30:39 +03:00
|
|
|
See the examples listed in the django-rest-framework documentation to see this in actions."""
|
2011-01-24 02:08:16 +03:00
|
|
|
media_type = 'text/html'
|
|
|
|
template = 'emitter.html'
|
|
|
|
|
|
|
|
|
|
|
|
class DocumentingXHTMLEmitter(DocumentingTemplateEmitter):
|
2011-01-28 01:30:10 +03:00
|
|
|
"""Identical to DocumentingHTMLEmitter, except with an xhtml media type.
|
|
|
|
We need this to be listed in preference to xml in order to return HTML to WebKit based browsers,
|
|
|
|
given their Accept headers."""
|
2011-01-24 02:08:16 +03:00
|
|
|
media_type = 'application/xhtml+xml'
|
|
|
|
template = 'emitter.html'
|
|
|
|
|
|
|
|
|
|
|
|
class DocumentingPlainTextEmitter(DocumentingTemplateEmitter):
|
2011-01-28 01:30:10 +03:00
|
|
|
"""Emitter that serializes the output with the default emitter, but also provides plain-text
|
|
|
|
doumentation of the returned status and headers, and of the resource's name and description.
|
|
|
|
Useful for browsing an API with command line tools."""
|
2011-01-24 02:08:16 +03:00
|
|
|
media_type = 'text/plain'
|
|
|
|
template = 'emitter.txt'
|
2011-02-19 13:26:27 +03:00
|
|
|
|
|
|
|
DEFAULT_EMITTERS = ( JSONEmitter,
|
|
|
|
DocumentingHTMLEmitter,
|
|
|
|
DocumentingXHTMLEmitter,
|
|
|
|
DocumentingPlainTextEmitter,
|
|
|
|
XMLEmitter )
|
2011-01-24 02:08:16 +03:00
|
|
|
|
|
|
|
|