aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-08 19:54:31 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-08 19:54:31 +0200
commit11b33664982c18d4ecccc7e75da8a84d436c267d (patch)
tree197b91fb9a1eaab8e0336089766fc47fb6402260 /pyaggr3g470r
parentLike/unlike articles. (diff)
downloadnewspipe-11b33664982c18d4ecccc7e75da8a84d436c267d.tar.gz
newspipe-11b33664982c18d4ecccc7e75da8a84d436c267d.tar.bz2
newspipe-11b33664982c18d4ecccc7e75da8a84d436c267d.zip
Delete an article.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/views.py31
1 files changed, 11 insertions, 20 deletions
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index 451d6b56..48220bb9 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -279,30 +279,21 @@ def like(article_id=None):
db.session.commit()
return redirect(redirect_url())
-@app.route('/delete/<article_id>', methods=['GET'])
+@app.route('/delete/<int:article_id>', methods=['GET'])
@login_required
def delete(article_id=None):
"""
- Delete an article from the MongoDB and the Whoosh
- databases.
+ Delete an article from the database.
"""
- user = models.User.objects(email=g.user.email).first()
- # delete the article
- for feed in user.feeds:
- for article in feed.articles:
- if str(article.id) == article_id:
- feed.articles.remove(article)
- article.delete()
- user.save()
- try:
- fastsearch.delete_article(str(feed.oid), str(article.id))
- except:
- # if index is empty
- pass
- flash('Article "' + article.title + '" deleted.', 'success')
- return redirect(url_for('home'))
- flash('Impossible to delete the article.', 'danger')
- return redirect(url_for('home'))
+ article = Article.query.filter(Article.id == article_id).first()
+ if article != None:
+ db.session.delete(article)
+ db.session.commit()
+ flash('Article "' + article.title + '" deleted.', 'success')
+ return redirect(url_for('home'))
+ else:
+ flash('Impossible to delete the article.', 'danger')
+ return redirect(url_for('home'))
@app.route('/articles/<feed_id>/', methods=['GET'])
@app.route('/articles/<feed_id>/<int:nb_articles>', methods=['GET'])
bgstack15