Edit comment-notification text
[mediagoblin.git] / mediagoblin / edit / views.py
CommitLineData
9bfe1d8e 1# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
9bfe1d8e
E
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/>.
aba81c9f 16
1c63ad5d 17from webob import exc
3a8c3a38
JW
18from cgi import FieldStorage
19from datetime import datetime
20
21from werkzeug.utils import secure_filename
aba81c9f 22
d9ed098e 23from mediagoblin import messages
10d7496d 24from mediagoblin import mg_globals
152a3bfa 25
4837b2f2 26from mediagoblin.auth import lib as auth_lib
aba81c9f 27from mediagoblin.edit import forms
0732236e 28from mediagoblin.edit.lib import may_edit_media
8cd5d4f8 29from mediagoblin.decorators import require_active_login, get_user_media_entry
152a3bfa
AW
30from mediagoblin.tools.response import render_to_response, redirect
31from mediagoblin.tools.translate import pass_to_ugettext as _
32from mediagoblin.tools.text import (
a855e92a 33 convert_to_tag_list_of_dicts, media_tags_as_string)
b62b3b98 34from mediagoblin.db.util import check_media_slug_used
c849e690 35
825b1362
JW
36import mimetypes
37
97ec97db 38
8cd5d4f8 39@get_user_media_entry
aba81c9f
E
40@require_active_login
41def edit_media(request, media):
c849e690
E
42 if not may_edit_media(request, media):
43 return exc.HTTPForbidden()
44
2c437493 45 defaults = dict(
ec82fbd8 46 title=media.title,
5da0bf90 47 slug=media.slug,
1d939966 48 description=media.description,
a6c49d49 49 tags=media_tags_as_string(media.tags),
97ec97db 50 license=media.license)
aba81c9f 51
2c437493
JW
52 form = forms.EditForm(
53 request.POST,
54 **defaults)
55
98857207 56 if request.method == 'POST' and form.validate():
d5e90fe4
CAW
57 # Make sure there isn't already a MediaEntry with such a slug
58 # and userid.
b62b3b98
E
59 slug_used = check_media_slug_used(request.db, media.uploader,
60 request.POST['slug'], media.id)
3a8c3a38 61
b62b3b98 62 if slug_used:
d5e90fe4 63 form.slug.errors.append(
4b1adc13 64 _(u'An entry with that slug already exists for this user.'))
d5e90fe4 65 else:
ec82fbd8 66 media.title = unicode(request.POST['title'])
1d939966 67 media.description = unicode(request.POST.get('description'))
de917303 68 media.tags = convert_to_tag_list_of_dicts(
0712a06d 69 request.POST.get('tags'))
3a8c3a38 70
da6206c4 71 media.license = unicode(request.POST.get('license', '')) or None
25b48323 72
5da0bf90 73 media.slug = unicode(request.POST['slug'])
99a270e9 74
747623cc 75 media.save()
d5e90fe4 76
8d7b549b
E
77 return exc.HTTPFound(
78 location=media.url_for_self(request.urlgen))
98857207 79
bec591d8 80 if request.user.is_admin \
1ceb4fc8 81 and media.uploader != request.user._id \
96a2c366
CAW
82 and request.method != 'POST':
83 messages.add_message(
84 request, messages.WARNING,
4b1adc13 85 _("You are editing another user's media. Proceed with caution."))
96a2c366 86
9038c9f9
CAW
87 return render_to_response(
88 request,
c9c24934
E
89 'mediagoblin/edit/edit.html',
90 {'media': media,
91 'form': form})
46fd661e 92
3a8c3a38 93
825b1362
JW
94# Mimetypes that browsers parse scripts in.
95# Content-sniffing isn't taken into consideration.
96UNSAFE_MIMETYPES = [
97 'text/html',
98 'text/svg+xml']
99
100
3a8c3a38 101@get_user_media_entry
630b57a3 102@require_active_login
3a8c3a38
JW
103def edit_attachments(request, media):
104 if mg_globals.app_config['allow_attachments']:
105 form = forms.EditAttachmentsForm()
106
107 # Add any attachements
108 if ('attachment_file' in request.POST
109 and isinstance(request.POST['attachment_file'], FieldStorage)
110 and request.POST['attachment_file'].file):
111
825b1362
JW
112 # Security measure to prevent attachments from being served as
113 # text/html, which will be parsed by web clients and pose an XSS
114 # threat.
115 #
116 # TODO
117 # This method isn't flawless as some browsers may perform
118 # content-sniffing.
119 # This method isn't flawless as we do the mimetype lookup on the
120 # machine parsing the upload form, and not necessarily the machine
121 # serving the attachments.
122 if mimetypes.guess_type(
123 request.POST['attachment_file'].filename)[0] in \
124 UNSAFE_MIMETYPES:
125 public_filename = secure_filename('{0}.notsafe'.format(
126 request.POST['attachment_file'].filename))
127 else:
128 public_filename = secure_filename(
129 request.POST['attachment_file'].filename)
130
3a8c3a38
JW
131 attachment_public_filepath \
132 = mg_globals.public_store.get_unique_filepath(
eabe6b67 133 ['media_entries', unicode(media._id), 'attachment',
825b1362 134 public_filename])
3a8c3a38
JW
135
136 attachment_public_file = mg_globals.public_store.get_file(
137 attachment_public_filepath, 'wb')
138
139 try:
140 attachment_public_file.write(
141 request.POST['attachment_file'].file.read())
142 finally:
143 request.POST['attachment_file'].file.close()
144
35029581 145 media.attachment_files.append(dict(
3a8c3a38
JW
146 name=request.POST['attachment_name'] \
147 or request.POST['attachment_file'].filename,
148 filepath=attachment_public_filepath,
243c3843 149 created=datetime.utcnow(),
3a8c3a38 150 ))
630b57a3 151
3a8c3a38
JW
152 media.save()
153
154 messages.add_message(
155 request, messages.SUCCESS,
156 "You added the attachment %s!" \
157 % (request.POST['attachment_name']
158 or request.POST['attachment_file'].filename))
159
8d7b549b
E
160 return exc.HTTPFound(
161 location=media.url_for_self(request.urlgen))
3a8c3a38
JW
162 return render_to_response(
163 request,
164 'mediagoblin/edit/attachments.html',
165 {'media': media,
166 'form': form})
167 else:
168 return exc.HTTPForbidden()
169
170
171@require_active_login
172def edit_profile(request):
a0cf14fe
CFD
173 # admins may edit any user profile given a username in the querystring
174 edit_username = request.GET.get('username')
bec591d8 175 if request.user.is_admin and request.user.username != edit_username:
a0cf14fe
CFD
176 user = request.db.User.find_one({'username': edit_username})
177 # No need to warn again if admin just submitted an edited profile
178 if request.method != 'POST':
179 messages.add_message(
180 request, messages.WARNING,
4b1adc13 181 _("You are editing a user's profile. Proceed with caution."))
a0cf14fe
CFD
182 else:
183 user = request.user
184
630b57a3 185 form = forms.EditProfileForm(request.POST,
3a8c3a38
JW
186 url=user.get('url'),
187 bio=user.get('bio'))
630b57a3 188
189 if request.method == 'POST' and form.validate():
c8071fa5
JS
190 user.url = unicode(request.POST['url'])
191 user.bio = unicode(request.POST['bio'])
4c465852 192
c8071fa5 193 user.save()
630b57a3 194
c8071fa5
JS
195 messages.add_message(request,
196 messages.SUCCESS,
197 _("Profile changes saved"))
198 return redirect(request,
199 'mediagoblin.user_pages.user_home',
703d09b9 200 user=user.username)
630b57a3 201
202 return render_to_response(
203 request,
204 'mediagoblin/edit/edit_profile.html',
205 {'user': user,
206 'form': form})
c8071fa5
JS
207
208
209@require_active_login
210def edit_account(request):
c8071fa5 211 user = request.user
252eaf21 212 form = forms.EditAccountForm(request.POST,
fa72e516 213 wants_comment_notification=user.get('wants_comment_notification'))
c8071fa5 214
252eaf21 215 if request.method == 'POST':
fa72e516
DM
216 form_validated = form.validate()
217
218 #if the user has not filled in the new or old password fields
219 if not form.new_password.data and not form.old_password.data:
220 if form.wants_comment_notification.validate(form):
221 user.wants_comment_notification = \
222 form.wants_comment_notification.data
223 user.save()
224 messages.add_message(request,
225 messages.SUCCESS,
226 _("Account settings saved"))
227 return redirect(request,
228 'mediagoblin.user_pages.user_home',
229 user=user.username)
230
231 #so the user has filled in one or both of the password fields
232 else:
233 if form_validated:
234 password_matches = auth_lib.bcrypt_check_password(
235 form.old_password.data,
236 user.pw_hash)
237 if password_matches:
238 #the entire form validates and the password matches
239 user.pw_hash = auth_lib.bcrypt_gen_password_hash(
240 form.new_password.data)
241 user.wants_comment_notification = \
242 form.wants_comment_notification.data
243 user.save()
244 messages.add_message(request,
245 messages.SUCCESS,
246 _("Account settings saved"))
247 return redirect(request,
248 'mediagoblin.user_pages.user_home',
249 user=user.username)
250 else:
251 form.old_password.errors.append(_('Wrong password'))
630b57a3 252
253 return render_to_response(
254 request,
c8071fa5 255 'mediagoblin/edit/edit_account.html',
630b57a3 256 {'user': user,
257 'form': form})