X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=mediagoblin%2Fviews.py;h=4185c1b695870176d7d956a5b98de01f986faad6;hb=690f50de1c0f56dd49558c38de8aac213a658672;hp=3728d4aaacba0077a662aa3986d84ae6aae7d72a;hpb=4c1e752a089313b11f872771f234c59d1b5b9982;p=mediagoblin.git diff --git a/mediagoblin/views.py b/mediagoblin/views.py index 3728d4aa..4185c1b6 100644 --- a/mediagoblin/views.py +++ b/mediagoblin/views.py @@ -1,5 +1,5 @@ # GNU MediaGoblin -- federated, autonomous media hosting -# Copyright (C) 2011 Free Software Foundation, Inc +# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by @@ -14,65 +14,40 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -import datetime - -from webob import Response, exc -import wtforms - -from mediagoblin import models - -def root_view(request): - media_entries = request.db.MediaEntry.find( - {u'state': u'processed'}) - - template = request.template_env.get_template( - 'mediagoblin/root.html') - return Response( - template.render( - {'request': request, - 'media_entries': media_entries})) - - -class ImageSubmitForm(wtforms.Form): - title = wtforms.TextField( - 'Title', - [wtforms.validators.Length(min=1, max=500)]) - description = wtforms.TextAreaField('Description of this work') - file = wtforms.FileField('File') - - -def submit_test(request): - image_form = ImageSubmitForm(request.POST) - if request.method == 'POST' and image_form.validate(): - # create entry and save in database - - entry = request.db.MediaEntry() - entry['title'] = request.POST['title'] - entry['description'] = request.POST.get(['description']) - entry['media_type'] = u'image' - - # TODO this does NOT look save, we should clean the filename somenow? - entry['file_store'] = request.POST['file'].filename - - entry.save(validate=True) - - # save file to disk - ## TODO - #open('/tmp/read_file.png', 'wb').write(request.POST['file'].file.read()) - - - # resize if necessary - ## Hm. This should be done on a separate view? - - # redirect - pass - - - - # render - template = request.template_env.get_template( - 'mediagoblin/test_submit.html') - return Response( - template.render( - {'request': request, - 'image_form': image_form})) +from mediagoblin import mg_globals +from mediagoblin.db.models import MediaEntry +from mediagoblin.tools.pagination import Pagination +from mediagoblin.tools.response import render_to_response, render_404 +from mediagoblin.decorators import uses_pagination, user_not_banned + + +@user_not_banned +@uses_pagination +def root_view(request, page): + cursor = MediaEntry.query.filter_by(state=u'processed').\ + order_by(MediaEntry.created.desc()) + + pagination = Pagination(page, cursor) + media_entries = pagination() + return render_to_response( + request, 'mediagoblin/root.html', + {'media_entries': media_entries, + 'allow_registration': mg_globals.app_config["allow_registration"], + 'pagination': pagination}) + + +def simple_template_render(request): + """ + A view for absolutely simple template rendering. + Just make sure 'template' is in the matchdict! + """ + template_name = request.matchdict['template'] + return render_to_response( + request, template_name, {}) + +def terms_of_service(request): + if mg_globals.app_config["show_tos"] is False: + return render_404(request) + + return render_to_response(request, + 'mediagoblin/terms_of_service.html', {})