aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-14 07:39:36 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-14 07:39:36 +0100
commit71cb70e914ed4ba61caafe11cf9bf33f4fb3d27f (patch)
tree31e6ac6896058ec4248c3c64c744161f4e26c326 /src
parentVarious improvements for the public pages and the private profile edition page. (diff)
downloadnewspipe-71cb70e914ed4ba61caafe11cf9bf33f4fb3d27f.tar.gz
newspipe-71cb70e914ed4ba61caafe11cf9bf33f4fb3d27f.tar.bz2
newspipe-71cb70e914ed4ba61caafe11cf9bf33f4fb3d27f.zip
Better checks for the public pages.
Diffstat (limited to 'src')
-rw-r--r--src/web/views/article.py7
-rw-r--r--src/web/views/feed.py5
2 files changed, 7 insertions, 5 deletions
diff --git a/src/web/views/article.py b/src/web/views/article.py
index 163ba413..283ef001 100644
--- a/src/web/views/article.py
+++ b/src/web/views/article.py
@@ -32,7 +32,7 @@ def redirect_to_article(article_id):
@etag_match
def article(article_id=None):
"""
- Presents the content of an article.
+ Presents an article.
"""
article = ArticleController(current_user.id).get(id=article_id)
return render_template('article.html',
@@ -43,10 +43,11 @@ def article(article_id=None):
@etag_match
def article_pub(article_id=None):
"""
- Presents the content of an article of a public feed.
+ Presents an article of a public feed if the profile of the owner is also
+ public.
"""
article = ArticleController().get(id=article_id)
- if article.source.private:
+ if article.source.private or not article.source.user.is_public_profile:
return render_template('errors/404.html'), 404
return render_template('article_pub.html',
head_titles=[clear_string(article.title)],
diff --git a/src/web/views/feed.py b/src/web/views/feed.py
index 6bc4afe1..3edb942e 100644
--- a/src/web/views/feed.py
+++ b/src/web/views/feed.py
@@ -80,10 +80,11 @@ def feed(feed_id=None):
@etag_match
def feed_pub(feed_id=None):
"""
- Presents details of a pubic feed.
+ Presents details of a pubic feed if the profile of the owner is also
+ public.
"""
feed = FeedController(None).get(id=feed_id)
- if feed.private:
+ if feed.private or not feed.user.is_public_profile:
return render_template('errors/404.html'), 404
return feed_view(feed_id, None)
bgstack15