2016-04-21 08:48:33 +02:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
import jinja2
|
|
|
|
from django.utils import six
|
2016-05-23 15:44:07 +02:00
|
|
|
from django.test.signals import template_rendered
|
2016-04-21 08:48:33 +02:00
|
|
|
from django.template.backends import jinja2 as django_jinja2
|
|
|
|
from django.template import TemplateDoesNotExist, TemplateSyntaxError, Context
|
|
|
|
from django.utils.module_loading import import_string
|
|
|
|
from django.template.backends.utils import csrf_input_lazy, csrf_token_lazy
|
|
|
|
|
|
|
|
|
|
|
|
class Jinja2(django_jinja2.Jinja2):
|
|
|
|
"""Context processors aware Jinja2 backend.
|
|
|
|
|
|
|
|
The default Jinja2 backend in Django is not aware of context
|
|
|
|
processors so we just derive from the default Jinja2 backend
|
|
|
|
and add the functionality to pass the context processors to
|
|
|
|
the `Template` object.
|
|
|
|
"""
|
|
|
|
def __init__(self, params, *args, **kwargs):
|
|
|
|
# We need to remove `context_processors` from `OPTIONS` because
|
|
|
|
# `Environment` doesn't expect it
|
|
|
|
self.context_processors = params['OPTIONS'].pop('context_processors', [])
|
2016-05-23 15:44:07 +02:00
|
|
|
self.debug = params['OPTIONS'].pop('debug', False)
|
2016-04-21 08:48:33 +02:00
|
|
|
super(Jinja2, self).__init__(params, *args, **kwargs)
|
|
|
|
|
|
|
|
def get_template(self, template_name):
|
|
|
|
try:
|
|
|
|
return Template(self.env.get_template(template_name),
|
2016-05-23 15:44:07 +02:00
|
|
|
self.context_processors,
|
|
|
|
self.debug)
|
2016-04-21 08:48:33 +02:00
|
|
|
except jinja2.TemplateNotFound as exc:
|
|
|
|
six.reraise(TemplateDoesNotExist, TemplateDoesNotExist(exc.args),
|
|
|
|
sys.exc_info()[2])
|
|
|
|
except jinja2.TemplateSyntaxError as exc:
|
|
|
|
six.reraise(TemplateSyntaxError, TemplateSyntaxError(exc.args),
|
|
|
|
sys.exc_info()[2])
|
|
|
|
|
|
|
|
|
|
|
|
class Template(django_jinja2.Template):
|
|
|
|
"""Context processors aware Template.
|
|
|
|
|
|
|
|
This class upgrades the default `Template` to apply context
|
|
|
|
processors to the context before passing it to the `render`
|
|
|
|
function.
|
|
|
|
"""
|
2016-05-23 15:44:07 +02:00
|
|
|
def __init__(self, template, context_processors, debug, *args, **kwargs):
|
2016-04-21 08:48:33 +02:00
|
|
|
self.context_processors = context_processors
|
2016-05-23 15:44:07 +02:00
|
|
|
self.debug = debug
|
2016-04-21 08:48:33 +02:00
|
|
|
super(Template, self).__init__(template, *args, **kwargs)
|
|
|
|
|
|
|
|
def render(self, context=None, request=None):
|
|
|
|
if context is None:
|
|
|
|
context = {}
|
|
|
|
|
|
|
|
if isinstance(context, Context):
|
|
|
|
context = context.flatten() # Jinja2 expects a dictionary
|
|
|
|
|
|
|
|
if request is not None:
|
|
|
|
context['request'] = request
|
|
|
|
context['csrf_input'] = csrf_input_lazy(request)
|
|
|
|
context['csrf_token'] = csrf_token_lazy(request)
|
|
|
|
|
|
|
|
for context_processor in self.context_processors:
|
|
|
|
cp = import_string(context_processor)
|
|
|
|
context.update(cp(request))
|
|
|
|
|
2016-05-23 15:44:07 +02:00
|
|
|
if self.debug:
|
|
|
|
template_rendered.send(sender=self, template=self,
|
|
|
|
context=context)
|
|
|
|
|
2016-04-21 08:48:33 +02:00
|
|
|
return self.template.render(context)
|