2014-12-15 00:48:51 +08:00
|
|
|
import warnings
|
|
|
|
|
2010-12-07 21:57:01 +08:00
|
|
|
from django.http import HttpResponse
|
2012-07-20 20:22:00 +08:00
|
|
|
from django.utils import six
|
2014-12-15 00:48:51 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango20Warning
|
2010-12-07 21:57:01 +08:00
|
|
|
|
2015-04-25 03:35:30 +08:00
|
|
|
from .backends.django import Template as BackendTemplate
|
|
|
|
from .base import Template
|
|
|
|
from .context import Context, RequestContext, _current_app_undefined
|
|
|
|
from .loader import get_template, select_template
|
|
|
|
|
2011-07-29 17:40:50 +08:00
|
|
|
|
2010-12-07 21:57:01 +08:00
|
|
|
class ContentNotRenderedError(Exception):
|
|
|
|
pass
|
|
|
|
|
2011-07-29 17:40:50 +08:00
|
|
|
|
2010-12-07 21:57:01 +08:00
|
|
|
class SimpleTemplateResponse(HttpResponse):
|
2011-07-29 17:40:50 +08:00
|
|
|
rendering_attrs = ['template_name', 'context_data', '_post_render_callbacks']
|
2010-12-07 21:57:01 +08:00
|
|
|
|
2013-11-17 01:54:12 +08:00
|
|
|
def __init__(self, template, context=None, content_type=None, status=None,
|
2015-01-27 04:57:10 +08:00
|
|
|
charset=None, using=None):
|
2015-01-10 05:59:00 +08:00
|
|
|
if isinstance(template, Template):
|
|
|
|
warnings.warn(
|
|
|
|
"{}'s template argument cannot be a django.template.Template "
|
|
|
|
"anymore. It may be a backend-specific template like those "
|
|
|
|
"created by get_template().".format(self.__class__.__name__),
|
|
|
|
RemovedInDjango20Warning, stacklevel=2)
|
|
|
|
template = BackendTemplate(template)
|
|
|
|
|
2010-12-07 21:57:01 +08:00
|
|
|
# It would seem obvious to call these next two members 'template' and
|
2011-07-29 17:40:50 +08:00
|
|
|
# 'context', but those names are reserved as part of the test Client
|
2015-01-10 05:59:00 +08:00
|
|
|
# API. To avoid the name collision, we use different names.
|
2010-12-07 21:57:01 +08:00
|
|
|
self.template_name = template
|
|
|
|
self.context_data = context
|
|
|
|
|
2015-01-27 04:57:10 +08:00
|
|
|
self.using = using
|
|
|
|
|
2011-01-24 22:24:35 +08:00
|
|
|
self._post_render_callbacks = []
|
|
|
|
|
2015-01-10 05:59:00 +08:00
|
|
|
# _request stores the current request object in subclasses that know
|
|
|
|
# about requests, like TemplateResponse. It's defined in the base class
|
|
|
|
# to minimize code duplication.
|
|
|
|
# It's called self._request because self.request gets overwritten by
|
|
|
|
# django.test.client.Client. Unlike template_name and context_data,
|
|
|
|
# _request should not be considered part of the public API.
|
|
|
|
self._request = None
|
|
|
|
|
2010-12-07 21:57:01 +08:00
|
|
|
# content argument doesn't make sense here because it will be replaced
|
|
|
|
# with rendered template so we always pass empty string in order to
|
|
|
|
# prevent errors and provide shorter signature.
|
2013-11-17 01:54:12 +08:00
|
|
|
super(SimpleTemplateResponse, self).__init__('', content_type, status, charset)
|
2010-12-07 21:57:01 +08:00
|
|
|
|
2011-09-15 15:26:35 +08:00
|
|
|
# _is_rendered tracks whether the template and context has been baked
|
|
|
|
# into a final response.
|
|
|
|
# Super __init__ doesn't know any better than to set self.content to
|
|
|
|
# the empty string we just gave it, which wrongly sets _is_rendered
|
|
|
|
# True, so we initialize it to False after the call to super __init__.
|
|
|
|
self._is_rendered = False
|
|
|
|
|
2011-01-24 22:24:35 +08:00
|
|
|
def __getstate__(self):
|
|
|
|
"""Pickling support function.
|
|
|
|
|
|
|
|
Ensures that the object can't be pickled before it has been
|
|
|
|
rendered, and that the pickled state only includes rendered
|
|
|
|
data, not the data used to construct the response.
|
|
|
|
"""
|
2014-11-01 02:26:27 +08:00
|
|
|
obj_dict = self.__dict__.copy()
|
2011-01-24 22:24:35 +08:00
|
|
|
if not self._is_rendered:
|
2011-07-29 17:40:50 +08:00
|
|
|
raise ContentNotRenderedError('The response content must be '
|
|
|
|
'rendered before it can be pickled.')
|
|
|
|
for attr in self.rendering_attrs:
|
|
|
|
if attr in obj_dict:
|
|
|
|
del obj_dict[attr]
|
2011-01-24 22:24:35 +08:00
|
|
|
|
|
|
|
return obj_dict
|
|
|
|
|
2010-12-07 21:57:01 +08:00
|
|
|
def resolve_template(self, template):
|
|
|
|
"Accepts a template object, path-to-template or list of paths"
|
|
|
|
if isinstance(template, (list, tuple)):
|
2015-04-25 03:35:30 +08:00
|
|
|
return select_template(template, using=self.using)
|
2012-07-20 20:22:00 +08:00
|
|
|
elif isinstance(template, six.string_types):
|
2015-04-25 03:35:30 +08:00
|
|
|
return get_template(template, using=self.using)
|
2010-12-07 21:57:01 +08:00
|
|
|
else:
|
|
|
|
return template
|
|
|
|
|
2015-01-10 05:59:00 +08:00
|
|
|
def _resolve_template(self, template):
|
|
|
|
# This wrapper deprecates returning a django.template.Template in
|
|
|
|
# subclasses that override resolve_template. It can be removed in
|
|
|
|
# Django 2.0.
|
|
|
|
new_template = self.resolve_template(template)
|
|
|
|
if isinstance(new_template, Template):
|
|
|
|
warnings.warn(
|
|
|
|
"{}.resolve_template() must return a backend-specific "
|
|
|
|
"template like those created by get_template(), not a "
|
|
|
|
"{}.".format(
|
|
|
|
self.__class__.__name__, new_template.__class__.__name__),
|
|
|
|
RemovedInDjango20Warning, stacklevel=2)
|
|
|
|
new_template = BackendTemplate(new_template)
|
|
|
|
return new_template
|
|
|
|
|
2010-12-07 21:57:01 +08:00
|
|
|
def resolve_context(self, context):
|
2015-01-10 05:59:00 +08:00
|
|
|
return context
|
|
|
|
|
|
|
|
def _resolve_context(self, context):
|
|
|
|
# This wrapper deprecates returning a Context or a RequestContext in
|
|
|
|
# subclasses that override resolve_context. It can be removed in
|
|
|
|
# Django 2.0. If returning a Context or a RequestContext works by
|
|
|
|
# accident, it won't be an issue per se, but it won't be officially
|
|
|
|
# supported either.
|
|
|
|
new_context = self.resolve_context(context)
|
|
|
|
if isinstance(new_context, RequestContext) and self._request is None:
|
|
|
|
self._request = new_context.request
|
|
|
|
if isinstance(new_context, Context):
|
|
|
|
warnings.warn(
|
|
|
|
"{}.resolve_context() must return a dict, not a {}.".format(
|
|
|
|
self.__class__.__name__, new_context.__class__.__name__),
|
|
|
|
RemovedInDjango20Warning, stacklevel=2)
|
|
|
|
# It would be tempting to do new_context = new_context.flatten()
|
|
|
|
# here but that would cause template context processors to run for
|
|
|
|
# TemplateResponse(request, template, Context({})), which would be
|
|
|
|
# backwards-incompatible. As a consequence another deprecation
|
|
|
|
# warning will be raised when rendering the template. There isn't
|
|
|
|
# much we can do about that.
|
|
|
|
return new_context
|
2010-12-07 21:57:01 +08:00
|
|
|
|
|
|
|
@property
|
|
|
|
def rendered_content(self):
|
|
|
|
"""Returns the freshly rendered content for the template and context
|
|
|
|
described by the TemplateResponse.
|
|
|
|
|
|
|
|
This *does not* set the final content of the response. To set the
|
|
|
|
response content, you must either call render(), or set the
|
|
|
|
content explicitly using the value of this property.
|
|
|
|
"""
|
2015-01-10 05:59:00 +08:00
|
|
|
template = self._resolve_template(self.template_name)
|
|
|
|
context = self._resolve_context(self.context_data)
|
|
|
|
content = template.render(context, self._request)
|
2010-12-07 21:57:01 +08:00
|
|
|
return content
|
|
|
|
|
2011-01-24 22:24:35 +08:00
|
|
|
def add_post_render_callback(self, callback):
|
2011-07-29 17:40:50 +08:00
|
|
|
"""Adds a new post-rendering callback.
|
2011-01-24 22:24:35 +08:00
|
|
|
|
2011-07-29 17:40:50 +08:00
|
|
|
If the response has already been rendered,
|
|
|
|
invoke the callback immediately.
|
2011-01-24 22:24:35 +08:00
|
|
|
"""
|
|
|
|
if self._is_rendered:
|
|
|
|
callback(self)
|
|
|
|
else:
|
|
|
|
self._post_render_callbacks.append(callback)
|
|
|
|
|
2010-12-07 21:57:01 +08:00
|
|
|
def render(self):
|
2011-07-29 17:40:50 +08:00
|
|
|
"""Renders (thereby finalizing) the content of the response.
|
2010-12-07 21:57:01 +08:00
|
|
|
|
|
|
|
If the content has already been rendered, this is a no-op.
|
|
|
|
|
|
|
|
Returns the baked response instance.
|
|
|
|
"""
|
2011-05-25 05:28:43 +08:00
|
|
|
retval = self
|
2010-12-07 21:57:01 +08:00
|
|
|
if not self._is_rendered:
|
2012-08-22 23:48:22 +08:00
|
|
|
self.content = self.rendered_content
|
2011-01-24 22:24:35 +08:00
|
|
|
for post_callback in self._post_render_callbacks:
|
2011-05-25 05:28:43 +08:00
|
|
|
newretval = post_callback(retval)
|
|
|
|
if newretval is not None:
|
|
|
|
retval = newretval
|
|
|
|
return retval
|
2010-12-07 21:57:01 +08:00
|
|
|
|
2011-07-29 17:40:50 +08:00
|
|
|
@property
|
|
|
|
def is_rendered(self):
|
|
|
|
return self._is_rendered
|
2010-12-07 21:57:01 +08:00
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
if not self._is_rendered:
|
2011-07-29 17:40:50 +08:00
|
|
|
raise ContentNotRenderedError('The response content must be '
|
|
|
|
'rendered before it can be iterated over.')
|
2010-12-07 21:57:01 +08:00
|
|
|
return super(SimpleTemplateResponse, self).__iter__()
|
|
|
|
|
2012-08-22 23:48:22 +08:00
|
|
|
@property
|
|
|
|
def content(self):
|
2010-12-07 21:57:01 +08:00
|
|
|
if not self._is_rendered:
|
2011-07-29 17:40:50 +08:00
|
|
|
raise ContentNotRenderedError('The response content must be '
|
|
|
|
'rendered before it can be accessed.')
|
2012-08-22 23:48:22 +08:00
|
|
|
return super(SimpleTemplateResponse, self).content
|
2010-12-07 21:57:01 +08:00
|
|
|
|
2012-08-22 23:48:22 +08:00
|
|
|
@content.setter
|
|
|
|
def content(self, value):
|
2011-07-29 17:40:50 +08:00
|
|
|
"""Sets the content for the response
|
|
|
|
"""
|
2012-08-22 23:48:22 +08:00
|
|
|
HttpResponse.content.fset(self, value)
|
2010-12-07 21:57:01 +08:00
|
|
|
self._is_rendered = True
|
|
|
|
|
|
|
|
|
|
|
|
class TemplateResponse(SimpleTemplateResponse):
|
2013-09-22 20:01:57 +08:00
|
|
|
rendering_attrs = SimpleTemplateResponse.rendering_attrs + ['_request', '_current_app']
|
2011-07-29 17:40:50 +08:00
|
|
|
|
2012-07-01 03:25:16 +08:00
|
|
|
def __init__(self, request, template, context=None, content_type=None,
|
2015-01-27 04:57:10 +08:00
|
|
|
status=None, current_app=_current_app_undefined, charset=None,
|
|
|
|
using=None):
|
2011-01-06 06:41:43 +08:00
|
|
|
# As a convenience we'll allow callers to provide current_app without
|
|
|
|
# having to avoid needing to create the RequestContext directly
|
2014-12-15 00:48:51 +08:00
|
|
|
if current_app is not _current_app_undefined:
|
|
|
|
warnings.warn(
|
|
|
|
"The current_app argument of TemplateResponse is deprecated. "
|
|
|
|
"Set the current_app attribute of its request instead.",
|
|
|
|
RemovedInDjango20Warning, stacklevel=2)
|
|
|
|
request.current_app = current_app
|
2010-12-07 21:57:01 +08:00
|
|
|
super(TemplateResponse, self).__init__(
|
2015-01-27 04:57:10 +08:00
|
|
|
template, context, content_type, status, charset, using)
|
2015-01-10 05:59:00 +08:00
|
|
|
self._request = request
|