X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/0ede26497a9e018cbd68e2f4120dcb44a21f4715..69d5189cc4fb2ca63418a0741bf744cf5fee8bc9:/floof/controllers/art.py diff --git a/floof/controllers/art.py b/floof/controllers/art.py index 7ca1285..8dfc487 100644 --- a/floof/controllers/art.py +++ b/floof/controllers/art.py @@ -10,6 +10,9 @@ log = logging.getLogger(__name__) import elixir from floof.model.art import Art, Rating +from sqlalchemy.exceptions import IntegrityError + + class ArtController(BaseController): def __before__(self, id=None): super(ArtController, self).__before__() @@ -27,9 +30,19 @@ class ArtController(BaseController): # TODO: login required def create(self): - Art(uploaded_by=c.user, **request.params) - elixir.session.commit() - redirect_to(controller="main", action="index") + c.art = Art(uploader=c.user, **request.params) + + try: + elixir.session.commit() + redirect(url('show_art', id=c.art.id)) + except IntegrityError: + # hurr, there must be a better way to do this but I am lazy right now + hash = c.art.hash + elixir.session.rollback() + duplicate_art = Art.get_by(hash=hash) + h.flash("We already have that one.") + redirect(url('show_art', id=duplicate_art.id)) + def show(self, id): # c.art = h.get_object_or_404(Art, id=id) @@ -56,4 +69,4 @@ class ArtController(BaseController): c.art.rate(score, c.user) elixir.session.commit() - redirect(url('art', id=c.art.id)) + redirect(url('show_art', id=c.art.id))