1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 from collections import OrderedDict
7 from urllib.parse import quote_plus
9 from django.conf import settings
10 from django.template.loader import render_to_string
11 from django.shortcuts import get_object_or_404, render, redirect
12 from django.http import HttpResponse, HttpResponseRedirect, Http404, HttpResponsePermanentRedirect
13 from django.urls import reverse
14 from django.db.models import Q, QuerySet
15 from django.contrib.auth.decorators import login_required, user_passes_test
16 from django.utils import translation
17 from django.utils.translation import gettext as _, gettext_lazy
18 from django.views.decorators.cache import never_cache
20 from ajaxable.utils import AjaxableFormView
21 from club.forms import ScheduleForm, DonationStep1Form
22 from club.models import Club
23 from annoy.models import DynamicTextInsert
24 from pdcounter import views as pdcounter_views
25 from picture.models import Picture, PictureArea
26 from catalogue import constants
27 from catalogue import forms
28 from catalogue.helpers import get_top_level_related_tags
29 from catalogue.models import Book, Collection, Tag, Fragment
30 from catalogue.utils import split_tags
31 from catalogue.models.tag import prefetch_relations
33 staff_required = user_passes_test(lambda user: user.is_staff)
36 def catalogue(request):
37 return render(request, 'catalogue/catalogue.html', {
38 'books': Book.objects.filter(findable=True, parent=None),
39 'pictures': Picture.objects.all(),
40 'collections': Collection.objects.filter(listed=True),
41 'active_menu_item': 'all_works',
45 def book_list(request, filters=None, template_name='catalogue/book_list.html',
46 nav_template_name='catalogue/snippets/book_list_nav.html',
47 list_template_name='catalogue/snippets/book_list.html'):
48 """ generates a listing of all books, optionally filtered """
49 books_by_author, orphans, books_by_parent = Book.book_list(filters)
50 books_nav = OrderedDict()
51 for tag in books_by_author:
52 if books_by_author[tag]:
53 books_nav.setdefault(tag.sort_key[0], []).append(tag)
54 return render(request, template_name, {
55 'rendered_nav': render_to_string(nav_template_name, {'books_nav': books_nav}),
56 'rendered_book_list': render_to_string(list_template_name, {
57 'books_by_author': books_by_author,
59 'books_by_parent': books_by_parent,
64 def daisy_list(request):
65 if request.EXPERIMENTS['layout'].value:
66 return object_list(request, Book.objects.filter(media__type='daisy'))
67 return book_list(request, Q(media__type='daisy'), template_name='catalogue/daisy_list.html')
70 def collection(request, slug):
71 coll = get_object_or_404(Collection, slug=slug)
72 if request.EXPERIMENTS['layout'].value:
73 template_name = 'catalogue/2022/collection.html'
75 template_name = 'catalogue/collection.html'
76 return render(request, template_name, {
78 'active_menu_item': 'collections',
82 def differentiate_tags(request, tags, ambiguous_slugs):
83 beginning = '/'.join(tag.url_chunk for tag in tags)
84 unparsed = '/'.join(ambiguous_slugs[1:])
86 for tag in Tag.objects.filter(slug=ambiguous_slugs[0]):
88 'url_args': '/'.join((beginning, tag.url_chunk, unparsed)).strip('/'),
93 'catalogue/differentiate_tags.html',
94 {'tags': tags, 'options': options, 'unparsed': ambiguous_slugs[1:]}
98 def object_list(request, objects, fragments=None, related_tags=None, tags=None,
99 list_type='books', extra=None):
102 tag_ids = [tag.pk for tag in tags]
104 related_tag_lists = []
106 related_tag_lists.append(related_tags)
108 related_tag_lists.append(
109 Tag.objects.usage_for_queryset(
111 ).exclude(category='set').exclude(pk__in=tag_ids))
112 if not (extra and extra.get('theme_is_set')):
113 if fragments is None:
114 if list_type == 'gallery':
115 fragments = PictureArea.objects.filter(picture__in=objects)
117 fragments = Fragment.objects.filter(book__in=objects)
118 related_tag_lists.append(
119 Tag.objects.usage_for_queryset(
120 fragments, counts=True
121 ).filter(category='theme').exclude(pk__in=tag_ids)
122 .only('name', 'sort_key', 'category', 'slug'))
123 if isinstance(objects, QuerySet):
124 objects = prefetch_relations(objects, 'author')
127 categories = split_tags(*related_tag_lists)
129 for c in ['author', 'epoch', 'kind', 'genre']:
130 #if len(categories.get(c, [])) > 1:
131 suggest.extend(sorted(categories[c], key=lambda t: -t.count)[:3])
133 objects = list(objects)
135 if not objects and len(tags) == 1 and list_type == 'books':
136 if PictureArea.tagged.with_any(tags).exists() or Picture.tagged.with_any(tags).exists():
137 return redirect('tagged_object_list_gallery', '/'.join(tag.url_chunk for tag in tags))
140 best = random.sample(objects, 3)
145 'object_list': objects,
146 'categories': categories,
148 'list_type': list_type,
151 'formats_form': forms.DownloadFormatsForm(),
153 'active_menu_item': list_type,
158 is_set = any((x.category == 'set' for x in tags))
159 is_theme = len(tags) == 1 and tags[0].category == 'theme'
160 has_theme = any((x.category == 'theme' for x in tags))
161 new_layout = request.EXPERIMENTS['layout']
163 if is_set and new_layout.value:
164 template = 'social/2022/set_detail.html'
165 elif is_theme and new_layout.value:
166 template = 'catalogue/2022/theme_detail.html'
167 elif new_layout.value and not has_theme:
168 template = 'catalogue/2022/author_detail.html'
170 template = 'catalogue/tagged_object_list.html'
173 request, template, result,
177 def literature(request):
178 books = Book.objects.filter(parent=None, findable=True)
179 return object_list(request, books, related_tags=get_top_level_related_tags([]))
182 def gallery(request):
183 return object_list(request, Picture.objects.all(), list_type='gallery')
186 def audiobooks(request):
187 audiobooks = Book.objects.filter(findable=True, media__type__in=('mp3', 'ogg')).distinct()
188 return object_list(request, audiobooks, list_type='audiobooks', extra={
189 'daisy': Book.objects.filter(findable=True, media__type='daisy').distinct(),
193 class ResponseInstead(Exception):
194 def __init__(self, response):
195 super(ResponseInstead, self).__init__()
196 self.response = response
199 def analyse_tags(request, tag_str):
201 tags = Tag.get_tag_list(tag_str)
202 except Tag.DoesNotExist:
203 # Perhaps the user is asking about an author in Public Domain
204 # counter (they are not represented in tags)
205 chunks = tag_str.split('/')
206 if len(chunks) == 2 and chunks[0] == 'autor':
207 raise ResponseInstead(pdcounter_views.author_detail(request, chunks[1]))
209 except Tag.MultipleObjectsReturned as e:
210 # Ask the user to disambiguate
211 raise ResponseInstead(differentiate_tags(request, e.tags, e.ambiguous_slugs))
212 except Tag.UrlDeprecationWarning as e:
213 raise ResponseInstead(HttpResponsePermanentRedirect(
214 reverse('tagged_object_list', args=['/'.join(tag.url_chunk for tag in e.tags)])))
217 if len(tags) > settings.MAX_TAG_LIST:
219 except AttributeError:
225 def theme_list(request, tags, list_type):
226 shelf_tags = [tag for tag in tags if tag.category == 'set']
227 fragment_tags = [tag for tag in tags if tag.category != 'set']
228 if list_type == 'gallery':
229 fragments = PictureArea.tagged.with_all(fragment_tags)
231 fragments = Fragment.tagged.with_all(fragment_tags)
234 # TODO: Pictures on shelves not supported yet.
235 books = Book.tagged.with_all(shelf_tags).order_by()
236 fragments = fragments.filter(Q(book__in=books) | Q(book__ancestor__in=books))
237 elif list_type == 'books':
238 fragments = fragments.filter(book__findable=True)
240 if not fragments and len(tags) == 1 and list_type == 'books':
241 if PictureArea.tagged.with_any(tags).exists() or Picture.tagged.with_any(tags).exists():
242 return redirect('tagged_object_list_gallery', '/'.join(tag.url_chunk for tag in tags))
244 return object_list(request, fragments, tags=tags, list_type=list_type, extra={
245 'theme_is_set': True,
246 'active_menu_item': 'theme',
250 def tagged_object_list(request, tags, list_type):
252 tags = analyse_tags(request, tags)
253 except ResponseInstead as e:
256 if list_type == 'gallery' and any(tag.category == 'set' for tag in tags):
259 if any(tag.category in ('theme', 'thing') for tag in tags):
260 return theme_list(request, tags, list_type=list_type)
262 if list_type == 'books':
263 books = Book.tagged.with_all(tags)
265 if any(tag.category == 'set' for tag in tags):
266 params = {'objects': books}
268 books = books.filter(findable=True)
270 'objects': Book.tagged_top_level(tags).filter(findable=True),
271 'fragments': Fragment.objects.filter(book__in=books),
272 'related_tags': get_top_level_related_tags(tags),
274 elif list_type == 'gallery':
275 params = {'objects': Picture.tagged.with_all(tags)}
276 elif list_type == 'audiobooks':
277 audiobooks = Book.objects.filter(findable=True, media__type__in=('mp3', 'ogg')).distinct()
279 'objects': Book.tagged.with_all(tags, audiobooks),
281 'daisy': Book.tagged.with_all(
282 tags, audiobooks.filter(media__type='daisy').distinct()
289 return object_list(request, tags=tags, list_type=list_type, **params)
292 def book_fragments(request, slug, theme_slug):
293 book = get_object_or_404(Book, slug=slug)
294 theme = get_object_or_404(Tag, slug=theme_slug, category='theme')
295 fragments = Fragment.tagged.with_all([theme]).filter(
296 Q(book=book) | Q(book__ancestor=book))
300 'catalogue/book_fragments.html',
304 'fragments': fragments,
305 'active_menu_item': 'books',
310 def book_detail(request, slug):
312 book = Book.objects.get(slug=slug)
313 except Book.DoesNotExist:
314 return pdcounter_views.book_stub_detail(request, slug)
316 new_layout = request.EXPERIMENTS['layout']
320 'catalogue/2022/book_detail.html' if new_layout.value else 'catalogue/book_detail.html',
323 'accessible': book.is_accessible_to(request.user),
324 'book_children': book.children.all().order_by('parent_number', 'sort_key'),
325 'active_menu_item': 'books',
326 'club_form': ScheduleForm() if book.preview else None,
327 'club': Club.objects.first() if book.preview else None,
328 'donation_form': DonationStep1Form(),
330 'EXPERIMENTS_SWITCHABLE_layout': True,
334 # używane w publicznym interfejsie
335 def player(request, slug):
336 book = get_object_or_404(Book, slug=slug)
337 if not book.has_media('mp3'):
340 audiobooks, projects, total_duration = book.get_audiobooks()
344 'catalogue/player.html',
348 'audiobooks': audiobooks,
349 'projects': projects,
353 def book_text(request, slug):
354 book = get_object_or_404(Book, slug=slug)
356 if not book.is_accessible_to(request.user):
357 return HttpResponseRedirect(book.get_absolute_url())
359 if not book.has_html_file():
361 with book.html_file.open('r') as f:
364 return render(request, 'catalogue/book_text.html', {
366 'book_text': book_text,
367 'inserts': DynamicTextInsert.get_all(request)
376 def import_book(request):
377 """docstring for import_book"""
378 book_import_form = forms.BookImportForm(request.POST, request.FILES)
379 if book_import_form.is_valid():
381 book_import_form.save()
386 info = sys.exc_info()
387 exception = pprint.pformat(info[1])
388 tb = '\n'.join(traceback.format_tb(info[2]))
390 _("An error occurred: %(exception)s\n\n%(tb)s") % {
391 'exception': exception, 'tb': tb
393 content_type='text/plain'
395 return HttpResponse(_("Book imported successfully"))
396 return HttpResponse(_("Error importing file: %r") % book_import_form.errors)
401 def book_info(request, book_id, lang='pl'):
402 book = get_object_or_404(Book, id=book_id)
403 # set language by hand
404 translation.activate(lang)
405 return render(request, 'catalogue/book_info.html', {'book': book})
408 def tag_info(request, tag_id):
409 tag = get_object_or_404(Tag, id=tag_id)
410 return HttpResponse(tag.description)
414 def embargo_link(request, key, format_, slug):
415 book = get_object_or_404(Book, slug=slug)
416 if format_ not in Book.formats:
418 if key != book.preview_key:
420 media_file = book.get_media(format_)
422 return HttpResponseRedirect(media_file.url)
423 return HttpResponse(media_file, content_type=constants.EBOOK_CONTENT_TYPES[format_])
426 def download_zip(request, file_format=None, media_format=None, slug=None):
428 url = Book.zip_format(file_format)
429 elif media_format and slug is not None:
430 book = get_object_or_404(Book, slug=slug)
431 url = book.zip_audiobooks(media_format)
433 raise Http404('No format specified for zip package')
434 return HttpResponseRedirect(quote_plus(settings.MEDIA_URL + url, safe='/?='))
437 class CustomPDFFormView(AjaxableFormView):
438 form_class = forms.CustomPDFForm
439 title = gettext_lazy('Download custom PDF')
440 submit = gettext_lazy('Download')
441 template = 'catalogue/custom_pdf_form.html'
444 def __call__(self, *args, **kwargs):
445 if settings.NO_CUSTOM_PDF:
446 raise Http404('Custom PDF is disabled')
447 return super(CustomPDFFormView, self).__call__(*args, **kwargs)
449 def form_args(self, request, obj):
450 """Override to parse view args and give additional args to the form."""
453 def validate_object(self, obj, request):
455 if not book.is_accessible_to(request.user):
456 return HttpResponseRedirect(book.get_absolute_url())
457 return super(CustomPDFFormView, self).validate_object(obj, request)
459 def get_object(self, request, slug, *args, **kwargs):
460 book = get_object_or_404(Book, slug=slug)
463 def context_description(self, request, obj):
464 return obj.pretty_title()
467 def tag_catalogue(request, category):
468 if category == 'theme':
469 tags = Tag.objects.usage_for_model(
470 Fragment, counts=True).filter(category='theme')
472 tags = list(get_top_level_related_tags((), categories=(category,)))
474 described_tags = [tag for tag in tags if tag.description]
476 if len(described_tags) > 4:
477 best = random.sample(described_tags, 4)
479 best = described_tags
481 if request.EXPERIMENTS['layout'].value:
482 template_name = 'catalogue/2022/tag_catalogue.html'
484 template_name = 'catalogue/tag_catalogue.html'
486 return render(request, template_name, {
489 'title': constants.CATEGORIES_NAME_PLURAL[category],
490 'whole_category': constants.WHOLE_CATEGORY[category],
491 'active_menu_item': 'theme' if category == 'theme' else None,
495 def collections(request):
496 objects = Collection.objects.filter(listed=True)
499 best = random.sample(list(objects), 4)
503 if request.EXPERIMENTS['layout'].value:
504 template_name = 'catalogue/2022/collections.html'
506 template_name = 'catalogue/collections.html'
508 return render(request, template_name, {
511 'active_menu_item': 'collections'
515 def ridero_cover(request, slug):
516 from librarian.cover import make_cover
517 wldoc = Book.objects.get(slug=slug).wldocument()
518 cover = make_cover(wldoc.book_info, width=980, bleed=20, format='PNG')
519 response = HttpResponse(content_type="image/png")
524 def get_isbn(request, book_format, slug):
525 book = Book.objects.get(slug=slug)
526 return HttpResponse(book.get_extra_info_json().get('isbn_%s' % book_format))