+ # 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()
+ redirect(url('show_art', id=c.art.id))
+ except IntegrityError:
+ # hurr, there must be a better way to do this but I am lazy right now
+ hash = c.art.hash
+ elixir.session.rollback()
+ duplicate_art = Art.get_by(hash=hash)
+ h.flash("We already have that one.")
+ redirect(url('show_art', id=duplicate_art.id))