X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/5fa3452111e4f29afacdec939b31ae7bfe1c5049..6fb3ad2a578aa2e0eced735187a02a79a8907668:/floof/controllers/art.py?ds=sidebyside diff --git a/floof/controllers/art.py b/floof/controllers/art.py index 8d40321..6c5e454 100644 --- a/floof/controllers/art.py +++ b/floof/controllers/art.py @@ -1,6 +1,6 @@ import logging -from pylons import request, response, session, tmpl_context as c +from pylons import request, response, session, tmpl_context as c, h from pylons.controllers.util import abort, redirect_to from floof.lib.base import BaseController, render @@ -28,11 +28,21 @@ class ArtController(BaseController): redirect_to(controller="main", action="index") def show(self, id): - c.art = Art.get(id) + c.art = h.get_object_or_404(Art, id=id) + if c.user: + c.your_score = c.art.user_score(c.user) return render("/art/show.mako") - + + # TODO: login required def tag(self, id): - art = Art.get(id) - art.add_tags(request.params["tags"], c.user) + c.art = h.get_object_or_404(Art, id=id) + c.art.add_tags(request.params["tags"], c.user) + elixir.session.commit() + redirect_to(action="show", id=c.art.id) + + # TODO: login required + def rate(self, id): + c.art = h.get_object_or_404(Art, id=id) + c.art.rate(request.params["score"], c.user) elixir.session.commit() - redirect_to(action="show", id=art.id) \ No newline at end of file + redirect_to(action="show", id=c.art.id)