Leftovers
[wolnelektury.git] / src / catalogue / urls.py
1 # This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3 #
4 from django.urls import path, re_path
5 from django.db.models import Max
6 from django.views.generic import ListView, RedirectView
7 from catalogue.feeds import AudiobookFeed
8 from catalogue.models import Book
9 from catalogue import views
10 import search.views
11
12
13 urlpatterns = [
14     # old search page - redirected
15     path('szukaj/', RedirectView.as_view(
16         url='/szukaj/', query_string=True, permanent=True)),
17
18     path('', views.catalogue, name='catalogue'),
19
20     path('autor/', views.tag_catalogue, {'category': 'author'}, name='author_catalogue'),
21     path('epoka/', views.tag_catalogue, {'category': 'epoch'}, name='epoch_catalogue'),
22     path('gatunek/', views.tag_catalogue, {'category': 'genre'}, name='genre_catalogue'),
23     path('rodzaj/', views.tag_catalogue, {'category': 'kind'}, name='kind_catalogue'),
24     path('motyw/', views.tag_catalogue, {'category': 'theme'}, name='theme_catalogue'),
25
26     path('kolekcje/', views.collections, name='catalogue_collections'),
27
28     path('lektury/', views.LiteratureView.as_view(), name='book_list'),
29     path('lektury/<slug:slug>/', views.collection, name='collection'),
30     path('audiobooki/', views.AudiobooksView.as_view(), name='audiobook_list'),
31     path('daisy/', views.daisy_list, name='daisy_list'),
32     path('jtags/', search.views.hint, {'param': 'q', 'mozhint': True}, name='jhint'),
33     path('nowe/', ListView.as_view(
34         queryset=Book.objects.filter(parent=None, findable=True).order_by('-created_at')[:100],
35         template_name='catalogue/recent_list.html'), name='recent_list'),
36     path('nowe/audiobooki/', ListView.as_view(
37         queryset=Book.objects.filter(media__type='ogg').annotate(m=Max('media__uploaded_at')).order_by('-m')[:100],
38         template_name='catalogue/recent_audiobooks_list.html'), name='recent_audiobooks_list'),
39     path('nowe/daisy/', ListView.as_view(
40         queryset=Book.objects.filter(media__type='daisy').annotate(m=Max('media__uploaded_at')).order_by('-m')[:100],
41         template_name='catalogue/recent_daisy_list.html'), name='recent_daisy_list'),
42
43     path('custompdf/<slug:slug>/', views.CustomPDFFormView(), name='custom_pdf_form'),
44
45     re_path(r'^audiobooki/(?P<type>mp3|ogg|daisy|all).xml$', AudiobookFeed(), name='audiobook_feed'),
46
47     path('pobierz/<key>/<slug:slug>.<slug:format_>', views.embargo_link, name='embargo_link'),
48
49     # zip
50     path('zip/pdf.zip', views.download_zip, {'file_format': 'pdf', 'slug': None}, 'download_zip_pdf'),
51     path('zip/epub.zip', views.download_zip, {'file_format': 'epub', 'slug': None}, 'download_zip_epub'),
52     path('zip/mobi.zip', views.download_zip, {'file_format': 'mobi', 'slug': None}, 'download_zip_mobi'),
53     path('zip/mp3/<slug:slug>.zip', views.download_zip, {'media_format': 'mp3'}, 'download_zip_mp3'),
54     path('zip/ogg/<slug:slug>.zip', views.download_zip, {'media_format': 'ogg'}, 'download_zip_ogg'),
55
56     # Public interface. Do not change this URLs.
57     path('lektura/<slug:slug>.html', views.book_text, name='book_text'),
58     path('lektura/<slug:slug>/', views.book_detail, name='book_detail'),
59     path('lektura/<slug:slug>/motyw/<slug:theme_slug>/',
60          views.book_fragments, name='book_fragments'),
61
62     path('okladka-ridero/<slug:slug>.png', views.ridero_cover),
63     path('isbn/<slug:book_format>/<slug:slug>/', views.get_isbn),
64
65     # This should be the last pattern.
66     re_path(r'^audiobooki/(?P<tags>[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'audiobooks'},
67         name='tagged_object_list_audiobooks'),
68     re_path(r'^(?P<tags>[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'books'},
69         name='tagged_object_list'),
70
71 ]