Adding ReallyLazyProxy, a proxy that does what we expect :)
[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
3a8c3a38
JW
17from datetime import datetime
18
62d14bf5 19from werkzeug.exceptions import Forbidden
3a8c3a38 20from werkzeug.utils import secure_filename
aba81c9f 21
d9ed098e 22from mediagoblin import messages
10d7496d 23from mediagoblin import mg_globals
152a3bfa 24
4837b2f2 25from mediagoblin.auth import lib as auth_lib
aba81c9f 26from mediagoblin.edit import forms
b5a64f78 27from mediagoblin.edit.lib import may_edit_media
abc4da29 28from mediagoblin.decorators import (require_active_login, active_user_from_url,
dc03850b 29 get_media_entry_by_id,
954b407c 30 user_may_alter_collection, get_user_collection)
152a3bfa 31from mediagoblin.tools.response import render_to_response, redirect
665b9c42 32from mediagoblin.tools.translate import lazy_pass_to_ugettext as _
152a3bfa 33from mediagoblin.tools.text import (
a855e92a 34 convert_to_tag_list_of_dicts, media_tags_as_string)
9e9d9083 35from mediagoblin.tools.url import slugify
be5be115 36from mediagoblin.db.util import check_media_slug_used, check_collection_slug_used
c849e690 37
825b1362
JW
38import mimetypes
39
97ec97db 40
461dd971 41@get_media_entry_by_id
aba81c9f
E
42@require_active_login
43def edit_media(request, media):
c849e690 44 if not may_edit_media(request, media):
cfa92229 45 raise Forbidden("User may not edit this media")
c849e690 46
2c437493 47 defaults = dict(
ec82fbd8 48 title=media.title,
5da0bf90 49 slug=media.slug,
1d939966 50 description=media.description,
a6c49d49 51 tags=media_tags_as_string(media.tags),
97ec97db 52 license=media.license)
aba81c9f 53
2c437493 54 form = forms.EditForm(
111a609d 55 request.form,
2c437493
JW
56 **defaults)
57
98857207 58 if request.method == 'POST' and form.validate():
d5e90fe4
CAW
59 # Make sure there isn't already a MediaEntry with such a slug
60 # and userid.
dc03850b 61 slug = slugify(form.slug.data)
9e9d9083 62 slug_used = check_media_slug_used(media.uploader, slug, media.id)
3a8c3a38 63
b62b3b98 64 if slug_used:
d5e90fe4 65 form.slug.errors.append(
4b1adc13 66 _(u'An entry with that slug already exists for this user.'))
d5e90fe4 67 else:
dc03850b
HL
68 media.title = form.title.data
69 media.description = form.description.data
de917303 70 media.tags = convert_to_tag_list_of_dicts(
dc03850b 71 form.tags.data)
3a8c3a38 72
dc03850b 73 media.license = unicode(form.license.data) or None
9e9d9083 74 media.slug = slug
747623cc 75 media.save()
d5e90fe4 76
950124e6
SS
77 return redirect(request,
78 location=media.url_for_self(request.urlgen))
98857207 79
bec591d8 80 if request.user.is_admin \
5c2b8486 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
954b407c 101@get_media_entry_by_id
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
c43f8c1d
JW
108 if 'attachment_file' in request.files \
109 and request.files['attachment_file']:
3a8c3a38 110
825b1362
JW
111 # Security measure to prevent attachments from being served as
112 # text/html, which will be parsed by web clients and pose an XSS
113 # threat.
114 #
115 # TODO
116 # This method isn't flawless as some browsers may perform
117 # content-sniffing.
118 # This method isn't flawless as we do the mimetype lookup on the
119 # machine parsing the upload form, and not necessarily the machine
120 # serving the attachments.
121 if mimetypes.guess_type(
c43f8c1d 122 request.files['attachment_file'].filename)[0] in \
825b1362
JW
123 UNSAFE_MIMETYPES:
124 public_filename = secure_filename('{0}.notsafe'.format(
c43f8c1d 125 request.files['attachment_file'].filename))
825b1362
JW
126 else:
127 public_filename = secure_filename(
c43f8c1d 128 request.files['attachment_file'].filename)
825b1362 129
3a8c3a38
JW
130 attachment_public_filepath \
131 = mg_globals.public_store.get_unique_filepath(
5c2b8486 132 ['media_entries', unicode(media.id), 'attachment',
825b1362 133 public_filename])
3a8c3a38
JW
134
135 attachment_public_file = mg_globals.public_store.get_file(
136 attachment_public_filepath, 'wb')
137
138 try:
139 attachment_public_file.write(
c43f8c1d 140 request.files['attachment_file'].stream.read())
3a8c3a38 141 finally:
c43f8c1d 142 request.files['attachment_file'].stream.close()
3a8c3a38 143
35029581 144 media.attachment_files.append(dict(
dc03850b 145 name=form.attachment_name.data \
c43f8c1d 146 or request.files['attachment_file'].filename,
3a8c3a38 147 filepath=attachment_public_filepath,
243c3843 148 created=datetime.utcnow(),
3a8c3a38 149 ))
630b57a3 150
3a8c3a38
JW
151 media.save()
152
153 messages.add_message(
154 request, messages.SUCCESS,
32255ec0 155 _("You added the attachment %s!") \
dc03850b 156 % (form.attachment_name.data
c43f8c1d 157 or request.files['attachment_file'].filename))
3a8c3a38 158
950124e6
SS
159 return redirect(request,
160 location=media.url_for_self(request.urlgen))
3a8c3a38
JW
161 return render_to_response(
162 request,
163 'mediagoblin/edit/attachments.html',
164 {'media': media,
165 'form': form})
166 else:
cfa92229 167 raise Forbidden("Attachments are disabled")
3a8c3a38 168
abc4da29
SS
169@require_active_login
170def legacy_edit_profile(request):
171 """redirect the old /edit/profile/?username=USER to /u/USER/edit/"""
172 username = request.GET.get('username') or request.user.username
173 return redirect(request, 'mediagoblin.edit.profile', user=username)
174
3a8c3a38
JW
175
176@require_active_login
abc4da29
SS
177@active_user_from_url
178def edit_profile(request, url_user=None):
179 # admins may edit any user profile
180 if request.user.username != url_user.username:
181 if not request.user.is_admin:
182 raise Forbidden(_("You can only edit your own profile."))
183
a0cf14fe
CFD
184 # No need to warn again if admin just submitted an edited profile
185 if request.method != 'POST':
186 messages.add_message(
187 request, messages.WARNING,
4b1adc13 188 _("You are editing a user's profile. Proceed with caution."))
abc4da29
SS
189
190 user = url_user
a0cf14fe 191
111a609d 192 form = forms.EditProfileForm(request.form,
066d49b2
SS
193 url=user.url,
194 bio=user.bio)
630b57a3 195
196 if request.method == 'POST' and form.validate():
dc03850b
HL
197 user.url = unicode(form.url.data)
198 user.bio = unicode(form.bio.data)
4c465852 199
c8071fa5 200 user.save()
630b57a3 201
c8071fa5
JS
202 messages.add_message(request,
203 messages.SUCCESS,
204 _("Profile changes saved"))
205 return redirect(request,
206 'mediagoblin.user_pages.user_home',
703d09b9 207 user=user.username)
630b57a3 208
209 return render_to_response(
210 request,
211 'mediagoblin/edit/edit_profile.html',
212 {'user': user,
213 'form': form})
c8071fa5
JS
214
215
216@require_active_login
217def edit_account(request):
c8071fa5 218 user = request.user
111a609d 219 form = forms.EditAccountForm(request.form,
066d49b2
SS
220 wants_comment_notification=user.wants_comment_notification,
221 license_preference=user.license_preference)
c8071fa5 222
252eaf21 223 if request.method == 'POST':
fa72e516
DM
224 form_validated = form.validate()
225
dc4dfbde
MH
226 if form_validated and \
227 form.wants_comment_notification.validate(form):
228 user.wants_comment_notification = \
229 form.wants_comment_notification.data
230
231 if form_validated and \
232 form.new_password.data or form.old_password.data:
233 password_matches = auth_lib.bcrypt_check_password(
234 form.old_password.data,
235 user.pw_hash)
236 if password_matches:
237 #the entire form validates and the password matches
238 user.pw_hash = auth_lib.bcrypt_gen_password_hash(
239 form.new_password.data)
240 else:
241 form.old_password.errors.append(_('Wrong password'))
242
243 if form_validated and \
244 form.license_preference.validate(form):
245 user.license_preference = \
246 form.license_preference.data
247
248 if form_validated and not form.errors:
249 user.save()
250 messages.add_message(request,
251 messages.SUCCESS,
252 _("Account settings saved"))
253 return redirect(request,
254 'mediagoblin.user_pages.user_home',
255 user=user.username)
630b57a3 256
257 return render_to_response(
258 request,
c8071fa5 259 'mediagoblin/edit/edit_account.html',
630b57a3 260 {'user': user,
261 'form': form})
be5be115
AW
262
263
380f22b8
SS
264@require_active_login
265def delete_account(request):
266 """Delete a user completely"""
267 user = request.user
268 if request.method == 'POST':
269 if request.form.get(u'confirmed'):
270 # Form submitted and confirmed. Actually delete the user account
271 # Log out user and delete cookies etc.
272 # TODO: Should we be using MG.auth.views.py:logout for this?
273 request.session.delete()
274
275 # Delete user account and all related media files etc....
276 request.user.delete()
277
278 # We should send a message that the user has been deleted
279 # successfully. But we just deleted the session, so we
280 # can't...
281 return redirect(request, 'index')
282
283 else: # Did not check the confirmation box...
284 messages.add_message(
285 request, messages.WARNING,
286 _('You need to confirm the deletion of your account.'))
287
288 # No POST submission or not confirmed, just show page
289 return render_to_response(
290 request,
291 'mediagoblin/edit/delete_account.html',
292 {'user': user})
293
294
be5be115
AW
295@require_active_login
296@user_may_alter_collection
297@get_user_collection
298def edit_collection(request, collection):
299 defaults = dict(
300 title=collection.title,
301 slug=collection.slug,
302 description=collection.description)
303
304 form = forms.EditCollectionForm(
111a609d 305 request.form,
be5be115
AW
306 **defaults)
307
308 if request.method == 'POST' and form.validate():
309 # Make sure there isn't already a Collection with such a slug
310 # and userid.
455fd36f 311 slug_used = check_collection_slug_used(collection.creator,
dc03850b 312 form.slug.data, collection.id)
c43f8c1d 313
be5be115
AW
314 # Make sure there isn't already a Collection with this title
315 existing_collection = request.db.Collection.find_one({
5c2b8486 316 'creator': request.user.id,
dc03850b 317 'title':form.title.data})
c43f8c1d 318
be5be115
AW
319 if existing_collection and existing_collection.id != collection.id:
320 messages.add_message(
a6481028
CAW
321 request, messages.ERROR,
322 _('You already have a collection called "%s"!') % \
dc03850b 323 form.title.data)
be5be115
AW
324 elif slug_used:
325 form.slug.errors.append(
326 _(u'A collection with that slug already exists for this user.'))
327 else:
dc03850b
HL
328 collection.title = unicode(form.title.data)
329 collection.description = unicode(form.description.data)
330 collection.slug = unicode(form.slug.data)
be5be115
AW
331
332 collection.save()
333
334 return redirect(request, "mediagoblin.user_pages.user_collection",
335 user=collection.get_creator.username,
336 collection=collection.slug)
337
338 if request.user.is_admin \
5c2b8486 339 and collection.creator != request.user.id \
be5be115
AW
340 and request.method != 'POST':
341 messages.add_message(
342 request, messages.WARNING,
343 _("You are editing another user's collection. Proceed with caution."))
344
345 return render_to_response(
346 request,
347 'mediagoblin/edit/edit_collection.html',
348 {'collection': collection,
349 'form': form})