mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
0975914a86
* Rename BookmarkFilters to BookmarkSearch * Refactor queries to accept BookmarkSearch * Sort query by data added and title * Ensure pagination respects search parameters * Ensure tag cloud respects search parameters * Ensure user select respects search parameters * Ensure return url respects search options * Fix passing search options to user select * Fix BookmarkSearch initialization * Extract common search form logic * Ensure partial update respects search options * Add sort UI * Use custom ICU collation when sorting with SQLite * Support sort in API
32 lines
862 B
Python
32 lines
862 B
Python
from bookmarks import queries
|
|
from bookmarks.models import BookmarkSearch, Toast
|
|
from bookmarks import utils
|
|
|
|
|
|
def toasts(request):
|
|
user = request.user
|
|
toast_messages = Toast.objects.filter(owner=user, acknowledged=False) if user.is_authenticated else []
|
|
has_toasts = len(toast_messages) > 0
|
|
|
|
return {
|
|
'has_toasts': has_toasts,
|
|
'toast_messages': toast_messages,
|
|
}
|
|
|
|
|
|
def public_shares(request):
|
|
# Only check for public shares for anonymous users
|
|
if not request.user.is_authenticated:
|
|
query_set = queries.query_shared_bookmarks(None, request.user_profile, BookmarkSearch(), True)
|
|
has_public_shares = query_set.count() > 0
|
|
return {
|
|
'has_public_shares': has_public_shares,
|
|
}
|
|
|
|
return {}
|
|
|
|
|
|
def app_version(request):
|
|
return {
|
|
'app_version': utils.app_version
|
|
}
|