X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/f7617496a08f10a77eb909982dae4e995c132900..55270a42bf0699bd78b95a945fddd73a165507ee:/floof/controllers/art.py?ds=inline diff --git a/floof/controllers/art.py b/floof/controllers/art.py index e34543b..7378f7a 100644 --- a/floof/controllers/art.py +++ b/floof/controllers/art.py @@ -19,10 +19,28 @@ class ArtController(BaseController): def new(self): """ New Art! """ return render("/art/new.mako") - - + + def upload(self): print "PARAMS", request.params - Art(**request.params) + Art(uploaded_by=c.user, **request.params) elixir.session.commit() redirect_to(controller="main", action="index") + + def show(self, id): + c.art = Art.get(id) + c.your_score = c.art.user_score(c.user) + return render("/art/show.mako") + + # should force logged in on these things + def tag(self, id): + art = Art.get(id) + art.add_tags(request.params["tags"], c.user) + elixir.session.commit() + redirect_to(action="show", id=art.id) + + def rate(self, id): + art = Art.get(id) + art.rate(request.params["score"], c.user) + elixir.session.commit() + redirect_to(action="show", id=art.id)