X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/7c20a2661d532fe1e338f0f0dfb9fe42113ab103..ce1c8b25f961df0810d735d2337a790e0563f4af:/floof/controllers/art.py?ds=inline diff --git a/floof/controllers/art.py b/floof/controllers/art.py index d598292..b8406ed 100644 --- a/floof/controllers/art.py +++ b/floof/controllers/art.py @@ -10,8 +10,11 @@ log = logging.getLogger(__name__) import elixir from floof.model.art import Art, Rating from floof.model.comments import Discussion +from floof.model.users import User, UserRelationship +from sqlalchemy import func from sqlalchemy.exceptions import IntegrityError +from sqlalchemy.orm.exc import NoResultFound class ArtController(BaseController): @@ -62,3 +65,20 @@ class ArtController(BaseController): elixir.session.commit() redirect(url('show_art', id=c.art.id)) + + + def watchstream(self, name): + """Watchstream for a certain user.""" + try: + c.watching_user = User.query.filter(func.lower(User.name) == name) \ + .one() + except NoResultFound: + abort(404) + + # This user has watches which are users which have art + # XXX use artist, not uploader + c.artwork = Art.query.join(Art.uploader, + User.target_of_relationships) \ + .filter(UserRelationship.user_id == c.watching_user.id) + + return render('/index.mako')