2014-11-29 07:05:56 +08:00
|
|
|
# Since this package contains a "django" module, this is required on Python 2.
|
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2015-04-25 03:33:03 +08:00
|
|
|
import sys
|
2015-01-08 22:03:43 +08:00
|
|
|
import warnings
|
2015-05-09 04:10:36 +08:00
|
|
|
from importlib import import_module
|
|
|
|
from pkgutil import walk_packages
|
2015-01-08 22:03:43 +08:00
|
|
|
|
2015-05-09 04:10:36 +08:00
|
|
|
from django.apps import apps
|
2014-11-29 07:05:56 +08:00
|
|
|
from django.conf import settings
|
2015-04-25 03:33:03 +08:00
|
|
|
from django.template import TemplateDoesNotExist
|
2015-02-10 17:29:00 +08:00
|
|
|
from django.template.context import Context, RequestContext, make_context
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.template.engine import Engine, _dirs_undefined
|
2015-05-09 04:10:36 +08:00
|
|
|
from django.template.library import InvalidTemplateLibrary
|
2015-04-25 03:33:03 +08:00
|
|
|
from django.utils import six
|
2015-01-08 22:03:43 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango20Warning
|
2014-11-29 07:05:56 +08:00
|
|
|
|
|
|
|
from .base import BaseEngine
|
|
|
|
|
|
|
|
|
|
|
|
class DjangoTemplates(BaseEngine):
|
|
|
|
|
|
|
|
app_dirname = 'templates'
|
|
|
|
|
|
|
|
def __init__(self, params):
|
|
|
|
params = params.copy()
|
|
|
|
options = params.pop('OPTIONS').copy()
|
2015-02-15 22:42:05 +08:00
|
|
|
options.setdefault('debug', settings.DEBUG)
|
2014-11-29 07:05:56 +08:00
|
|
|
options.setdefault('file_charset', settings.FILE_CHARSET)
|
2015-05-09 04:10:36 +08:00
|
|
|
libraries = options.get('libraries', {})
|
|
|
|
options['libraries'] = self.get_templatetag_libraries(libraries)
|
2014-11-29 07:05:56 +08:00
|
|
|
super(DjangoTemplates, self).__init__(params)
|
|
|
|
self.engine = Engine(self.dirs, self.app_dirs, **options)
|
|
|
|
|
|
|
|
def from_string(self, template_code):
|
2015-04-25 03:33:03 +08:00
|
|
|
return Template(self.engine.from_string(template_code), self)
|
2014-11-29 07:05:56 +08:00
|
|
|
|
2014-11-29 05:13:11 +08:00
|
|
|
def get_template(self, template_name, dirs=_dirs_undefined):
|
2015-04-25 03:33:03 +08:00
|
|
|
try:
|
|
|
|
return Template(self.engine.get_template(template_name, dirs), self)
|
|
|
|
except TemplateDoesNotExist as exc:
|
|
|
|
reraise(exc, self)
|
2014-11-29 07:05:56 +08:00
|
|
|
|
2015-05-09 04:10:36 +08:00
|
|
|
def get_templatetag_libraries(self, custom_libraries):
|
|
|
|
"""
|
|
|
|
Return a collation of template tag libraries from installed
|
|
|
|
applications and the supplied custom_libraries argument.
|
|
|
|
"""
|
|
|
|
libraries = get_installed_libraries()
|
|
|
|
libraries.update(custom_libraries)
|
|
|
|
return libraries
|
|
|
|
|
2014-11-29 07:05:56 +08:00
|
|
|
|
|
|
|
class Template(object):
|
|
|
|
|
2015-04-25 03:33:03 +08:00
|
|
|
def __init__(self, template, backend):
|
2014-11-29 07:05:56 +08:00
|
|
|
self.template = template
|
2015-04-25 03:33:03 +08:00
|
|
|
self.backend = backend
|
2014-11-29 07:05:56 +08:00
|
|
|
|
2014-11-29 05:13:11 +08:00
|
|
|
@property
|
|
|
|
def origin(self):
|
|
|
|
return self.template.origin
|
|
|
|
|
2014-11-29 07:05:56 +08:00
|
|
|
def render(self, context=None, request=None):
|
2015-01-08 22:03:43 +08:00
|
|
|
# A deprecation path is required here to cover the following usage:
|
|
|
|
# >>> from django.template import Context
|
|
|
|
# >>> from django.template.loader import get_template
|
|
|
|
# >>> template = get_template('hello.html')
|
|
|
|
# >>> template.render(Context({'name': 'world'}))
|
|
|
|
# In Django 1.7 get_template() returned a django.template.Template.
|
|
|
|
# In Django 1.8 it returns a django.template.backends.django.Template.
|
|
|
|
# In Django 2.0 the isinstance checks should be removed. If passing a
|
|
|
|
# Context or a RequestContext works by accident, it won't be an issue
|
|
|
|
# per se, but it won't be officially supported either.
|
|
|
|
if isinstance(context, RequestContext):
|
|
|
|
if request is not None and request is not context.request:
|
|
|
|
raise ValueError(
|
|
|
|
"render() was called with a RequestContext and a request "
|
|
|
|
"argument which refer to different requests. Make sure "
|
|
|
|
"that the context argument is a dict or at least that "
|
|
|
|
"the two arguments refer to the same request.")
|
|
|
|
warnings.warn(
|
|
|
|
"render() must be called with a dict, not a RequestContext.",
|
|
|
|
RemovedInDjango20Warning, stacklevel=2)
|
|
|
|
|
|
|
|
elif isinstance(context, Context):
|
|
|
|
warnings.warn(
|
|
|
|
"render() must be called with a dict, not a Context.",
|
|
|
|
RemovedInDjango20Warning, stacklevel=2)
|
|
|
|
|
|
|
|
else:
|
2015-02-10 17:29:00 +08:00
|
|
|
context = make_context(context, request)
|
2015-01-07 03:56:54 +08:00
|
|
|
|
2015-04-25 03:33:03 +08:00
|
|
|
try:
|
|
|
|
return self.template.render(context)
|
|
|
|
except TemplateDoesNotExist as exc:
|
|
|
|
reraise(exc, self.backend)
|
|
|
|
|
|
|
|
|
|
|
|
def reraise(exc, backend):
|
|
|
|
"""
|
|
|
|
Reraise TemplateDoesNotExist while maintaining template debug information.
|
|
|
|
"""
|
|
|
|
new = exc.__class__(*exc.args, tried=exc.tried, backend=backend)
|
|
|
|
if hasattr(exc, 'template_debug'):
|
|
|
|
new.template_debug = exc.template_debug
|
|
|
|
six.reraise(exc.__class__, new, sys.exc_info()[2])
|
2015-05-09 04:10:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
def get_installed_libraries():
|
|
|
|
"""
|
|
|
|
Return the built-in template tag libraries and those from installed
|
|
|
|
applications. Libraries are stored in a dictionary where keys are the
|
|
|
|
individual module names, not the full module paths. Example:
|
|
|
|
django.templatetags.i18n is stored as i18n.
|
|
|
|
"""
|
|
|
|
libraries = {}
|
|
|
|
candidates = ['django.templatetags']
|
|
|
|
candidates.extend(
|
|
|
|
'%s.templatetags' % app_config.name
|
|
|
|
for app_config in apps.get_app_configs())
|
|
|
|
|
|
|
|
for candidate in candidates:
|
|
|
|
try:
|
|
|
|
pkg = import_module(candidate)
|
|
|
|
except ImportError:
|
|
|
|
# No templatetags package defined. This is safe to ignore.
|
|
|
|
continue
|
|
|
|
|
|
|
|
if hasattr(pkg, '__path__'):
|
|
|
|
for name in get_package_libraries(pkg):
|
|
|
|
libraries[name[len(candidate) + 1:]] = name
|
|
|
|
|
|
|
|
return libraries
|
|
|
|
|
|
|
|
|
|
|
|
def get_package_libraries(pkg):
|
|
|
|
"""
|
|
|
|
Recursively yield template tag libraries defined in submodules of a
|
|
|
|
package.
|
|
|
|
"""
|
|
|
|
for entry in walk_packages(pkg.__path__, pkg.__name__ + '.'):
|
|
|
|
try:
|
|
|
|
module = import_module(entry[1])
|
|
|
|
except ImportError as e:
|
|
|
|
raise InvalidTemplateLibrary(
|
|
|
|
"Invalid template library specified. ImportError raised when "
|
|
|
|
"trying to load '%s': %s" % (entry[1], e)
|
|
|
|
)
|
|
|
|
|
|
|
|
if hasattr(module, 'register'):
|
|
|
|
yield entry[1]
|