Commit | Line | Data |
---|---|---|
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 | ||
17 | import logging | |
18 | import os | |
19 | ||
20 | from mediagoblin import mg_globals | |
21 | from mediagoblin.tools.pluginapi import get_config, register_template_path, register_routes | |
22 | from mediagoblin.db.models import MediaEntry | |
23 | from mediagoblin.db.util import media_entries_for_tag_slug | |
24 | from mediagoblin.tools.pagination import Pagination | |
25 | from mediagoblin.tools.response import render_to_response | |
2530cc8e | 26 | from mediagoblin.tools.licenses import SORTED_LICENSES, SUPPORTED_LICENSES, License |
724f8731 DT |
27 | from mediagoblin.decorators import uses_pagination, user_not_banned |
28 | ||
2530cc8e DT |
29 | # Add CC BY-SA 4.0 to licenses |
30 | cc_by_sa_4 = License("CC BY-SA 4.0", | |
31 | "Creative Commons Attribution-ShareAlike 4.0 International", | |
32 | "https://creativecommons.org/licenses/by-sa/4.0/") | |
33 | SORTED_LICENSES.insert(1, cc_by_sa_4) | |
34 | SUPPORTED_LICENSES[cc_by_sa_4.uri] = cc_by_sa_4 | |
35 | ||
724f8731 DT |
36 | PLUGIN_DIR = os.path.dirname(__file__) |
37 | MAX_HOME_ITEMS = 20 | |
2cfcf16b | 38 | MAX_HOME_FEATURED_ITEMS = 10 |
724f8731 DT |
39 | |
40 | _log = logging.getLogger(__name__) | |
41 | ||
42 | # This is the function that gets called when the setup | |
43 | # hook fires. | |
44 | def setup_plugin(): | |
45 | _log.info("Setting up Libreplanet...") | |
46 | ||
47 | # Register the template path. | |
48 | register_template_path(os.path.join(PLUGIN_DIR, 'templates')) | |
49 | ||
2cfcf16b | 50 | def lp_media_for_type(db, type, tag=None, max_items=MAX_HOME_ITEMS): |
2fba5967 AE |
51 | if (tag == None): |
52 | cursor = MediaEntry.query | |
53 | else: | |
54 | cursor = media_entries_for_tag_slug(db, tag) | |
55 | ||
56 | return cursor.\ | |
b1c32b81 DT |
57 | filter((MediaEntry.media_type == type) |
58 | & (MediaEntry.state == u'processed')).\ | |
724f8731 | 59 | order_by(MediaEntry.created.desc()).\ |
2cfcf16b | 60 | limit(max_items) |
724f8731 DT |
61 | |
62 | @user_not_banned | |
63 | def frontpage_view(request): | |
26712623 AE |
64 | images = lp_media_for_type(request.db, u'mediagoblin.media_types.image') |
65 | videos = lp_media_for_type(request.db, u'mediagoblin.media_types.video') | |
2cfcf16b AE |
66 | featured_images = lp_media_for_type(request.db, u'mediagoblin.media_types.image', "featured", MAX_HOME_FEATURED_ITEMS) |
67 | featured_videos = lp_media_for_type(request.db, u'mediagoblin.media_types.video', "featured", MAX_HOME_FEATURED_ITEMS) | |
724f8731 DT |
68 | |
69 | return render_to_response( | |
70 | request, 'libreplanet/root.html', | |
71 | {'images': images, | |
72 | 'videos': videos, | |
26712623 AE |
73 | 'featured_images': featured_images, |
74 | 'featured_videos': featured_videos, | |
724f8731 DT |
75 | 'allow_registration': mg_globals.app_config["allow_registration"]}) |
76 | ||
77 | def frontpage_view_hook(): | |
78 | return frontpage_view | |
79 | ||
80 | register_routes([('all-videos', '/videos', | |
7f884782 | 81 | 'mediagoblin.plugins.libreplanet.views:video_listing'), |
724f8731 | 82 | ('all-photos', '/photos', |
35fd7d3b | 83 | 'mediagoblin.plugins.libreplanet.views:image_listing'), |
f10f1755 | 84 | ('all-photos', '/videos/featured', |
35fd7d3b | 85 | 'mediagoblin.plugins.libreplanet.views:featured_video_listing'), |
f10f1755 AE |
86 | ('all-photos', '/photos/featured', |
87 | 'mediagoblin.plugins.libreplanet.views:featured_image_listing') | |
724f8731 DT |
88 | ]) |
89 | ||
90 | # This is a dict that specifies which hooks this plugin uses. | |
91 | # This one only uses one hook: setup. | |
92 | hooks = { | |
93 | 'setup': setup_plugin, | |
94 | 'frontpage_view': frontpage_view_hook | |
95 | } |