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 django.conf import settings
8 from django.http.response import HttpResponseForbidden
9 from django.template.loader import render_to_string
10 from django.shortcuts import get_object_or_404, render, redirect
11 from django.http import HttpResponse, HttpResponseRedirect, Http404, HttpResponsePermanentRedirect
12 from django.core.urlresolvers import reverse
13 from django.db.models import Q, QuerySet
14 from django.contrib.auth.decorators import login_required, user_passes_test
15 from django.utils.http import urlquote_plus
16 from django.utils import translation
17 from django.utils.translation import ugettext as _, ugettext_lazy
19 from ajaxable.utils import AjaxableFormView
20 from pdcounter import views as pdcounter_views
21 from paypal.rest import user_is_subscribed
22 from picture.models import Picture, PictureArea
23 from ssify import ssi_included, ssi_expect, SsiVariable as Var
24 from catalogue import constants
25 from catalogue import forms
26 from catalogue.helpers import get_top_level_related_tags
27 from catalogue.models import Book, Collection, Tag, Fragment
28 from catalogue.utils import split_tags
29 from catalogue.models.tag import prefetch_relations
30 from wolnelektury.utils import is_crawler
32 staff_required = user_passes_test(lambda user: user.is_staff)
35 def catalogue(request):
36 return render(request, 'catalogue/catalogue.html', {
37 'books': Book.objects.filter(parent=None),
38 'pictures': Picture.objects.all(),
39 'collections': Collection.objects.all(),
40 'active_menu_item': 'all_works',
44 def book_list(request, filters=None, template_name='catalogue/book_list.html',
45 nav_template_name='catalogue/snippets/book_list_nav.html',
46 list_template_name='catalogue/snippets/book_list.html'):
47 """ generates a listing of all books, optionally filtered """
48 books_by_author, orphans, books_by_parent = Book.book_list(filters)
49 books_nav = OrderedDict()
50 for tag in books_by_author:
51 if books_by_author[tag]:
52 books_nav.setdefault(tag.sort_key[0], []).append(tag)
53 return render(request, template_name, {
54 'rendered_nav': render_to_string(nav_template_name, {'books_nav': books_nav}),
55 'rendered_book_list': render_to_string(list_template_name, {
56 'books_by_author': books_by_author,
58 'books_by_parent': books_by_parent,
63 def daisy_list(request):
64 return book_list(request, Q(media__type='daisy'), template_name='catalogue/daisy_list.html')
67 def collection(request, slug):
68 coll = get_object_or_404(Collection, slug=slug)
69 return render(request, 'catalogue/collection.html', {'collection': coll})
72 def differentiate_tags(request, tags, ambiguous_slugs):
73 beginning = '/'.join(tag.url_chunk for tag in tags)
74 unparsed = '/'.join(ambiguous_slugs[1:])
76 for tag in Tag.objects.filter(slug=ambiguous_slugs[0]):
78 'url_args': '/'.join((beginning, tag.url_chunk, unparsed)).strip('/'),
83 'catalogue/differentiate_tags.html', {'tags': tags, 'options': options, 'unparsed': ambiguous_slugs[1:]})
86 def object_list(request, objects, fragments=None, related_tags=None, tags=None, list_type='books', extra=None):
89 tag_ids = [tag.pk for tag in tags]
91 related_tag_lists = []
93 related_tag_lists.append(related_tags)
95 related_tag_lists.append(
96 Tag.objects.usage_for_queryset(objects, counts=True).exclude(category='set').exclude(pk__in=tag_ids))
97 if not (extra and extra.get('theme_is_set')):
99 if list_type == 'gallery':
100 fragments = PictureArea.objects.filter(picture__in=objects)
102 fragments = Fragment.objects.filter(book__in=objects)
103 related_tag_lists.append(
104 Tag.objects.usage_for_queryset(fragments, counts=True).filter(category='theme').exclude(pk__in=tag_ids)
105 .only('name', 'sort_key', 'category', 'slug'))
106 if isinstance(objects, QuerySet):
107 objects = prefetch_relations(objects, 'author')
109 categories = split_tags(*related_tag_lists)
111 objects = list(objects)
113 if not objects and len(tags) == 1 and list_type == 'books':
114 if PictureArea.tagged.with_any(tags).exists() or Picture.tagged.with_any(tags).exists():
115 return redirect('tagged_object_list_gallery', '/'.join(tag.url_chunk for tag in tags))
118 best = random.sample(objects, 3)
123 'object_list': objects,
124 'categories': categories,
125 'list_type': list_type,
128 'formats_form': forms.DownloadFormatsForm(),
130 'active_menu_item': list_type,
136 'catalogue/tagged_object_list.html', result,
140 def literature(request):
141 books = Book.objects.filter(parent=None)
142 return object_list(request, books, related_tags=get_top_level_related_tags([]))
145 def gallery(request):
146 return object_list(request, Picture.objects.all(), list_type='gallery')
149 def audiobooks(request):
150 audiobooks = Book.objects.filter(media__type__in=('mp3', 'ogg')).distinct()
151 return object_list(request, audiobooks, list_type='audiobooks', extra={
152 'daisy': Book.objects.filter(media__type='daisy').distinct(),
156 class ResponseInstead(Exception):
157 def __init__(self, response):
158 super(ResponseInstead, self).__init__()
159 self.response = response
162 def analyse_tags(request, tag_str):
164 tags = Tag.get_tag_list(tag_str)
165 except Tag.DoesNotExist:
166 # Perhaps the user is asking about an author in Public Domain
167 # counter (they are not represented in tags)
168 chunks = tag_str.split('/')
169 if len(chunks) == 2 and chunks[0] == 'autor':
170 raise ResponseInstead(pdcounter_views.author_detail(request, chunks[1]))
173 except Tag.MultipleObjectsReturned as e:
174 # Ask the user to disambiguate
175 raise ResponseInstead(differentiate_tags(request, e.tags, e.ambiguous_slugs))
176 except Tag.UrlDeprecationWarning as e:
177 raise ResponseInstead(HttpResponsePermanentRedirect(
178 reverse('tagged_object_list', args=['/'.join(tag.url_chunk for tag in e.tags)])))
181 if len(tags) > settings.MAX_TAG_LIST:
183 except AttributeError:
189 def theme_list(request, tags, list_type):
190 shelf_tags = [tag for tag in tags if tag.category == 'set']
191 fragment_tags = [tag for tag in tags if tag.category != 'set']
192 if list_type == 'gallery':
193 fragments = PictureArea.tagged.with_all(fragment_tags)
195 fragments = Fragment.tagged.with_all(fragment_tags)
198 # TODO: Pictures on shelves not supported yet.
199 books = Book.tagged.with_all(shelf_tags).order_by()
200 fragments = fragments.filter(Q(book__in=books) | Q(book__ancestor__in=books))
202 if not fragments and len(tags) == 1 and list_type == 'books':
203 if PictureArea.tagged.with_any(tags).exists() or Picture.tagged.with_any(tags).exists():
204 return redirect('tagged_object_list_gallery', '/'.join(tag.url_chunk for tag in tags))
206 return object_list(request, fragments, tags=tags, list_type=list_type, extra={
207 'theme_is_set': True,
208 'active_menu_item': 'theme',
212 def tagged_object_list(request, tags, list_type):
214 tags = analyse_tags(request, tags)
215 except ResponseInstead as e:
218 if is_crawler(request) and len(tags) > 1:
219 return HttpResponseForbidden('address removed from crawling. check robots.txt')
221 if list_type == 'gallery' and any(tag.category == 'set' for tag in tags):
224 if any(tag.category in ('theme', 'thing') for tag in tags):
225 return theme_list(request, tags, list_type=list_type)
227 if list_type == 'books':
228 books = Book.tagged.with_all(tags)
230 if any(tag.category == 'set' for tag in tags):
231 params = {'objects': books}
234 'objects': Book.tagged_top_level(tags),
235 'fragments': Fragment.objects.filter(book__in=books),
236 'related_tags': get_top_level_related_tags(tags),
238 elif list_type == 'gallery':
239 params = {'objects': Picture.tagged.with_all(tags)}
240 elif list_type == 'audiobooks':
241 audiobooks = Book.objects.filter(media__type__in=('mp3', 'ogg')).distinct()
243 'objects': Book.tagged.with_all(tags, audiobooks),
245 'daisy': Book.tagged.with_all(tags, audiobooks.filter(media__type='daisy').distinct()),
251 return object_list(request, tags=tags, list_type=list_type, **params)
254 def book_fragments(request, slug, theme_slug):
255 book = get_object_or_404(Book, slug=slug)
256 theme = get_object_or_404(Tag, slug=theme_slug, category='theme')
257 fragments = Fragment.tagged.with_all([theme]).filter(
258 Q(book=book) | Q(book__ancestor=book))
262 'catalogue/book_fragments.html',
266 'fragments': fragments,
267 'active_menu_item': 'books',
271 def book_detail(request, slug):
273 book = Book.objects.get(slug=slug)
274 except Book.DoesNotExist:
275 return pdcounter_views.book_stub_detail(request, slug)
279 'catalogue/book_detail.html',
282 'book_children': book.children.all().order_by('parent_number', 'sort_key'),
283 'active_menu_item': 'books',
287 # używane w publicznym interfejsie
288 def player(request, slug):
289 book = get_object_or_404(Book, slug=slug)
290 if not book.has_media('mp3'):
293 audiobooks, projects = book.get_audiobooks()
297 'catalogue/player.html',
301 'audiobooks': audiobooks,
302 'projects': projects,
306 def book_text(request, slug):
307 book = get_object_or_404(Book, slug=slug)
309 if book.preview and not user_is_subscribed(request.user):
310 return HttpResponseRedirect(book.get_absolute_url())
312 if not book.has_html_file():
314 return render(request, 'catalogue/book_text.html', {'book': book})
322 def import_book(request):
323 """docstring for import_book"""
324 book_import_form = forms.BookImportForm(request.POST, request.FILES)
325 if book_import_form.is_valid():
327 book_import_form.save()
332 info = sys.exc_info()
333 exception = pprint.pformat(info[1])
334 tb = '\n'.join(traceback.format_tb(info[2]))
336 _("An error occurred: %(exception)s\n\n%(tb)s") % {'exception': exception, 'tb': tb},
337 mimetype='text/plain')
338 return HttpResponse(_("Book imported successfully"))
340 return HttpResponse(_("Error importing file: %r") % book_import_form.errors)
345 def book_info(request, book_id, lang='pl'):
346 book = get_object_or_404(Book, id=book_id)
347 # set language by hand
348 translation.activate(lang)
349 return render(request, 'catalogue/book_info.html', {'book': book})
352 def tag_info(request, tag_id):
353 tag = get_object_or_404(Tag, id=tag_id)
354 return HttpResponse(tag.description)
357 def embargo_link(request, format_, slug):
358 book = get_object_or_404(Book, slug=slug)
359 if format_ not in Book.formats:
361 media_file = book.get_media(format_)
363 return HttpResponseRedirect(media_file.url)
364 if not user_is_subscribed(request.user):
365 return HttpResponseRedirect(book.get_absolute_url())
366 return HttpResponse(media_file, content_type=constants.EBOOK_CONTENT_TYPES[format_])
369 def download_zip(request, format, slug=None):
370 if format in Book.ebook_formats:
371 url = Book.zip_format(format)
372 elif format in ('mp3', 'ogg') and slug is not None:
373 book = get_object_or_404(Book, slug=slug)
374 url = book.zip_audiobooks(format)
376 raise Http404('No format specified for zip package')
377 return HttpResponseRedirect(urlquote_plus(settings.MEDIA_URL + url, safe='/?='))
380 class CustomPDFFormView(AjaxableFormView):
381 form_class = forms.CustomPDFForm
382 title = ugettext_lazy('Download custom PDF')
383 submit = ugettext_lazy('Download')
384 template = 'catalogue/custom_pdf_form.html'
387 def __call__(self, *args, **kwargs):
388 if settings.NO_CUSTOM_PDF:
389 raise Http404('Custom PDF is disabled')
390 return super(CustomPDFFormView, self).__call__(*args, **kwargs)
392 def form_args(self, request, obj):
393 """Override to parse view args and give additional args to the form."""
396 def validate_object(self, obj, request):
398 if book.preview and not user_is_subscribed(request.user):
399 return HttpResponseRedirect(book.get_absolute_url())
400 return super(CustomPDFFormView, self).validate_object(obj, request)
402 def get_object(self, request, slug, *args, **kwargs):
403 book = get_object_or_404(Book, slug=slug)
406 def context_description(self, request, obj):
407 return obj.pretty_title()
416 def book_mini(request, pk, with_link=True):
417 # book = get_object_or_404(Book, pk=pk)
419 book = Book.objects.only('cover_thumb', 'title', 'language', 'slug').get(pk=pk)
420 except Book.DoesNotExist:
422 return render(request, 'catalogue/book_mini_box.html', {
424 'no_link': not with_link,
428 @ssi_included(get_ssi_vars=lambda pk: (lambda ipk: (
429 ('ssify.get_csrf_token',),
430 ('social_tags.likes_book', (ipk,)),
431 ('social_tags.book_shelf_tags', (ipk,)),
432 ))(ssi_expect(pk, int)))
433 def book_short(request, pk):
434 book = get_object_or_404(Book, pk=pk)
436 return render(request, 'catalogue/book_short.html', {
442 get_ssi_vars=lambda pk: book_short.get_ssi_vars(pk) +
444 ('social_tags.choose_cite', [ipk]),
445 ('catalogue_tags.choose_fragment', [ipk], {
446 'unless': Var('social_tags.choose_cite', [ipk])}),
447 ))(ssi_expect(pk, int)))
448 def book_wide(request, pk):
449 book = get_object_or_404(Book, pk=pk)
451 return render(request, 'catalogue/book_wide.html', {
457 def fragment_short(request, pk):
458 fragment = get_object_or_404(Fragment, pk=pk)
459 return render(request, 'catalogue/fragment_short.html', {'fragment': fragment})
463 def fragment_promo(request, pk):
464 fragment = get_object_or_404(Fragment, pk=pk)
465 return render(request, 'catalogue/fragment_promo.html', {'fragment': fragment})
469 def tag_box(request, pk):
470 tag = get_object_or_404(Tag, pk=pk)
471 assert tag.category != 'set'
473 return render(request, 'catalogue/tag_box.html', {
479 def collection_box(request, pk):
480 collection = get_object_or_404(Collection, pk=pk)
482 return render(request, 'catalogue/collection_box.html', {
483 'collection': collection,
487 def tag_catalogue(request, category):
488 if category == 'theme':
489 tags = Tag.objects.usage_for_model(
490 Fragment, counts=True).filter(category='theme')
492 tags = list(get_top_level_related_tags((), categories=(category,)))
494 described_tags = [tag for tag in tags if tag.description]
496 if len(described_tags) > 4:
497 best = random.sample(described_tags, 4)
499 best = described_tags
501 return render(request, 'catalogue/tag_catalogue.html', {
504 'title': constants.CATEGORIES_NAME_PLURAL[category],
505 'whole_category': constants.WHOLE_CATEGORY[category],
506 'active_menu_item': 'theme' if category == 'theme' else None,
510 def collections(request):
511 objects = Collection.objects.all()
514 best = random.sample(list(objects), 3)
518 return render(request, 'catalogue/collections.html', {
524 def ridero_cover(request, slug):
525 from librarian.cover import make_cover
526 wldoc = Book.objects.get(slug=slug).wldocument()
527 cover = make_cover(wldoc.book_info, width=980, bleed=20, format='PNG')
528 response = HttpResponse(content_type="image/png")
533 def get_isbn(request, book_format, slug):
534 book = Book.objects.get(slug=slug)
535 return HttpResponse(book.extra_info.get('isbn_%s' % book_format))