Removed template container discovery in favor of (potentially) larger queries.
[philo.git] / philo / templatetags / containers.py
1 """
2 The container template tags are automatically included as builtins if :mod:`philo` is an installed app.
3
4 """
5
6 from django import template
7 from django.conf import settings
8 from django.contrib.contenttypes.models import ContentType
9 from django.core.exceptions import ObjectDoesNotExist
10 from django.db.models import Q
11 from django.utils.safestring import SafeUnicode, mark_safe
12
13
14 register = template.Library()
15
16
17 CONTAINER_CONTEXT_KEY = 'philo_container_context'
18
19
20 class ContainerContext(object):
21         def __init__(self, contentlets, references):
22                 self.contentlets = dict(((c.name, c) for c in contentlets))
23                 self.references = dict((((c.name, ContentType.objects.get_for_id(c.content_type_id)), c) for c in references))
24
25
26 class ContainerNode(template.Node):
27         def __init__(self, name, references=None, as_var=None):
28                 self.name = name
29                 self.as_var = as_var
30                 self.references = references
31         
32         def render(self, context):
33                 container_content = self.get_container_content(context)
34                 
35                 if self.as_var:
36                         context[self.as_var] = container_content
37                         return ''
38                 
39                 return container_content
40         
41         def get_container_content(self, context):
42                 try:
43                         container_context = context.render_context[CONTAINER_CONTEXT_KEY]
44                 except KeyError:
45                         try:
46                                 page = context['page']
47                         except KeyError:
48                                 return settings.TEMPLATE_STRING_IF_INVALID
49                         
50                         contentlets = page.contentlets.all()
51                         references = page.contentreferences.all()
52                         
53                         container_context = ContainerContext(contentlets, references)
54                         context.render_context[CONTAINER_CONTEXT_KEY] = container_context
55                 
56                 if self.references:
57                         # Then it's a content reference.
58                         try:
59                                 contentreference = container_context.references[(self.name, self.references)]
60                         except KeyError:
61                                 content = ''
62                         else:
63                                 content = contentreference.content
64                 else:
65                         # Otherwise it's a contentlet.
66                         try:
67                                 contentlet = container_context.contentlets[self.name]
68                         except KeyError:
69                                 content = ''
70                         else:
71                                 content = contentlet.content
72                 return content
73
74
75 @register.tag
76 def container(parser, token):
77         """
78         If a template using this tag is used to render a :class:`.Page`, that :class:`.Page` will have associated content which can be set in the admin interface. If a content type is referenced, then a :class:`.ContentReference` object will be created; otherwise, a :class:`.Contentlet` object will be created.
79         
80         Usage::
81         
82                 {% container <name> [[references <app_label>.<model_name>] as <variable>] %}
83         
84         """
85         params = token.split_contents()
86         if len(params) >= 2:
87                 tag = params[0]
88                 name = params[1].strip('"')
89                 references = None
90                 as_var = None
91                 if len(params) > 2:
92                         remaining_tokens = params[2:]
93                         while remaining_tokens:
94                                 option_token = remaining_tokens.pop(0)
95                                 if option_token == 'references':
96                                         try:
97                                                 app_label, model = remaining_tokens.pop(0).strip('"').split('.')
98                                                 references = ContentType.objects.get_by_natural_key(app_label, model)
99                                         except IndexError:
100                                                 raise template.TemplateSyntaxError('"%s" template tag option "references" requires an argument specifying a content type' % tag)
101                                         except ValueError:
102                                                 raise template.TemplateSyntaxError('"%s" template tag option "references" requires an argument of the form app_label.model (see django.contrib.contenttypes)' % tag)
103                                         except ObjectDoesNotExist:
104                                                 raise template.TemplateSyntaxError('"%s" template tag option "references" requires an argument of the form app_label.model which refers to an installed content type (see django.contrib.contenttypes)' % tag)
105                                 elif option_token == 'as':
106                                         try:
107                                                 as_var = remaining_tokens.pop(0)
108                                         except IndexError:
109                                                 raise template.TemplateSyntaxError('"%s" template tag option "as" requires an argument specifying a variable name' % tag)
110                         if references and not as_var:
111                                 raise template.TemplateSyntaxError('"%s" template tags using "references" option require additional use of the "as" option specifying a variable name' % tag)
112                 return ContainerNode(name, references, as_var)
113                 
114         else: # error
115                 raise template.TemplateSyntaxError('"%s" template tag provided without arguments (at least one required)' % tag)