Fixes where User id in API would return url rather than host
[mediagoblin.git] / mediagoblin / notifications / views.py
CommitLineData
2d7b6bde
JW
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
1cca2a68 17from mediagoblin.tools.response import redirect
2d7b6bde 18from mediagoblin.tools.translate import pass_to_ugettext as _
1cca2a68 19from mediagoblin.decorators import get_user_media_entry, require_active_login
2d7b6bde
JW
20from mediagoblin import messages
21
a30d2d8b
RE
22from mediagoblin.notifications import (add_comment_subscription,
23 silence_comment_subscription, mark_comment_notification_seen,
24 get_notifications)
2d7b6bde 25
2d7b6bde
JW
26
27@get_user_media_entry
28@require_active_login
29def 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
1cca2a68 40
2d7b6bde
JW
41@get_user_media_entry
42@require_active_login
43def 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))
d0708da7
RE
52
53
54@require_active_login
55def mark_all_comment_notifications_seen(request):
56 """
57 Marks all comment notifications seen.
58 """
a30d2d8b 59 for comment in get_notifications(request.user.id):
d0708da7
RE
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')