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.
 
   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
 
  15     path('obraz/strona/', picture.views.picture_page, name='picture_page'),
 
  16     # pictures - currently pictures are coupled with catalogue, hence the url is here
 
  17     path('obraz/', picture.views.picture_list_thumb, name='picture_list_thumb'),
 
  18     path('obraz/<slug:slug>.html', picture.views.picture_viewer, name='picture_viewer'),
 
  19     path('obraz/<slug:slug>/', picture.views.picture_detail, name='picture_detail'),
 
  21     # old search page - redirected
 
  22     path('szukaj/', RedirectView.as_view(
 
  23         url='/szukaj/', query_string=True, permanent=True)),
 
  25     path('', views.catalogue, name='catalogue'),
 
  27     path('autor/', views.tag_catalogue, {'category': 'author'}, name='author_catalogue'),
 
  28     path('epoka/', views.tag_catalogue, {'category': 'epoch'}, name='epoch_catalogue'),
 
  29     path('gatunek/', views.tag_catalogue, {'category': 'genre'}, name='genre_catalogue'),
 
  30     path('rodzaj/', views.tag_catalogue, {'category': 'kind'}, name='kind_catalogue'),
 
  31     path('motyw/', views.tag_catalogue, {'category': 'theme'}, name='theme_catalogue'),
 
  33     path('galeria/', views.GalleryView.as_view(), name='gallery'),
 
  34     path('kolekcje/', views.collections, name='catalogue_collections'),
 
  36     path('lektury/', views.LiteratureView.as_view(), name='book_list'),
 
  37     path('lektury/<slug:slug>/', views.collection, name='collection'),
 
  38     path('audiobooki/', views.AudiobooksView.as_view(), name='audiobook_list'),
 
  39     path('daisy/', views.daisy_list, name='daisy_list'),
 
  40     path('jtags/', search.views.hint, {'param': 'q', 'mozhint': True}, name='jhint'),
 
  41     path('nowe/', ListView.as_view(
 
  42         queryset=Book.objects.filter(parent=None, findable=True).order_by('-created_at')[:100],
 
  43         template_name='catalogue/recent_list.html'), name='recent_list'),
 
  44     path('nowe/audiobooki/', ListView.as_view(
 
  45         queryset=Book.objects.filter(media__type='ogg').annotate(m=Max('media__uploaded_at')).order_by('-m')[:100],
 
  46         template_name='catalogue/recent_audiobooks_list.html'), name='recent_audiobooks_list'),
 
  47     path('nowe/daisy/', ListView.as_view(
 
  48         queryset=Book.objects.filter(media__type='daisy').annotate(m=Max('media__uploaded_at')).order_by('-m')[:100],
 
  49         template_name='catalogue/recent_daisy_list.html'), name='recent_daisy_list'),
 
  51     path('custompdf/<slug:slug>/', views.CustomPDFFormView(), name='custom_pdf_form'),
 
  53     re_path(r'^audiobooki/(?P<type>mp3|ogg|daisy|all).xml$', AudiobookFeed(), name='audiobook_feed'),
 
  55     path('pobierz/<key>/<slug:slug>.<slug:format_>', views.embargo_link, name='embargo_link'),
 
  58     path('zip/pdf.zip', views.download_zip, {'file_format': 'pdf', 'slug': None}, 'download_zip_pdf'),
 
  59     path('zip/epub.zip', views.download_zip, {'file_format': 'epub', 'slug': None}, 'download_zip_epub'),
 
  60     path('zip/mobi.zip', views.download_zip, {'file_format': 'mobi', 'slug': None}, 'download_zip_mobi'),
 
  61     path('zip/mp3/<slug:slug>.zip', views.download_zip, {'media_format': 'mp3'}, 'download_zip_mp3'),
 
  62     path('zip/ogg/<slug:slug>.zip', views.download_zip, {'media_format': 'ogg'}, 'download_zip_ogg'),
 
  64     # Public interface. Do not change this URLs.
 
  65     path('lektura/<slug:slug>.html', views.book_text, name='book_text'),
 
  66     path('lektura/<slug:slug>/', views.book_detail, name='book_detail'),
 
  67     path('lektura/<slug:slug>/motyw/<slug:theme_slug>/',
 
  68          views.book_fragments, name='book_fragments'),
 
  70     path('okladka-ridero/<slug:slug>.png', views.ridero_cover),
 
  71     path('isbn/<slug:book_format>/<slug:slug>/', views.get_isbn),
 
  73     # This should be the last pattern.
 
  74     re_path(r'^galeria/(?P<tags>[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'gallery'},
 
  75         name='tagged_object_list_gallery'),
 
  76     re_path(r'^audiobooki/(?P<tags>[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'audiobooks'},
 
  77         name='tagged_object_list_audiobooks'),
 
  78     re_path(r'^(?P<tags>[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'books'},
 
  79         name='tagged_object_list'),