Merge remote-tracking branch 'upstream/master' into auth
[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 render_to_response, render_404, redirect
18 from mediagoblin.tools.translate import pass_to_ugettext as _
19 from mediagoblin.decorators import (uses_pagination, get_user_media_entry,
20 get_media_entry_by_id,
21 require_active_login, user_may_delete_media, user_may_alter_collection,
22 get_user_collection, get_user_collection_item, active_user_from_url)
23
24 from mediagoblin import messages
25
26 from mediagoblin.notifications import add_comment_subscription, \
27 silence_comment_subscription
28
29 from werkzeug.exceptions import BadRequest
30
31 @get_user_media_entry
32 @require_active_login
33 def subscribe_comments(request, media):
34
35 add_comment_subscription(request.user, media)
36
37 messages.add_message(request,
38 messages.SUCCESS,
39 _('Subscribed to comments on %s!')
40 % media.title)
41
42 return redirect(request, location=media.url_for_self(request.urlgen))
43
44 @get_user_media_entry
45 @require_active_login
46 def silence_comments(request, media):
47 silence_comment_subscription(request.user, media)
48
49 messages.add_message(request,
50 messages.SUCCESS,
51 _('You will not receive notifications for comments on'
52 ' %s.') % media.title)
53
54 return redirect(request, location=media.url_for_self(request.urlgen))