Merge remote-tracking branch 'refs/remotes/rodney757/auth_refactor'
[mediagoblin.git] / mediagoblin / notifications / views.py
1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011, 2012 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.tools.response import redirect
18 from mediagoblin.tools.translate import pass_to_ugettext as _
19 from mediagoblin.decorators import get_user_media_entry, require_active_login
20 from mediagoblin import messages
21
22 from mediagoblin.notifications import (add_comment_subscription,
23 silence_comment_subscription, mark_comment_notification_seen,
24 get_notifications)
25
26
27 @get_user_media_entry
28 @require_active_login
29 def subscribe_comments(request, media):
30
31 add_comment_subscription(request.user, media)
32
33 messages.add_message(request,
34 messages.SUCCESS,
35 _('Subscribed to comments on %s!')
36 % media.title)
37
38 return redirect(request, location=media.url_for_self(request.urlgen))
39
40
41 @get_user_media_entry
42 @require_active_login
43 def silence_comments(request, media):
44 silence_comment_subscription(request.user, media)
45
46 messages.add_message(request,
47 messages.SUCCESS,
48 _('You will not receive notifications for comments on'
49 ' %s.') % media.title)
50
51 return redirect(request, location=media.url_for_self(request.urlgen))
52
53
54 @require_active_login
55 def mark_all_comment_notifications_seen(request):
56 """
57 Marks all comment notifications seen.
58 """
59 for comment in get_notifications(request.user.id):
60 mark_comment_notification_seen(comment.subject_id, request.user)
61
62 if request.GET.get('next'):
63 return redirect(request, location=request.GET.get('next'))
64 else:
65 return redirect(request, 'index')