Finished splitting util.py into separate files.
[mediagoblin.git] / mediagoblin / listings / views.py
1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011 MediaGoblin contributors. See AUTHORS.
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
17 from mediagoblin.db.util import DESCENDING
18
19 from mediagoblin.tools.pagination import Pagination
20 from mediagoblin.tools.response import render_to_response
21 from mediagoblin.decorators import uses_pagination
22
23 from werkzeug.contrib.atom import AtomFeed
24
25
26 def _get_tag_name_from_entries(media_entries, tag_slug):
27 """
28 Get a tag name from the first entry by looking it up via its slug.
29 """
30 # ... this is slightly hacky looking :\
31 tag_name = tag_slug
32 if media_entries.count():
33 for tag in media_entries[0]['tags']:
34 if tag['slug'] == tag_slug:
35 tag_name == tag['name']
36 break
37
38 return tag_name
39
40
41 @uses_pagination
42 def tag_listing(request, page):
43 """'Gallery'/listing for this tag slug"""
44 tag_slug = request.matchdict[u'tag']
45
46 cursor = request.db.MediaEntry.find(
47 {u'state': u'processed',
48 u'tags.slug': tag_slug})
49 cursor = cursor.sort('created', DESCENDING)
50
51 pagination = Pagination(page, cursor)
52 media_entries = pagination()
53
54 tag_name = _get_tag_name_from_entries(media_entries, tag_slug)
55
56 return render_to_response(
57 request,
58 'mediagoblin/listings/tag.html',
59 {'tag_slug': tag_slug,
60 'tag_name': tag_name,
61 'media_entries': media_entries,
62 'pagination': pagination})
63
64
65 ATOM_DEFAULT_NR_OF_UPDATED_ITEMS = 15
66
67 def tag_atom_feed(request):
68 """
69 generates the atom feed with the tag images
70 """
71 tag_slug = request.matchdict[u'tag']
72
73 cursor = request.db.MediaEntry.find(
74 {u'state': u'processed',
75 u'tags.slug': tag_slug})
76 cursor = cursor.sort('created', DESCENDING)
77 cursor = cursor.limit(ATOM_DEFAULT_NR_OF_UPDATED_ITEMS)
78
79 feed = AtomFeed(
80 "MediaGoblin: Feed for tag '%s'" % tag_slug,
81 feed_url=request.url,
82 url=request.host_url)
83
84 for entry in cursor:
85 feed.add(entry.get('title'),
86 entry.get('description_html'),
87 content_type='html',
88 author=entry.uploader()['username'],
89 updated=entry.get('created'),
90 url=entry.url_for_self(request.urlgen))
91
92 return feed.get_response()