I think the "'s account" is a waste of space
[mediagoblin.git] / mediagoblin / decorators.py
CommitLineData
bb3eaf20
CAW
1# GNU MediaGoblin -- federated, autonomous media hosting
2# Copyright (C) 2011 Free Software Foundation, Inc
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
18from webob import exc
19
9150244a 20from mediagoblin.util import redirect
3efdd97c 21from mediagoblin.db.util import ObjectId, InvalidId
724933b1 22
bb3eaf20
CAW
23
24def _make_safe(decorator, original):
25 """
26 Copy the function data from the old function to the decorator.
27 """
28 decorator.__name__ = original.__name__
29 decorator.__dict__ = original.__dict__
30 decorator.__doc__ = original.__doc__
31 return decorator
32
33
34def require_active_login(controller):
35 """
36 Require an active login from the user.
37 """
38 def new_controller_func(request, *args, **kwargs):
a72c504b
CAW
39 if request.user and \
40 request.user.get('status') == u'needs_email_verification':
9150244a
E
41 return redirect(request,
42 'mediagoblin.auth.verify_email_notice')
bcec749b 43 elif not request.user or request.user.get('status') != u'active':
bb3eaf20 44 return exc.HTTPFound(
7eba0306
CAW
45 location="%s?next=%s" % (
46 request.urlgen("mediagoblin.auth.login"),
47 request.path_info))
bb3eaf20
CAW
48
49 return controller(request, *args, **kwargs)
50
51 return _make_safe(new_controller_func, controller)
3eb6fc4f
BK
52
53
54def uses_pagination(controller):
55 """
56 Check request GET 'page' key for wrong values
57 """
58 def wrapper(request, *args, **kwargs):
59 try:
1301a8ad 60 page = int(request.GET.get('page', 1))
3eb6fc4f
BK
61 if page < 0:
62 return exc.HTTPNotFound()
63 except ValueError:
64 return exc.HTTPNotFound()
3eb6fc4f 65
439e37f7 66 return controller(request, page=page, *args, **kwargs)
3eb6fc4f 67
3c2567ac 68 return _make_safe(wrapper, controller)
724933b1
CAW
69
70
01674e10 71def get_user_media_entry(controller):
724933b1
CAW
72 """
73 Pass in a MediaEntry based off of a url component
74 """
75 def wrapper(request, *args, **kwargs):
01674e10
CAW
76 user = request.db.User.find_one(
77 {'username': request.matchdict['user']})
78
79 if not user:
80 return exc.HTTPNotFound()
81
724933b1
CAW
82 media = request.db.MediaEntry.find_one(
83 {'slug': request.matchdict['media'],
01674e10 84 'state': 'processed',
16509be1 85 'uploader': user['_id']})
724933b1
CAW
86
87 # no media via slug? Grab it via ObjectId
88 if not media:
01674e10
CAW
89 try:
90 media = request.db.MediaEntry.find_one(
91 {'_id': ObjectId(request.matchdict['media']),
92 'state': 'processed',
16509be1 93 'uploader': user['_id']})
01674e10
CAW
94 except InvalidId:
95 return exc.HTTPNotFound()
724933b1
CAW
96
97 # Still no media? Okay, 404.
98 if not media:
99 return exc.HTTPNotFound()
100
101 return controller(request, media=media, *args, **kwargs)
102
103 return _make_safe(wrapper, controller)
aba81c9f
E
104
105def get_media_entry_by_id(controller):
106 """
107 Pass in a MediaEntry based off of a url component
108 """
109 def wrapper(request, *args, **kwargs):
110 try:
111 media = request.db.MediaEntry.find_one(
112 {'_id': ObjectId(request.matchdict['media']),
113 'state': 'processed'})
114 except InvalidId:
115 return exc.HTTPNotFound()
116
117 # Still no media? Okay, 404.
118 if not media:
119 return exc.HTTPNotFound()
120
121 return controller(request, media=media, *args, **kwargs)
122
123 return _make_safe(wrapper, controller)