added GFDL license to license list
[mediagoblin-libreplanet.git] / mediagoblin_libreplanet / __init__.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
17import logging
18import os
19
20from mediagoblin import mg_globals
a0364380 21from mediagoblin.tools.pluginapi import get_config, register_template_path, register_routes, register_template_hooks
724f8731 22from mediagoblin.db.models import MediaEntry
e39ca90b 23from mediagoblin.db.util import media_entries_for_tag_slug
724f8731
DT
24from mediagoblin.tools.pagination import Pagination
25from mediagoblin.tools.response import render_to_response
2530cc8e 26from mediagoblin.tools.licenses import SORTED_LICENSES, SUPPORTED_LICENSES, License
724f8731
DT
27from mediagoblin.decorators import uses_pagination, user_not_banned
28
4c03fef2
AE
29# Add three CC BY non-NC 4.0 to licenses
30cc_by_4 = License("CC BY 4.0",
31 "Creative Commons Attribution 4.0 International",
32 "https://creativecommons.org/licenses/by/4.0/")
2530cc8e
DT
33cc_by_sa_4 = License("CC BY-SA 4.0",
34 "Creative Commons Attribution-ShareAlike 4.0 International",
35 "https://creativecommons.org/licenses/by-sa/4.0/")
4c03fef2
AE
36cc_by_nd_4 = License("CC BY-ND 4.0",
37 "Creative Commons Attribution-NoDerivatives 4.0 International",
38 "https://creativecommons.org/licenses/by-nd/4.0/")
4fdf57b4
AE
39gfdl_1_3 = License("GFDL 1.3",
40 "GNU Free Documentation License 1.3",
41 "https://www.gnu.org/licenses/fdl-1.3.en.html")
4c03fef2
AE
42SORTED_LICENSES.insert(1, cc_by_4)
43SORTED_LICENSES.insert(2, cc_by_sa_4)
44SORTED_LICENSES.insert(3, cc_by_nd_4)
4fdf57b4 45SORTED_LICENSES.insert(4, gfdl_1_3)
4c03fef2 46SUPPORTED_LICENSES[cc_by_4.uri] = cc_by_4
2530cc8e 47SUPPORTED_LICENSES[cc_by_sa_4.uri] = cc_by_sa_4
4c03fef2 48SUPPORTED_LICENSES[cc_by_nd_4.uri] = cc_by_nd_4
4fdf57b4 49SUPPORTED_LICENSES[gfdl_1_3.uri] = gfdl_1_3
2530cc8e 50
724f8731 51PLUGIN_DIR = os.path.dirname(__file__)
ae3cb218 52
7c3fc209
AE
53MAX_HOME_ITEMS_DEFAULT = 10
54
55MAX_HOME_ALL_VIDEO_ITEMS = 10
56MAX_HOME_ALL_PHOTO_ITEMS = 20
2cfcf16b 57MAX_HOME_FEATURED_ITEMS = 10
88cb2585
AE
58MAX_HOME_LP_ITEMS = 10
59
a356d743
AE
60# make tags lowercase and use dashes in place of spaces.
61# uppercase tags will be included by the lowercase form.
ae3cb218 62FEATURED_TAG = "featured"
a356d743
AE
63LATEST_LP_VIDEO_TAG = "libreplanet-2016-video"
64
724f8731
DT
65
66_log = logging.getLogger(__name__)
67
68# This is the function that gets called when the setup
69# hook fires.
70def setup_plugin():
71 _log.info("Setting up Libreplanet...")
72
73 # Register the template path.
74 register_template_path(os.path.join(PLUGIN_DIR, 'templates'))
75
7c3fc209 76def lp_media_for_type(db, type, tag=None, max_items=MAX_HOME_ITEMS_DEFAULT):
2fba5967
AE
77 if (tag == None):
78 cursor = MediaEntry.query
79 else:
e39ca90b 80 cursor = media_entries_for_tag_slug(db, tag)
2fba5967
AE
81
82 return cursor.\
b1c32b81
DT
83 filter((MediaEntry.media_type == type)
84 & (MediaEntry.state == u'processed')).\
724f8731 85 order_by(MediaEntry.created.desc()).\
2cfcf16b 86 limit(max_items)
724f8731
DT
87
88@user_not_banned
89def frontpage_view(request):
7c3fc209
AE
90 images = lp_media_for_type(request.db, u'mediagoblin.media_types.image', None, MAX_HOME_ALL_PHOTO_ITEMS)
91 videos = lp_media_for_type(request.db, u'mediagoblin.media_types.video', None, MAX_HOME_ALL_VIDEO_ITEMS)
88cb2585 92
bfedf48a 93 lp2016_videos = lp_media_for_type(request.db, u'mediagoblin.media_types.video', LATEST_LP_VIDEO_TAG, MAX_HOME_LP_ITEMS)
88cb2585 94
ae3cb218
AE
95 featured_images = lp_media_for_type(request.db, u'mediagoblin.media_types.image', FEATURED_TAG, MAX_HOME_FEATURED_ITEMS)
96 featured_videos = lp_media_for_type(request.db, u'mediagoblin.media_types.video', FEATURED_TAG, MAX_HOME_FEATURED_ITEMS)
724f8731
DT
97
98 return render_to_response(
99 request, 'libreplanet/root.html',
100 {'images': images,
101 'videos': videos,
bfedf48a 102 'lp2016_videos': lp2016_videos,
26712623
AE
103 'featured_images': featured_images,
104 'featured_videos': featured_videos,
724f8731
DT
105 'allow_registration': mg_globals.app_config["allow_registration"]})
106
107def frontpage_view_hook():
108 return frontpage_view
109
110register_routes([('all-videos', '/videos',
7f884782 111 'mediagoblin.plugins.libreplanet.views:video_listing'),
724f8731 112 ('all-photos', '/photos',
35fd7d3b 113 'mediagoblin.plugins.libreplanet.views:image_listing'),
c8265415 114
86b9f47d 115 ('featured-videos', '/videos/featured',
35fd7d3b 116 'mediagoblin.plugins.libreplanet.views:featured_video_listing'),
86b9f47d 117 ('featured-photos', '/photos/featured',
3d204960 118 'mediagoblin.plugins.libreplanet.views:featured_image_listing')
724f8731
DT
119 ])
120
121# This is a dict that specifies which hooks this plugin uses.
122# This one only uses one hook: setup.
123hooks = {
124 'setup': setup_plugin,
125 'frontpage_view': frontpage_view_hook
126}
a0364380
AE
127
128register_template_hooks(
2b91cd63
AE
129 {'header_left': "libreplanet/banner.html",
130 'header_extra': "libreplanet/join.html"}
a0364380
AE
131)
132