going production #21
[wolnelektury.git] / apps / catalogue / urls.py
1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 from django.conf.urls.defaults import *
6 from django.db.models import Max
7 from django.views.generic import ListView, RedirectView
8 from catalogue.feeds import AudiobookFeed
9 from catalogue.views import CustomPDFFormView
10 from catalogue.models import Book
11
12
13 SLUG = r'[a-z0-9-]*'
14
15 urlpatterns = patterns('picture.views',
16     # pictures - currently pictures are coupled with catalogue, hence the url is here
17     url(r'^obraz/?$', 'picture_list_thumb', name='picture_list_thumb'),
18     url(r'^obraz/(?P<slug>%s).html$' % SLUG, 'picture_viewer', name='picture_viewer'),
19     url(r'^obraz/(?P<slug>%s)/?$' % SLUG, 'picture_detail'),
20
21 )
22
23 urlpatterns += patterns('',
24     # old search page - redirected
25     url(r'^szukaj/$', RedirectView.as_view(
26             url='/szukaj/', query_string=True)),
27 )
28
29 urlpatterns += patterns('catalogue.views',
30     url(r'^$', 'catalogue', name='catalogue'),
31
32     url(r'^lektury/$', 'book_list', name='book_list'),
33     url(r'^lektury/(?P<slug>[a-zA-Z0-9-]+)/$', 'collection', name='collection'),
34     url(r'^audiobooki/$', 'audiobook_list', name='audiobook_list'),
35     url(r'^daisy/$', 'daisy_list', name='daisy_list'),
36     url(r'^tags/$', 'tags_starting_with', name='hint'),
37     url(r'^jtags/?$', 'json_tags_starting_with', name='jhint'),
38     url(r'^nowe/$', ListView.as_view(
39         queryset=Book.objects.filter(parent=None).order_by('-created_at'),
40         template_name='catalogue/recent_list.html'), name='recent_list'),
41     url(r'^nowe/audiobooki/$', ListView.as_view(
42         queryset=Book.objects.filter(media__type='ogg').annotate(m=Max('media__uploaded_at')).order_by('-m'),
43             template_name='catalogue/recent_audiobooks_list.html'), name='recent_audiobooks_list'),
44     url(r'^nowe/daisy/$', ListView.as_view(
45         queryset=Book.objects.filter(media__type='daisy').annotate(m=Max('media__uploaded_at')).order_by('-m'),
46             template_name='catalogue/recent_daisy_list.html'), name='recent_daisy_list'),
47
48     url(r'^custompdf/(?P<slug>%s)/$' % SLUG, CustomPDFFormView(), name='custom_pdf_form'),
49
50     url(r'^audiobooki/(?P<type>mp3|ogg|daisy|all).xml$', AudiobookFeed(), name='audiobook_feed'),
51
52
53     # zip
54     url(r'^zip/pdf\.zip$', 'download_zip', {'format': 'pdf', 'slug': None}, 'download_zip_pdf'),
55     url(r'^zip/epub\.zip$', 'download_zip', {'format': 'epub', 'slug': None}, 'download_zip_epub'),
56     url(r'^zip/mobi\.zip$', 'download_zip', {'format': 'mobi', 'slug': None}, 'download_zip_mobi'),
57     url(r'^zip/mp3/(?P<slug>%s)\.zip' % SLUG, 'download_zip', {'format': 'mp3'}, 'download_zip_mp3'),
58     url(r'^zip/ogg/(?P<slug>%s)\.zip' % SLUG, 'download_zip', {'format': 'ogg'}, 'download_zip_ogg'),
59
60     # Public interface. Do not change this URLs.
61     url(r'^lektura/(?P<slug>%s)\.html$' % SLUG, 'book_text', name='book_text'),
62     url(r'^lektura/(?P<slug>%s)/audiobook/$' % SLUG, 'player', name='book_player'),
63     url(r'^lektura/(?P<slug>%s)/$' % SLUG, 'book_detail', name='book_detail'),
64     url(r'^lektura/(?P<slug>%s)/motyw/(?P<theme_slug>[a-zA-Z0-9-]+)/$' % SLUG,
65         'book_fragments', name='book_fragments'),
66
67     # This should be the last pattern.
68     url(r'^(?P<tags>[a-zA-Z0-9-/]*)/$', 'tagged_object_list', name='tagged_object_list'),
69 )