1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU Affero General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU Affero General Public License for more details.
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 from math
import ceil
, floor
20 from itertools
import count
21 from werkzeug
.datastructures
import MultiDict
23 from six
.moves
import zip
25 PAGINATION_DEFAULT_PER_PAGE
= 30
28 class Pagination(object):
30 Pagination class for database queries.
32 Initialization through __init__(self, cursor, page=1, per_page=2),
33 get actual data slice through __call__().
36 def __init__(self
, page
, cursor
, per_page
=PAGINATION_DEFAULT_PER_PAGE
,
39 Initializes Pagination
42 - page: requested page
43 - per_page: number of objects per page
45 - jump_to_id: object id, sets the page to the page containing the
46 object with id == jump_to_id.
49 self
.per_page
= per_page
51 self
.total_count
= self
.cursor
.count()
55 cursor
= copy
.copy(self
.cursor
)
57 for (doc
, increment
) in list(zip(cursor
, count(0))):
58 if doc
.id == jump_to_id
:
59 self
.page
= 1 + int(floor(increment
/ self
.per_page
))
61 self
.active_id
= jump_to_id
66 Returns slice of objects for the requested page
68 # TODO, return None for out of index so templates can
69 # distinguish between empty galleries and out-of-bound pages???
70 return self
.cursor
.slice(
71 (self
.page
- 1) * self
.per_page
,
72 self
.page
* self
.per_page
)
76 return int(ceil(self
.total_count
/ float(self
.per_page
)))
84 return self
.page
< self
.pages
86 def iter_pages(self
, left_edge
=2, left_current
=2,
87 right_current
=5, right_edge
=2):
89 for num
in xrange(1, self
.pages
+ 1):
90 if num
<= left_edge
or \
91 (num
> self
.page
- left_current
- 1 and \
92 num
< self
.page
+ right_current
) or \
93 num
> self
.pages
- right_edge
:
99 def get_page_url_explicit(self
, base_url
, get_params
, page_no
):
101 Get a page url by adding a page= parameter to the base url
103 if isinstance(get_params
, MultiDict
):
104 new_get_params
= get_params
.to_dict()
106 new_get_params
= dict(get_params
) or {}
108 new_get_params
['page'] = page_no
110 base_url
, urllib
.urlencode(new_get_params
))
112 def get_page_url(self
, request
, page_no
):
114 Get a new page url based of the request, and the new page number.
116 This is a nice wrapper around get_page_url_explicit()
118 return self
.get_page_url_explicit(
119 request
.full_path
, request
.GET
, page_no
)