X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/5837da26db915faca89925c39fa83202bfb84e32..da9dc9c1a060be8de3c13fa308a047b4b57eaaeb:/floof/controllers/art.py diff --git a/floof/controllers/art.py b/floof/controllers/art.py index dd06f12..bb3bc19 100644 --- a/floof/controllers/art.py +++ b/floof/controllers/art.py @@ -1,29 +1,76 @@ import logging -from pylons import request, response, session, tmpl_context as c, config -from pylons.controllers.util import abort, redirect_to - +from pylons import request, response, session, tmpl_context as c, h +from pylons.controllers.util import abort, redirect +from pylons import url from floof.lib.base import BaseController, render log = logging.getLogger(__name__) +import elixir +from floof.model.users import User +from floof.model import Art, Rating, UserRelation +from floof.model.comments import Discussion +from sqlalchemy.exceptions import IntegrityError -from floof.lib.file_storage import save_file class ArtController(BaseController): - - # def index(): - # c.artwork = Art.query.order_by(Art.id.desc()).all() - # return render + def __before__(self, id=None): + super(ArtController, self).__before__() + # Awesome refactoring! + if id: + c.art = h.get_object_or_404(Art, id=id) def new(self): """ New Art! """ return render("/art/new.mako") + + # 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) - - def upload(self): - file = request.POST['file'] - root = config['app_conf']['art_root'] - save_file(root, file) - redirect_to(controller="main", action="index") + + 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)) + + + def show(self, 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 rate(self, id): + # c.art = h.get_object_or_404(Art, id=id) + score = request.params.get("score") + if score and score.isnumeric(): + score = int(score) + else: + score = Rating.reverse_options.get(score) + + c.art.rate(score, c.user) + elixir.session.commit() + + redirect(url('show_art', id=c.art.id))