2015-07-06 20:16:43 +00:00
|
|
|
from dbtemplates.conf import settings
|
2025-02-16 20:08:16 +00:00
|
|
|
from dbtemplates.utils.cache import (
|
|
|
|
|
add_template_to_cache,
|
|
|
|
|
remove_cached_template,
|
|
|
|
|
)
|
2015-07-06 20:16:43 +00:00
|
|
|
from dbtemplates.utils.template import get_template_source
|
2025-02-16 20:08:16 +00:00
|
|
|
|
2015-07-06 20:16:43 +00:00
|
|
|
from django.contrib.sites.managers import CurrentSiteManager
|
|
|
|
|
from django.contrib.sites.models import Site
|
2007-07-20 14:30:48 +00:00
|
|
|
from django.db import models
|
2008-11-02 00:05:38 +00:00
|
|
|
from django.db.models import signals
|
2008-10-24 07:56:51 +00:00
|
|
|
from django.template import TemplateDoesNotExist
|
2025-02-16 20:08:16 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2012-05-07 08:57:23 +00:00
|
|
|
|
2010-06-24 09:43:41 +00:00
|
|
|
|
2025-05-29 21:31:49 +00:00
|
|
|
class Template(models.Model):
|
2007-07-20 14:30:48 +00:00
|
|
|
"""
|
|
|
|
|
Defines a template model for use with the database template loader.
|
|
|
|
|
The field ``name`` is the equivalent to the filename of a static template.
|
|
|
|
|
"""
|
2025-06-11 04:17:05 +00:00
|
|
|
|
|
|
|
|
id = models.AutoField(
|
|
|
|
|
primary_key=True, verbose_name=_("ID"), serialize=False, auto_created=True
|
|
|
|
|
)
|
|
|
|
|
name = models.CharField(
|
|
|
|
|
_("name"), max_length=100, help_text=_("Example: 'flatpages/default.html'")
|
|
|
|
|
)
|
|
|
|
|
content = models.TextField(_("content"), blank=True)
|
|
|
|
|
sites = models.ManyToManyField(Site, verbose_name=_("sites"), blank=True)
|
|
|
|
|
creation_date = models.DateTimeField(_("creation date"), auto_now_add=True)
|
|
|
|
|
last_changed = models.DateTimeField(_("last changed"), auto_now=True)
|
2008-05-13 23:42:57 +00:00
|
|
|
|
2008-12-26 17:39:48 +00:00
|
|
|
objects = models.Manager()
|
2025-06-11 04:17:05 +00:00
|
|
|
on_site = CurrentSiteManager("sites")
|
2008-12-26 17:39:48 +00:00
|
|
|
|
2007-07-20 14:30:48 +00:00
|
|
|
class Meta:
|
2025-06-11 04:17:05 +00:00
|
|
|
db_table = "django_template"
|
|
|
|
|
verbose_name = _("template")
|
|
|
|
|
verbose_name_plural = _("templates")
|
|
|
|
|
ordering = ("name",)
|
2008-05-13 23:42:57 +00:00
|
|
|
|
2018-02-12 19:12:38 +00:00
|
|
|
def __str__(self):
|
2007-07-20 14:30:48 +00:00
|
|
|
return self.name
|
2010-09-21 12:21:30 +00:00
|
|
|
|
|
|
|
|
def populate(self, name=None):
|
|
|
|
|
"""
|
|
|
|
|
Tries to find a template with the same name and populates
|
|
|
|
|
the content field if found.
|
|
|
|
|
"""
|
|
|
|
|
if name is None:
|
|
|
|
|
name = self.name
|
|
|
|
|
try:
|
2011-04-11 17:18:55 +00:00
|
|
|
source = get_template_source(name)
|
2010-09-21 12:21:30 +00:00
|
|
|
except TemplateDoesNotExist:
|
|
|
|
|
pass
|
2025-06-11 04:16:03 +00:00
|
|
|
else:
|
|
|
|
|
self.content = source
|
2010-09-21 12:21:30 +00:00
|
|
|
|
2009-10-19 00:30:52 +00:00
|
|
|
|
2011-07-01 13:44:09 +00:00
|
|
|
def add_default_site(instance, **kwargs):
|
|
|
|
|
"""
|
|
|
|
|
Called via Django's signals to cache the templates, if the template
|
|
|
|
|
in the database was added or changed, only if
|
|
|
|
|
DBTEMPLATES_ADD_DEFAULT_SITE setting is set.
|
|
|
|
|
"""
|
2025-06-10 08:14:14 +00:00
|
|
|
instance.sites.add(Site.objects.get_current())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def populate_empty_content(instance, **kwargs):
|
|
|
|
|
# If content is empty look for a template with the given name and
|
|
|
|
|
# populate the template instance with its content.
|
|
|
|
|
if not instance.content:
|
|
|
|
|
instance.populate()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if settings.DBTEMPLATES_ADD_DEFAULT_SITE:
|
|
|
|
|
signals.post_save.connect(add_default_site, sender=Template)
|
2011-07-01 13:44:09 +00:00
|
|
|
|
2025-06-10 08:14:14 +00:00
|
|
|
if settings.DBTEMPLATES_AUTO_POPULATE_CONTENT:
|
|
|
|
|
signals.pre_save.connect(populate_empty_content, sender=Template)
|
2011-07-01 13:44:09 +00:00
|
|
|
|
2011-04-11 17:18:55 +00:00
|
|
|
signals.post_save.connect(add_template_to_cache, sender=Template)
|
|
|
|
|
signals.pre_delete.connect(remove_cached_template, sender=Template)
|