1 # -*- coding: utf-8 -*-
2 from django.conf.urls.defaults import *
3 from django.views.decorators.csrf import csrf_exempt
4 from django.views.generic import TemplateView
5 from piston.authentication import OAuthAuthentication, oauth_access_token
6 from piston.resource import Resource
8 from api import handlers
9 from api.helpers import CsrfExemptResource
11 auth = OAuthAuthentication(realm="Wolne Lektury")
13 book_changes_resource = Resource(handler=handlers.BookChangesHandler)
14 tag_changes_resource = Resource(handler=handlers.TagChangesHandler)
15 changes_resource = Resource(handler=handlers.ChangesHandler)
17 book_list_resource = CsrfExemptResource(handler=handlers.BooksHandler, authentication=auth)
18 ebook_list_resource = Resource(handler=handlers.EBooksHandler)
19 #book_list_resource = Resource(handler=handlers.BooksHandler)
20 book_resource = Resource(handler=handlers.BookDetailHandler)
22 tag_list_resource = Resource(handler=handlers.TagsHandler)
23 tag_resource = Resource(handler=handlers.TagDetailHandler)
25 fragment_resource = Resource(handler=handlers.FragmentDetailHandler)
26 fragment_list_resource = Resource(handler=handlers.FragmentsHandler)
28 picture_resource = CsrfExemptResource(handler=handlers.PictureHandler, authentication=auth)
30 urlpatterns = patterns(
31 'piston.authentication',
32 url(r'^oauth/request_token/$', 'oauth_request_token'),
33 url(r'^oauth/authorize/$', 'oauth_user_auth'),
34 url(r'^oauth/access_token/$', csrf_exempt(oauth_access_token)),
37 url(r'^$', TemplateView.as_view(template_name='api/main.html'), name='api'),
41 url(r'^book_changes/(?P<since>\d*?)\.(?P<emitter_format>xml|json|yaml)$', book_changes_resource),
42 url(r'^tag_changes/(?P<since>\d*?)\.(?P<emitter_format>xml|json|yaml)$', tag_changes_resource),
44 url(r'^changes/(?P<since>\d*?)\.(?P<emitter_format>xml|json|yaml)$', changes_resource),
46 # info boxes (used by mobile app)
47 url(r'book/(?P<id>\d*?)/info\.html$', 'catalogue.views.book_info'),
48 url(r'tag/(?P<id>\d*?)/info\.html$', 'catalogue.views.tag_info'),
52 url(r'^books/(?P<book>[a-z0-9-]+)/$', book_resource, name="api_book"),
53 url(r'^(?P<category>[a-z0-9-]+)/(?P<slug>[a-z0-9-]+)/$',
54 tag_resource, name="api_tag"),
55 url(r'^books/(?P<book>[a-z0-9-]+)/fragments/(?P<anchor>[a-z0-9-]+)/$',
56 fragment_resource, name="api_fragment"),
59 url(r'^(?P<tags>(?:(?:[a-z0-9-]+/){2}){0,6})books/$',
60 book_list_resource, name='api_book_list'),
61 url(r'^(?P<tags>(?:(?:[a-z0-9-]+/){2}){0,6})ebooks/$',
62 ebook_list_resource, name='api_ebook_list'),
63 url(r'^(?P<tags>(?:(?:[a-z0-9-]+/){2}){0,6})parent_books/$',
64 book_list_resource, {"top_level": True}, name='api_parent_book_list'),
65 url(r'^(?P<tags>(?:(?:[a-z0-9-]+/){2}){0,6})parent_ebooks/$',
66 ebook_list_resource, {"top_level": True}, name='api_parent_ebook_list'),
67 url(r'^(?P<tags>(?:(?:[a-z0-9-]+/){2}){0,6})audiobooks/$',
68 book_list_resource, {"audiobooks": True}, name='api_audiobook_list'),
69 url(r'^(?P<tags>(?:(?:[a-z0-9-]+/){2}){0,6})daisy/$',
70 book_list_resource, {"daisy": True}, name='api_daisy_list'),
72 url(r'^pictures/$', picture_resource),
74 # fragments by book, tags, themes
75 # this should be paged
76 url(r'^(?P<tags>(?:(?:[a-z0-9-]+/){2}){1,6})fragments/$', fragment_list_resource),
79 url(r'^(?P<category>[a-z0-9-]+)/$', tag_list_resource, name='api_tag_list'),