e2e5bb3dd38748fb9c82fc4b6c0f14ef0e716cb0
[django-pagination.git] / pagination / templatetags / pagination_tags.py
1 try:
2     set
3 except NameError:
4     from sets import Set as set
5 from django import template
6 from django.db.models.query import QuerySet
7 from django.core.paginator import Paginator, InvalidPage
8 from django.conf import settings
9
10 register = template.Library()
11
12 DEFAULT_PAGINATION = getattr(settings, 'PAGINATION_DEFAULT_PAGINATION', 20)
13 DEFAULT_WINDOW = getattr(settings, 'PAGINATION_DEFAULT_WINDOW', 4)
14 DEFAULT_ORPHANS = getattr(settings, 'PAGINATION_DEFAULT_ORPHANS', 0)
15
16 def do_autopaginate(parser, token):
17     """
18     Splits the arguments to the autopaginate tag and formats them correctly.
19     """
20     split = token.split_contents()
21     if len(split) == 2:
22         return AutoPaginateNode(split[1])
23     elif len(split) == 3:
24         try:
25             paginate_by = int(split[2])
26         except ValueError:
27             raise template.TemplateSyntaxError(u'Got %s, but expected integer.' % split[2])
28         return AutoPaginateNode(split[1], paginate_by=paginate_by)
29     elif len(split) == 4:
30         try:
31             paginate_by = int(split[2])
32         except ValueError:
33             raise template.TemplateSyntaxError(u'Got %s, but expected integer.' % split[2])
34         try:
35             orphans = int(split[3])
36         except ValueError:
37             raise template.TemplateSyntaxError(u'Got %s, but expected integer.' % split[3])           
38         return AutoPaginateNode(split[1], paginate_by=paginate_by, orphans=orphans)
39     else:
40         raise template.TemplateSyntaxError('%r tag takes one required argument and one optional argument' % split[0])
41
42 class AutoPaginateNode(template.Node):
43     """
44     Emits the required objects to allow for Digg-style pagination.
45     
46     First, it looks in the current context for the variable specified, and using
47     that object, it emits a simple ``Paginator`` and the current page object 
48     into the context names ``paginator`` and ``page_obj``, respectively.
49     
50     It will then replace the variable specified with only the objects for the
51     current page.
52     
53     .. note::
54         
55         It is recommended to use *{% paginate %}* after using the autopaginate
56         tag.  If you choose not to use *{% paginate %}*, make sure to display the
57         list of available pages, or else the application may seem to be buggy.
58     """
59     def __init__(self, queryset_var, paginate_by=DEFAULT_PAGINATION, orphans=DEFAULT_ORPHANS):
60         self.queryset_var = template.Variable(queryset_var)
61         self.paginate_by = paginate_by
62         self.orphans = orphans
63
64     def render(self, context):
65         key = self.queryset_var.var
66         value = self.queryset_var.resolve(context)
67         paginator = Paginator(value, self.paginate_by, self.orphans)
68         try:
69             page_obj = paginator.page(context['request'].page)
70         except InvalidPage:
71             context[key] = []
72             context['invalid_page'] = True
73             return u''
74         context[key] = page_obj.object_list
75         context['paginator'] = paginator
76         context['page_obj'] = page_obj
77         return u''
78
79 def paginate(context, window=DEFAULT_WINDOW):
80     """
81     Renders the ``pagination/pagination.html`` template, resulting in a
82     Digg-like display of the available pages, given the current page.  If there
83     are too many pages to be displayed before and after the current page, then
84     elipses will be used to indicate the undisplayed gap between page numbers.
85     
86     Requires one argument, ``context``, which should be a dictionary-like data
87     structure and must contain the following keys:
88     
89     ``paginator``
90         A ``Paginator`` or ``QuerySetPaginator`` object.
91     
92     ``page_obj``
93         This should be the result of calling the page method on the 
94         aforementioned ``Paginator`` or ``QuerySetPaginator`` object, given
95         the current page.
96     
97     This same ``context`` dictionary-like data structure may also include:
98     
99     ``getvars``
100         A dictionary of all of the **GET** parameters in the current request.
101         This is useful to maintain certain types of state, even when requesting
102         a different page.
103         """
104     try:
105         paginator = context['paginator']
106         page_obj = context['page_obj']
107         page_range = paginator.page_range
108         # First and last are simply the first *n* pages and the last *n* pages,
109         # where *n* is the current window size.
110         first = set(page_range[:window])
111         last = set(page_range[-window:])
112         # Now we look around our current page, making sure that we don't wrap
113         # around.
114         current_start = page_obj.number-1-window
115         if current_start < 0:
116             current_start = 0
117         current_end = page_obj.number-1+window
118         if current_end < 0:
119             current_end = 0
120         current = set(page_range[current_start:current_end])
121         pages = []
122         # If there's no overlap between the first set of pages and the current
123         # set of pages, then there's a possible need for elusion.
124         if len(first.intersection(current)) == 0:
125             first_list = sorted(list(first))
126             second_list = sorted(list(current))
127             pages.extend(first_list)
128             diff = second_list[0] - first_list[-1]
129             # If there is a gap of two, between the last page of the first
130             # set and the first page of the current set, then we're missing a
131             # page.
132             if diff == 2:
133                 pages.append(second_list[0] - 1)
134             # If the difference is just one, then there's nothing to be done,
135             # as the pages need no elusion and are correct.
136             elif diff == 1:
137                 pass
138             # Otherwise, there's a bigger gap which needs to be signaled for
139             # elusion, by pushing a None value to the page list.
140             else:
141                 pages.append(None)
142             pages.extend(second_list)
143         else:
144             pages.extend(sorted(list(first.union(current))))
145         # If there's no overlap between the current set of pages and the last
146         # set of pages, then there's a possible need for elusion.
147         if len(current.intersection(last)) == 0:
148             second_list = sorted(list(last))
149             diff = second_list[0] - pages[-1]
150             # If there is a gap of two, between the last page of the current
151             # set and the first page of the last set, then we're missing a 
152             # page.
153             if diff == 2:
154                 pages.append(second_list[0] - 1)
155             # If the difference is just one, then there's nothing to be done,
156             # as the pages need no elusion and are correct.
157             elif diff == 1:
158                 pass
159             # Otherwise, there's a bigger gap which needs to be signaled for
160             # elusion, by pushing a None value to the page list.
161             else:
162                 pages.append(None)
163             pages.extend(second_list)
164         else:
165             pages.extend(sorted(list(last.difference(current))))
166         to_return = {
167             'pages': pages,
168             'page_obj': page_obj,
169             'paginator': paginator,
170             'is_paginated': paginator.count > paginator.per_page,
171         }
172         if 'request' in context:
173             getvars = context['request'].GET.copy()
174             if 'page' in getvars:
175                 del getvars['page']
176             if len(getvars.keys()) > 0:
177                 to_return['getvars'] = "&%s" % getvars.urlencode()
178             else:
179                 to_return['getvars'] = ''
180         return to_return
181     except KeyError:
182         return {}
183 register.inclusion_tag('pagination/pagination.html', takes_context=True)(paginate)
184 register.tag('autopaginate', do_autopaginate)