shaped up routing: enabled explicit mode, and created some named routes
[zzz-floof.git] / floof / controllers / art.py
index 6c5e454..f08cd60 100644 (file)
@@ -11,6 +11,11 @@ import elixir
 from floof.model.art import Art
 
 class ArtController(BaseController):
+    def __before__(self, id=None):
+        super(ArtController, self).__before__()
+        # Awesome refactoring!
+        if id:
+            c.art = h.get_object_or_404(Art, id=id)
 
     # def index():
     #     c.artwork = Art.query.order_by(Art.id.desc()).all()
@@ -20,29 +25,28 @@ class ArtController(BaseController):
         """ New Art! """
         return render("/art/new.mako")
 
-
+    # TODO: login required
     def upload(self):
-        print "PARAMS", request.params
         Art(uploaded_by=c.user, **request.params)
         elixir.session.commit()
         redirect_to(controller="main", action="index")
 
     def show(self, id):
-        c.art = h.get_object_or_404(Art, id=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):
-        c.art = h.get_object_or_404(Art, id=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)
+        redirect_to('show_art', id=c.art.id)
     
     # TODO: login required
     def rate(self, id):
-        c.art = h.get_object_or_404(Art, id=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)
+        redirect_to('show_art', id=c.art.id)