aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-31 14:47:52 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-31 14:47:52 +0200
commit7f17daa315b01ad7452e2afea9955c74c4e9a5a5 (patch)
tree0bdadc6357427f3aff0bbb156927cad2e8045b2a /src
parentDisplay the selected tags/search term. (diff)
downloadnewspipe-7f17daa315b01ad7452e2afea9955c74c4e9a5a5.tar.gz
newspipe-7f17daa315b01ad7452e2afea9955c74c4e9a5a5.tar.bz2
newspipe-7f17daa315b01ad7452e2afea9955c74c4e9a5a5.zip
Improved the bookmapks.list_ route.
Diffstat (limited to 'src')
-rw-r--r--src/web/views/bookmark.py19
1 files changed, 12 insertions, 7 deletions
diff --git a/src/web/views/bookmark.py b/src/web/views/bookmark.py
index 69a094ac..127bb6a0 100644
--- a/src/web/views/bookmark.py
+++ b/src/web/views/bookmark.py
@@ -54,18 +54,20 @@ bookmark_bp = Blueprint('bookmark', __name__, url_prefix='/bookmark')
def list_(per_page, status='all'):
"Lists the bookmarks."
head_titles = [gettext("Bookmarks")]
+ user_id = None
filters = {}
tag = request.args.get('tag', None)
if tag:
filters['tags_proxy__contains'] = tag
query = request.args.get('query', None)
if query:
- query = '%' + query + '%'
- filters['__or__'] = {'title__ilike': query, 'description__ilike': query}
-
+ query_regex = '%' + query + '%'
+ filters['__or__'] = {'title__ilike': query_regex,
+ 'description__ilike': query_regex}
if current_user.is_authenticated:
# query for the bookmarks of the authenticated user
+ user_id = current_user.id
if status == 'public':
filters['shared'] = True
elif status == 'private':
@@ -77,12 +79,13 @@ def list_(per_page, status='all'):
filters['to_read'] = True
else:
pass
- bookmark_query = BookmarkController(current_user.id).read(**filters)
else:
# query for the shared bookmarks (of all users)
filters['shared'] = True
- bookmark_query = BookmarkController().read(**filters)
- bookmarks = bookmark_query.order_by(desc('time'))
+
+ bookmarks = BookmarkController(user_id) \
+ .read(**filters) \
+ .order_by(desc('time'))
page, per_page, offset = get_page_args()
pagination = Pagination(page=page, total=bookmarks.count(),
@@ -93,7 +96,9 @@ def list_(per_page, status='all'):
return render_template('bookmarks.html',
head_titles=head_titles,
bookmarks=bookmarks.offset(offset).limit(per_page),
- pagination=pagination)
+ pagination=pagination,
+ tag=tag,
+ query=query)
@bookmark_bp.route('/create', methods=['GET'])
bgstack15