X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/cb1976ef371904b45d7961212cd87595a9486284..HEAD:/floof/controllers/relation.py diff --git a/floof/controllers/relation.py b/floof/controllers/relation.py index 4139da8..330559e 100644 --- a/floof/controllers/relation.py +++ b/floof/controllers/relation.py @@ -1,27 +1,31 @@ import logging -from pylons import request, response, session, tmpl_context as c, h, url +from pylons import request, response, session, tmpl_context as c, url from pylons.controllers.util import abort, redirect +from floof.lib import helpers as h from floof.lib.base import BaseController, render log = logging.getLogger(__name__) -from floof.model.art import Art, UserRelation +from floof.model import Art, UserRelationship from floof.model.users import User import elixir +# TODO!!! Implement adding a related user the same way that it works +# on the "add new art" page + class RelationController(BaseController): def create(self, art_id, kind): art = h.get_object_or_404(Art, id=art_id) user = h.get_object_or_404(User, name=request.params['username']) ## TODO: actually, this should act like a form validation. - prior_relation = UserRelation.get_by(art=art, user=user) + prior_relation = UserRelationship.get_by(art=art, user=user) if prior_relation: abort(404) ## should be a validation error - relation = UserRelation(user=user, kind=kind, art=art, creator=c.user) + relation = UserRelationship(user=user, kind=kind, art=art, creator=c.user) elixir.session.commit() redirect(url('show_art', id=art_id))