diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-11-14 07:39:36 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-11-14 07:39:36 +0100 |
commit | 71cb70e914ed4ba61caafe11cf9bf33f4fb3d27f (patch) | |
tree | 31e6ac6896058ec4248c3c64c744161f4e26c326 /src/web/views/article.py | |
parent | Various improvements for the public pages and the private profile edition page. (diff) | |
download | newspipe-71cb70e914ed4ba61caafe11cf9bf33f4fb3d27f.tar.gz newspipe-71cb70e914ed4ba61caafe11cf9bf33f4fb3d27f.tar.bz2 newspipe-71cb70e914ed4ba61caafe11cf9bf33f4fb3d27f.zip |
Better checks for the public pages.
Diffstat (limited to 'src/web/views/article.py')
-rw-r--r-- | src/web/views/article.py | 7 |
1 files changed, 4 insertions, 3 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)], |