some nice mixins for tags, ratings, relations
[zzz-floof.git] / floof / controllers / art.py
index d598292..bb3bc19 100644 (file)
@@ -8,7 +8,8 @@ from floof.lib.base import BaseController, render
 log = logging.getLogger(__name__)
 
 import elixir
-from floof.model.art import Art, Rating
+from floof.model.users import User
+from floof.model import Art, Rating, UserRelation
 from floof.model.comments import Discussion
 
 from sqlalchemy.exceptions import IntegrityError
@@ -27,8 +28,19 @@ class ArtController(BaseController):
 
     # TODO: login required
     def create(self):
+        # if 'file' not in request.params or not request.params['file']:
+        #     return "Validation Error: Needs a File"
+
+
         c.art = Art(uploader=c.user, **request.params)
         c.art.discussion = Discussion(count=0)
+        
+
+        artist = User.get_by(name=request.params['artist'])
+        if not artist:
+            return "Validation Error: Artist not found"
+
+        relation = UserRelation(user=artist, kind="by", creator=c.user, art=c.art)
 
         try:
             elixir.session.commit()