Fixes
[wolnelektury.git] / src / catalogue / urls.py
1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. 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 picture.views
11
12
13 urlpatterns = [
14     path('obraz/strona/', picture.views.picture_page, name='picture_page'),
15     # pictures - currently pictures are coupled with catalogue, hence the url is here
16     path('obraz/', picture.views.picture_list_thumb, name='picture_list_thumb'),
17     path('obraz/<slug:slug>.html', picture.views.picture_viewer, name='picture_viewer'),
18     path('obraz/<slug:slug>/', picture.views.picture_detail, name='picture_detail'),
19
20     # old search page - redirected
21     path('szukaj/', RedirectView.as_view(
22         url='/szukaj/', query_string=True, permanent=True)),
23
24     path('', views.catalogue, name='catalogue'),
25
26     path('autor/', views.tag_catalogue, {'category': 'author'}, name='author_catalogue'),
27     path('epoka/', views.tag_catalogue, {'category': 'epoch'}, name='epoch_catalogue'),
28     path('gatunek/', views.tag_catalogue, {'category': 'genre'}, name='genre_catalogue'),
29     path('rodzaj/', views.tag_catalogue, {'category': 'kind'}, name='kind_catalogue'),
30     path('motyw/', views.tag_catalogue, {'category': 'theme'}, name='theme_catalogue'),
31
32     path('galeria/', views.gallery, name='gallery'),
33     path('kolekcje/', views.collections, name='catalogue_collections'),
34
35     path('lektury/', views.literature, name='book_list'),
36     path('lektury/<slug:slug>/', views.collection, name='collection'),
37     path('audiobooki/', views.audiobooks, name='audiobook_list'),
38     path('daisy/', views.daisy_list, name='daisy_list'),
39     path('nowe/', ListView.as_view(
40         queryset=Book.objects.filter(parent=None, findable=True).order_by('-created_at'),
41         template_name='catalogue/recent_list.html'), name='recent_list'),
42     path('nowe/audiobooki/', ListView.as_view(
43         queryset=Book.objects.filter(media__type='ogg').annotate(m=Max('media__uploaded_at')).order_by('-m'),
44         template_name='catalogue/recent_audiobooks_list.html'), name='recent_audiobooks_list'),
45     path('nowe/daisy/', ListView.as_view(
46         queryset=Book.objects.filter(media__type='daisy').annotate(m=Max('media__uploaded_at')).order_by('-m'),
47         template_name='catalogue/recent_daisy_list.html'), name='recent_daisy_list'),
48
49     path('custompdf/<slug:slug>/', views.CustomPDFFormView(), name='custom_pdf_form'),
50
51     re_path(r'^audiobooki/(?P<type>mp3|ogg|daisy|all).xml$', AudiobookFeed(), name='audiobook_feed'),
52
53     path('pobierz/<key>/<slug:slug>.<slug:format_>', views.embargo_link, name='embargo_link'),
54
55     # zip
56     path('zip/pdf.zip', views.download_zip, {'format': 'pdf', 'slug': None}, 'download_zip_pdf'),
57     path('zip/epub.zip', views.download_zip, {'format': 'epub', 'slug': None}, 'download_zip_epub'),
58     path('zip/mobi.zip', views.download_zip, {'format': 'mobi', 'slug': None}, 'download_zip_mobi'),
59     path('zip/mp3/<slug:slug>.zip', views.download_zip, {'format': 'mp3'}, 'download_zip_mp3'),
60     path('zip/ogg/<slug:slug>.zip', views.download_zip, {'format': 'ogg'}, 'download_zip_ogg'),
61
62     # Public interface. Do not change this URLs.
63     path('lektura/<slug:slug>.html', views.book_text, name='book_text'),
64     path('lektura/<slug:slug>/audiobook/', views.player, name='book_player'),
65     path('lektura/<slug:slug>/', views.book_detail, name='book_detail'),
66     path('lektura/<slug:slug>/motyw/<slug:theme_slug>/',
67          views.book_fragments, name='book_fragments'),
68
69     path('okladka-ridero/<slug:slug>.png', views.ridero_cover),
70     path('isbn/<slug:book_format>/<slug:slug>/', views.get_isbn),
71
72     # This should be the last pattern.
73     re_path(r'^galeria/(?P<tags>[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'gallery'},
74         name='tagged_object_list_gallery'),
75     re_path(r'^audiobooki/(?P<tags>[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'audiobooks'},
76         name='tagged_object_list_audiobooks'),
77     re_path(r'^(?P<tags>[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'books'},
78         name='tagged_object_list'),
79
80 ]