Removes spurious file
[mediagoblin.git] / mediagoblin / edit / views.py
CommitLineData
9bfe1d8e
E
1# GNU MediaGoblin -- federated, autonomous media hosting
2# Copyright (C) 2011 Free Software Foundation, Inc
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
E
16
17
1c63ad5d 18from webob import exc
aba81c9f 19
44e51d34 20from mediagoblin.util import render_to_response, redirect, clean_html
aba81c9f 21from mediagoblin.edit import forms
0732236e 22from mediagoblin.edit.lib import may_edit_media
8cd5d4f8 23from mediagoblin.decorators import require_active_login, get_user_media_entry
aba81c9f 24
44e51d34
JW
25import markdown
26
c849e690 27
8cd5d4f8 28@get_user_media_entry
aba81c9f
E
29@require_active_login
30def edit_media(request, media):
c849e690
E
31 if not may_edit_media(request, media):
32 return exc.HTTPForbidden()
33
aba81c9f
E
34 form = forms.EditForm(request.POST,
35 title = media['title'],
36 slug = media['slug'],
37 description = media['description'])
38
98857207 39 if request.method == 'POST' and form.validate():
d5e90fe4
CAW
40 # Make sure there isn't already a MediaEntry with such a slug
41 # and userid.
42 existing_user_slug_entries = request.db.MediaEntry.find(
43 {'slug': request.POST['slug'],
44 'uploader': media['uploader'],
45 '_id': {'$ne': media['_id']}}).count()
46
47 if existing_user_slug_entries:
48 form.slug.errors.append(
49 u'An entry with that slug already exists for this user.')
50 else:
51 media['title'] = request.POST['title']
44e2da2f
JW
52 media['description'] = request.POST.get('description')
53
44e2da2f
JW
54 md = markdown.Markdown(
55 safe_mode = 'escape')
44e51d34
JW
56 media['description_html'] = clean_html(
57 md.convert(
58 media['description']))
44e2da2f 59
d5e90fe4 60 media['slug'] = request.POST['slug']
747623cc 61 media.save()
d5e90fe4 62
9150244a
E
63 return redirect(request, "mediagoblin.user_pages.media_home",
64 user=media.uploader()['username'], media=media['slug'])
98857207 65
9038c9f9
CAW
66 return render_to_response(
67 request,
c9c24934
E
68 'mediagoblin/edit/edit.html',
69 {'media': media,
70 'form': form})
630b57a3 71
46fd661e 72
630b57a3 73@require_active_login
74def edit_profile(request):
75
0bf34072 76 user = request.user
630b57a3 77 form = forms.EditProfileForm(request.POST,
0bf34072 78 url = user.get('url'),
79 bio = user.get('bio'))
630b57a3 80
81 if request.method == 'POST' and form.validate():
82 user['url'] = request.POST['url']
83 user['bio'] = request.POST['bio']
84 user.save()
85
0bf34072 86 return redirect(request, "index", user=user['username'])
630b57a3 87
88 return render_to_response(
89 request,
90 'mediagoblin/edit/edit_profile.html',
91 {'user': user,
92 'form': form})