X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/ef69b26ffcf9185496775bcf73384ea3a5e5691c..6fb3ad2a578aa2e0eced735187a02a79a8907668:/floof/controllers/art.py diff --git a/floof/controllers/art.py b/floof/controllers/art.py index 6ce9762..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 @@ -19,8 +19,8 @@ class ArtController(BaseController): def new(self): """ New Art! """ return render("/art/new.mako") - - + + def upload(self): print "PARAMS", request.params Art(uploaded_by=c.user, **request.params) @@ -28,5 +28,21 @@ class ArtController(BaseController): redirect_to(controller="main", action="index") def show(self, id): - c.art = Art.get(id) - return render("/art/show.mako") \ No newline at end of file + 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): + 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=c.art.id)