2020-09-13 08:56:03 +00:00
|
|
|
import urllib.parse
|
2023-05-18 07:06:22 +00:00
|
|
|
from typing import List
|
2020-09-13 08:56:03 +00:00
|
|
|
|
2019-07-02 07:34:12 +00:00
|
|
|
from django.contrib.auth.decorators import login_required
|
2022-08-04 17:37:16 +00:00
|
|
|
from django.core.handlers.wsgi import WSGIRequest
|
2019-06-29 07:15:07 +00:00
|
|
|
from django.core.paginator import Paginator
|
2022-08-04 18:31:24 +00:00
|
|
|
from django.db.models import QuerySet, Q, prefetch_related_objects
|
2022-03-22 01:24:21 +00:00
|
|
|
from django.http import HttpResponseRedirect, Http404
|
2019-06-27 06:09:51 +00:00
|
|
|
from django.shortcuts import render
|
|
|
|
from django.urls import reverse
|
|
|
|
|
2019-06-29 10:53:37 +00:00
|
|
|
from bookmarks import queries
|
2023-05-18 07:06:22 +00:00
|
|
|
from bookmarks.models import Bookmark, BookmarkForm, BookmarkFilters, User, UserProfile, Tag, build_tag_string
|
2021-03-28 22:43:50 +00:00
|
|
|
from bookmarks.services.bookmarks import create_bookmark, update_bookmark, archive_bookmark, archive_bookmarks, \
|
|
|
|
unarchive_bookmark, unarchive_bookmarks, delete_bookmarks, tag_bookmarks, untag_bookmarks
|
2022-03-25 17:29:54 +00:00
|
|
|
from bookmarks.utils import get_safe_return_url
|
2019-06-27 06:09:51 +00:00
|
|
|
|
2019-06-29 07:15:07 +00:00
|
|
|
_default_page_size = 30
|
|
|
|
|
2019-06-27 06:09:51 +00:00
|
|
|
|
2019-07-02 07:34:12 +00:00
|
|
|
@login_required
|
2019-07-06 06:14:13 +00:00
|
|
|
def index(request):
|
2022-08-04 17:37:16 +00:00
|
|
|
filters = BookmarkFilters(request)
|
2023-08-14 22:20:52 +00:00
|
|
|
query_set = queries.query_bookmarks(request.user, request.user_profile, filters.query)
|
|
|
|
tags = queries.query_bookmark_tags(request.user, request.user_profile, filters.query)
|
2021-02-14 17:00:22 +00:00
|
|
|
base_url = reverse('bookmarks:index')
|
2022-08-04 17:37:16 +00:00
|
|
|
context = get_bookmark_view_context(request, filters, query_set, tags, base_url)
|
2021-02-14 17:00:22 +00:00
|
|
|
return render(request, 'bookmarks/index.html', context)
|
|
|
|
|
|
|
|
|
|
|
|
@login_required
|
|
|
|
def archived(request):
|
2022-08-04 17:37:16 +00:00
|
|
|
filters = BookmarkFilters(request)
|
2023-08-14 22:20:52 +00:00
|
|
|
query_set = queries.query_archived_bookmarks(request.user, request.user_profile, filters.query)
|
|
|
|
tags = queries.query_archived_bookmark_tags(request.user, request.user_profile, filters.query)
|
2021-02-14 17:00:22 +00:00
|
|
|
base_url = reverse('bookmarks:archived')
|
2022-08-04 17:37:16 +00:00
|
|
|
context = get_bookmark_view_context(request, filters, query_set, tags, base_url)
|
2021-02-14 17:00:22 +00:00
|
|
|
return render(request, 'bookmarks/archive.html', context)
|
|
|
|
|
|
|
|
|
2022-08-04 17:37:16 +00:00
|
|
|
def shared(request):
|
|
|
|
filters = BookmarkFilters(request)
|
|
|
|
user = User.objects.filter(username=filters.user).first()
|
2023-08-14 22:20:52 +00:00
|
|
|
public_only = not request.user.is_authenticated
|
|
|
|
query_set = queries.query_shared_bookmarks(user, request.user_profile, filters.query, public_only)
|
|
|
|
tags = queries.query_shared_bookmark_tags(user, request.user_profile, filters.query, public_only)
|
|
|
|
users = queries.query_shared_bookmark_users(request.user_profile, filters.query, public_only)
|
2022-08-04 17:37:16 +00:00
|
|
|
base_url = reverse('bookmarks:shared')
|
|
|
|
context = get_bookmark_view_context(request, filters, query_set, tags, base_url)
|
|
|
|
context['users'] = users
|
|
|
|
return render(request, 'bookmarks/shared.html', context)
|
|
|
|
|
|
|
|
|
2023-05-18 07:06:22 +00:00
|
|
|
def _get_selected_tags(tags: List[Tag], query_string: str, profile: UserProfile):
|
2022-08-04 18:31:24 +00:00
|
|
|
parsed_query = queries.parse_query_string(query_string)
|
|
|
|
tag_names = parsed_query['tag_names']
|
2023-05-18 07:06:22 +00:00
|
|
|
if profile.tag_search == UserProfile.TAG_SEARCH_LAX:
|
|
|
|
tag_names = tag_names + parsed_query['search_terms']
|
|
|
|
tag_names = [tag_name.lower() for tag_name in tag_names]
|
2022-08-04 18:31:24 +00:00
|
|
|
|
2023-05-18 07:06:22 +00:00
|
|
|
return [tag for tag in tags if tag.name.lower() in tag_names]
|
2022-08-04 18:31:24 +00:00
|
|
|
|
|
|
|
|
2022-08-04 17:37:16 +00:00
|
|
|
def get_bookmark_view_context(request: WSGIRequest,
|
|
|
|
filters: BookmarkFilters,
|
|
|
|
query_set: QuerySet[Bookmark],
|
|
|
|
tags: QuerySet[Tag],
|
|
|
|
base_url: str):
|
2021-02-14 17:00:22 +00:00
|
|
|
page = request.GET.get('page')
|
2019-06-29 10:53:37 +00:00
|
|
|
paginator = Paginator(query_set, _default_page_size)
|
2019-06-29 07:15:07 +00:00
|
|
|
bookmarks = paginator.get_page(page)
|
2023-05-18 07:06:22 +00:00
|
|
|
tags = list(tags)
|
2023-08-14 22:20:52 +00:00
|
|
|
selected_tags = _get_selected_tags(tags, filters.query, request.user_profile)
|
2022-09-09 17:46:55 +00:00
|
|
|
# Prefetch related objects, this avoids n+1 queries when accessing fields in templates
|
|
|
|
prefetch_related_objects(bookmarks.object_list, 'owner', 'tags')
|
2022-08-04 17:37:16 +00:00
|
|
|
return_url = generate_return_url(base_url, page, filters)
|
2023-08-14 22:20:52 +00:00
|
|
|
link_target = request.user_profile.bookmark_link_target
|
2019-06-29 07:15:07 +00:00
|
|
|
|
2019-06-30 06:24:21 +00:00
|
|
|
if request.GET.get('tag'):
|
|
|
|
mod = request.GET.copy()
|
|
|
|
mod.pop('tag')
|
|
|
|
request.GET = mod
|
|
|
|
|
2021-02-14 17:00:22 +00:00
|
|
|
return {
|
2019-06-29 10:53:37 +00:00
|
|
|
'bookmarks': bookmarks,
|
2019-06-30 17:31:32 +00:00
|
|
|
'tags': tags,
|
2022-08-04 18:31:24 +00:00
|
|
|
'selected_tags': selected_tags,
|
2022-08-04 17:37:16 +00:00
|
|
|
'filters': filters,
|
2020-09-13 08:56:03 +00:00
|
|
|
'empty': paginator.count == 0,
|
2021-10-03 07:35:59 +00:00
|
|
|
'return_url': return_url,
|
|
|
|
'link_target': link_target,
|
2019-06-27 06:09:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-04 17:37:16 +00:00
|
|
|
def generate_return_url(base_url: str, page: int, filters: BookmarkFilters):
|
2020-09-13 08:56:03 +00:00
|
|
|
url_query = {}
|
2022-08-04 17:37:16 +00:00
|
|
|
if filters.query:
|
|
|
|
url_query['q'] = filters.query
|
|
|
|
if filters.user:
|
|
|
|
url_query['user'] = filters.user
|
2020-09-13 08:56:03 +00:00
|
|
|
if page is not None:
|
|
|
|
url_query['page'] = page
|
|
|
|
url_params = urllib.parse.urlencode(url_query)
|
|
|
|
return_url = base_url if url_params == '' else base_url + '?' + url_params
|
|
|
|
return urllib.parse.quote_plus(return_url)
|
|
|
|
|
|
|
|
|
2021-12-12 21:54:22 +00:00
|
|
|
def convert_tag_string(tag_string: str):
|
|
|
|
# Tag strings coming from inputs are space-separated, however services.bookmarks functions expect comma-separated
|
|
|
|
# strings
|
|
|
|
return tag_string.replace(' ', ',')
|
|
|
|
|
|
|
|
|
2019-07-02 07:34:12 +00:00
|
|
|
@login_required
|
2019-07-06 06:14:13 +00:00
|
|
|
def new(request):
|
2019-07-05 20:29:21 +00:00
|
|
|
initial_url = request.GET.get('url')
|
2023-05-30 07:19:17 +00:00
|
|
|
initial_title = request.GET.get('title')
|
|
|
|
initial_description = request.GET.get('description')
|
2019-07-05 20:29:21 +00:00
|
|
|
initial_auto_close = 'auto_close' in request.GET
|
|
|
|
|
2019-06-28 17:37:41 +00:00
|
|
|
if request.method == 'POST':
|
2019-06-28 23:08:22 +00:00
|
|
|
form = BookmarkForm(request.POST)
|
2019-07-05 20:29:21 +00:00
|
|
|
auto_close = form.data['auto_close']
|
2019-06-28 17:37:41 +00:00
|
|
|
if form.is_valid():
|
|
|
|
current_user = request.user
|
2021-12-12 21:54:22 +00:00
|
|
|
tag_string = convert_tag_string(form.data['tag_string'])
|
|
|
|
create_bookmark(form.save(commit=False), tag_string, current_user)
|
2019-07-05 20:29:21 +00:00
|
|
|
if auto_close:
|
|
|
|
return HttpResponseRedirect(reverse('bookmarks:close'))
|
|
|
|
else:
|
|
|
|
return HttpResponseRedirect(reverse('bookmarks:index'))
|
2019-06-28 17:37:41 +00:00
|
|
|
else:
|
2019-06-28 23:08:22 +00:00
|
|
|
form = BookmarkForm()
|
2019-07-05 20:29:21 +00:00
|
|
|
if initial_url:
|
|
|
|
form.initial['url'] = initial_url
|
2023-05-30 07:19:17 +00:00
|
|
|
if initial_title:
|
|
|
|
form.initial['title'] = initial_title
|
|
|
|
if initial_description:
|
|
|
|
form.initial['description'] = initial_description
|
2019-07-05 20:29:21 +00:00
|
|
|
if initial_auto_close:
|
|
|
|
form.initial['auto_close'] = 'true'
|
2019-06-27 06:09:51 +00:00
|
|
|
|
2020-09-13 08:56:03 +00:00
|
|
|
context = {
|
|
|
|
'form': form,
|
|
|
|
'auto_close': initial_auto_close,
|
|
|
|
'return_url': reverse('bookmarks:index')
|
|
|
|
}
|
2019-12-27 11:32:44 +00:00
|
|
|
|
|
|
|
return render(request, 'bookmarks/new.html', context)
|
2019-06-28 05:33:08 +00:00
|
|
|
|
|
|
|
|
2019-07-02 07:34:12 +00:00
|
|
|
@login_required
|
2019-07-06 06:14:13 +00:00
|
|
|
def edit(request, bookmark_id: int):
|
2022-03-22 01:24:21 +00:00
|
|
|
try:
|
|
|
|
bookmark = Bookmark.objects.get(pk=bookmark_id, owner=request.user)
|
|
|
|
except Bookmark.DoesNotExist:
|
|
|
|
raise Http404('Bookmark does not exist')
|
2022-03-25 17:29:54 +00:00
|
|
|
return_url = get_safe_return_url(request.GET.get('return_url'), reverse('bookmarks:index'))
|
2020-09-13 08:56:03 +00:00
|
|
|
|
2019-06-28 22:27:20 +00:00
|
|
|
if request.method == 'POST':
|
2019-06-28 23:08:22 +00:00
|
|
|
form = BookmarkForm(request.POST, instance=bookmark)
|
2019-06-28 22:27:20 +00:00
|
|
|
if form.is_valid():
|
2021-12-12 21:54:22 +00:00
|
|
|
tag_string = convert_tag_string(form.data['tag_string'])
|
|
|
|
update_bookmark(form.save(commit=False), tag_string, request.user)
|
2020-09-13 08:56:03 +00:00
|
|
|
return HttpResponseRedirect(return_url)
|
2019-06-28 22:27:20 +00:00
|
|
|
else:
|
2019-06-28 23:08:22 +00:00
|
|
|
form = BookmarkForm(instance=bookmark)
|
2019-06-28 22:27:20 +00:00
|
|
|
|
2020-09-13 08:56:03 +00:00
|
|
|
form.initial['tag_string'] = build_tag_string(bookmark.tag_names, ' ')
|
|
|
|
|
|
|
|
context = {
|
|
|
|
'form': form,
|
|
|
|
'bookmark_id': bookmark_id,
|
|
|
|
'return_url': return_url
|
|
|
|
}
|
2019-12-27 11:32:44 +00:00
|
|
|
|
|
|
|
return render(request, 'bookmarks/edit.html', context)
|
2019-06-27 06:09:51 +00:00
|
|
|
|
|
|
|
|
2019-07-06 06:14:13 +00:00
|
|
|
def remove(request, bookmark_id: int):
|
2022-03-22 01:24:21 +00:00
|
|
|
try:
|
|
|
|
bookmark = Bookmark.objects.get(pk=bookmark_id, owner=request.user)
|
|
|
|
except Bookmark.DoesNotExist:
|
|
|
|
raise Http404('Bookmark does not exist')
|
|
|
|
|
2019-06-27 06:09:51 +00:00
|
|
|
bookmark.delete()
|
2019-07-05 20:29:21 +00:00
|
|
|
|
|
|
|
|
2021-02-14 17:00:22 +00:00
|
|
|
def archive(request, bookmark_id: int):
|
2022-03-22 01:24:21 +00:00
|
|
|
try:
|
|
|
|
bookmark = Bookmark.objects.get(pk=bookmark_id, owner=request.user)
|
|
|
|
except Bookmark.DoesNotExist:
|
|
|
|
raise Http404('Bookmark does not exist')
|
|
|
|
|
2021-02-14 17:00:22 +00:00
|
|
|
archive_bookmark(bookmark)
|
|
|
|
|
|
|
|
|
|
|
|
def unarchive(request, bookmark_id: int):
|
2022-03-22 01:24:21 +00:00
|
|
|
try:
|
|
|
|
bookmark = Bookmark.objects.get(pk=bookmark_id, owner=request.user)
|
|
|
|
except Bookmark.DoesNotExist:
|
|
|
|
raise Http404('Bookmark does not exist')
|
|
|
|
|
2021-02-14 17:00:22 +00:00
|
|
|
unarchive_bookmark(bookmark)
|
2019-07-05 20:29:21 +00:00
|
|
|
|
|
|
|
|
2022-07-23 20:17:20 +00:00
|
|
|
def mark_as_read(request, bookmark_id: int):
|
|
|
|
try:
|
|
|
|
bookmark = Bookmark.objects.get(pk=bookmark_id, owner=request.user)
|
|
|
|
except Bookmark.DoesNotExist:
|
|
|
|
raise Http404('Bookmark does not exist')
|
|
|
|
|
|
|
|
bookmark.unread = False
|
|
|
|
bookmark.save()
|
|
|
|
|
|
|
|
|
2021-03-28 22:43:50 +00:00
|
|
|
@login_required
|
2022-03-27 08:56:09 +00:00
|
|
|
def action(request):
|
2021-03-28 22:43:50 +00:00
|
|
|
# Determine action
|
2022-03-27 08:56:09 +00:00
|
|
|
if 'archive' in request.POST:
|
|
|
|
archive(request, request.POST['archive'])
|
|
|
|
if 'unarchive' in request.POST:
|
|
|
|
unarchive(request, request.POST['unarchive'])
|
|
|
|
if 'remove' in request.POST:
|
|
|
|
remove(request, request.POST['remove'])
|
2022-07-23 20:17:20 +00:00
|
|
|
if 'mark_as_read' in request.POST:
|
|
|
|
mark_as_read(request, request.POST['mark_as_read'])
|
2021-03-28 22:43:50 +00:00
|
|
|
if 'bulk_archive' in request.POST:
|
2022-03-27 08:56:09 +00:00
|
|
|
bookmark_ids = request.POST.getlist('bookmark_id')
|
2021-03-28 22:43:50 +00:00
|
|
|
archive_bookmarks(bookmark_ids, request.user)
|
|
|
|
if 'bulk_unarchive' in request.POST:
|
2022-03-27 08:56:09 +00:00
|
|
|
bookmark_ids = request.POST.getlist('bookmark_id')
|
2021-03-28 22:43:50 +00:00
|
|
|
unarchive_bookmarks(bookmark_ids, request.user)
|
|
|
|
if 'bulk_delete' in request.POST:
|
2022-03-27 08:56:09 +00:00
|
|
|
bookmark_ids = request.POST.getlist('bookmark_id')
|
2021-03-28 22:43:50 +00:00
|
|
|
delete_bookmarks(bookmark_ids, request.user)
|
|
|
|
if 'bulk_tag' in request.POST:
|
2022-03-27 08:56:09 +00:00
|
|
|
bookmark_ids = request.POST.getlist('bookmark_id')
|
2021-12-12 21:54:22 +00:00
|
|
|
tag_string = convert_tag_string(request.POST['bulk_tag_string'])
|
2021-03-28 22:43:50 +00:00
|
|
|
tag_bookmarks(bookmark_ids, tag_string, request.user)
|
|
|
|
if 'bulk_untag' in request.POST:
|
2022-03-27 08:56:09 +00:00
|
|
|
bookmark_ids = request.POST.getlist('bookmark_id')
|
2021-12-12 21:54:22 +00:00
|
|
|
tag_string = convert_tag_string(request.POST['bulk_tag_string'])
|
2021-03-28 22:43:50 +00:00
|
|
|
untag_bookmarks(bookmark_ids, tag_string, request.user)
|
|
|
|
|
2022-03-25 17:29:54 +00:00
|
|
|
return_url = get_safe_return_url(request.GET.get('return_url'), reverse('bookmarks:index'))
|
2021-03-28 22:43:50 +00:00
|
|
|
return HttpResponseRedirect(return_url)
|
|
|
|
|
|
|
|
|
2019-07-05 20:29:21 +00:00
|
|
|
@login_required
|
2019-07-06 06:14:13 +00:00
|
|
|
def close(request):
|
2019-07-05 20:29:21 +00:00
|
|
|
return render(request, 'bookmarks/close.html')
|