added LP 2016 videos to the front page
[mediagoblin-libreplanet.git] / mediagoblin_libreplanet / views.py
CommitLineData
724f8731
DT
1# MediaGoblin for LibrePlanet
2# Copyright (C) 2015 David Thompson <davet@gnu.org>
3#
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.
8#
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.
13#
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/>.
16
17from mediagoblin import mg_globals
18from mediagoblin.db.models import MediaEntry
e39ca90b 19from mediagoblin.db.util import media_entries_for_tag_slug
0319c127 20from lp_helper import media_entries_for_tag_slug_case_insensitive
724f8731
DT
21from mediagoblin.tools.pagination import Pagination
22from mediagoblin.tools.response import render_to_response
23from mediagoblin.decorators import uses_pagination
24
44432a3b
AE
25def type_listing(media_type, title, request, page, tag=None):
26 if (tag == None):
27 cursor = MediaEntry.query
28 else:
e39ca90b
AE
29 ## case insensitive tag search is not working yet -- sudoman
30 #cursor = media_entries_for_tag_slug_case_insensitive(request.db, tag)
31 cursor = media_entries_for_tag_slug(request.db, tag)
44432a3b
AE
32
33 cursor = cursor.\
b1c32b81
DT
34 filter((MediaEntry.media_type == media_type)
35 & (MediaEntry.state == u'processed')).\
724f8731
DT
36 order_by(MediaEntry.created.desc())
37
38 pagination = Pagination(page, cursor)
39 media_entries = pagination()
40
41 return render_to_response(
42 request,
43 'libreplanet/listing.html',
44 {'title': title,
45 'media_entries': media_entries,
46 'pagination': pagination})
47
48
49@uses_pagination
50def image_listing(request, page):
51 return type_listing(u'mediagoblin.media_types.image', 'Photos', request, page)
52
53@uses_pagination
54def video_listing(request, page):
55 return type_listing(u'mediagoblin.media_types.video', 'Videos', request, page)
f10f1755 56
c8265415 57
f10f1755
AE
58@uses_pagination
59def featured_image_listing(request, page):
60 return type_listing(u'mediagoblin.media_types.image', 'Featured Photos', request, page, "featured")
61
62@uses_pagination
63def featured_video_listing(request, page):
64 return type_listing(u'mediagoblin.media_types.video', 'Featured Videos', request, page, "featured")
65