mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-04-20 23:21:00 +00:00
git-svn-id: https://django-dbtemplates.googlecode.com/svn/trunk@88 cfb8ba98-e953-0410-9cff-959ffddf5974 committer: leidel <leidel@cfb8ba98-e953-0410-9cff-959ffddf5974> --HG-- extra : convert_revision : 564571948adb06cdda915b665aa61d00b3118ed0
35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
import os
|
|
from django.conf import settings
|
|
from django.contrib.sites.models import Site
|
|
from django.template import TemplateDoesNotExist
|
|
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
from dbtemplates.models import Template, backend
|
|
|
|
def load_template_source(template_name, template_dirs=None):
|
|
"""
|
|
Tries to load the template from the dbtemplates cache backend specified
|
|
by the DBTEMPLATES_CACHE_BACKEND setting. If it does not find a template
|
|
it falls back to query the database field ``name`` with the template path
|
|
and ``sites`` with the current site.
|
|
"""
|
|
site = Site.objects.get_current()
|
|
display_name = 'db:%s:%s:%s' % (settings.DATABASE_ENGINE,
|
|
template_name, site.domain)
|
|
if backend:
|
|
try:
|
|
backend_template = backend.load(template_name)
|
|
if backend_template:
|
|
return backend_template, template_name
|
|
except:
|
|
pass
|
|
try:
|
|
template = Template.on_site.get(name__exact=template_name)
|
|
# Save in cache backend explicitly if manually deleted or invalidated
|
|
if backend:
|
|
backend.save(template_name, template.content)
|
|
return (template.content, display_name)
|
|
except:
|
|
pass
|
|
raise TemplateDoesNotExist, template_name
|
|
load_template_source.is_usable = True
|