fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
genrowanie pdf: usnięcie bloku try..catch; xml na pewno jest poprawny, ponieważ zosta...
[wolnelektury.git]
/
apps
/
api
/
handlers.py
diff --git
a/apps/api/handlers.py
b/apps/api/handlers.py
index
32a3ce3
..
685dfaf
100644
(file)
--- a/
apps/api/handlers.py
+++ b/
apps/api/handlers.py
@@
-7,8
+7,6
@@
from datetime import datetime, timedelta
from django.conf import settings
from django.contrib.sites.models import Site
from django.core.urlresolvers import reverse
from django.conf import settings
from django.contrib.sites.models import Site
from django.core.urlresolvers import reverse
-from django.http import Http404
-from django.shortcuts import get_object_or_404
from piston.handler import BaseHandler
from piston.utils import rc
from piston.handler import BaseHandler
from piston.utils import rc
@@
-38,7
+36,7
@@
def read_tags(tags, allowed):
:param str tags: a path of category and slug pairs, like: authors/an-author/...
:returns: list of Tag objects
:param str tags: a path of category and slug pairs, like: authors/an-author/...
:returns: list of Tag objects
- :raises:
django.http.Http404
+ :raises:
ValueError when tags can't be found
"""
if not tags:
return []
"""
if not tags:
return []
@@
-52,16
+50,19
@@
def read_tags(tags, allowed):
try:
category = category_singular[category]
except KeyError:
try:
category = category_singular[category]
except KeyError:
- raise
Http404
+ raise
ValueError('Unknown category.')
if not category in allowed:
if not category in allowed:
- raise
Http404
+ raise
ValueError('Category not allowed.')
# !^%@#$^#!
if category == 'book':
slug = 'l-' + slug
# !^%@#$^#!
if category == 'book':
slug = 'l-' + slug
- real_tags.append(get_object_or_404(Tag, category=category, slug=slug))
+ try:
+ real_tags.append(Tag.objects.get(category=category, slug=slug))
+ except Tag.DoesNotExist:
+ raise ValueError('Tag not found')
return real_tags
return real_tags
@@
-96,7
+97,10
@@
class BookDetailHandler(BaseHandler):
def read(self, request, slug):
""" Returns details of a book, identified by a slug. """
def read(self, request, slug):
""" Returns details of a book, identified by a slug. """
- return get_object_or_404(Book, slug=slug)
+ try:
+ return Book.objects.get(slug=slug)
+ except Book.DoesNotExist:
+ return rc.NOT_FOUND
class BooksHandler(BaseHandler):
class BooksHandler(BaseHandler):
@@
-135,11
+139,23
@@
class BooksHandler(BaseHandler):
tags = read_tags(tags, allowed=self.categories)
if tags:
if top_level:
tags = read_tags(tags, allowed=self.categories)
if tags:
if top_level:
- return Book.tagged_top_level(tags)
+ books = Book.tagged_top_level(tags)
+ return books if books else rc.NOT_FOUND
else:
else:
- return Book.tagged.with_all(tags)
+ books = Book.tagged.with_all(tags)
+ else:
+ books = Book.objects.all()
+
+ if books.exists():
+ return books
else:
else:
- return Book.objects.all()
+ return rc.NOT_FOUND
+
+ @classmethod
+ def media(self, book):
+ """ Returns all media for a book. """
+
+ return book.media.all()
# add categorized tags fields for Book
# add categorized tags fields for Book
@@
-179,7
+195,10
@@
class TagDetailHandler(BaseHandler):
except KeyError, e:
return rc.NOT_FOUND
except KeyError, e:
return rc.NOT_FOUND
- return get_object_or_404(Tag, category=category_sng, slug=slug)
+ try:
+ return Tag.objects.get(category=category_sng, slug=slug)
+ except Tag.DoesNotExist:
+ return rc.NOT_FOUND
class TagsHandler(BaseHandler):
class TagsHandler(BaseHandler):
@@
-201,7
+220,13
@@
class TagsHandler(BaseHandler):
except KeyError, e:
return rc.NOT_FOUND
except KeyError, e:
return rc.NOT_FOUND
- return Tag.objects.filter(category=category_sng)
+ tags = Tag.objects.filter(category=category_sng)
+ tags = [t for t in tags if t.get_count() > 0]
+ if tags:
+ return tags
+ else:
+ return rc.NOT_FOUND
+
@classmethod
def href(cls, tag):
@classmethod
def href(cls, tag):
@@
-216,7
+241,10
@@
class FragmentDetailHandler(BaseHandler):
def read(self, request, slug, anchor):
""" Returns details of a fragment, identified by book slug and anchor. """
def read(self, request, slug, anchor):
""" Returns details of a fragment, identified by book slug and anchor. """
- return get_object_or_404(Fragment, book__slug=slug, anchor=anchor)
+ try:
+ return Fragment.objects.get(book__slug=slug, anchor=anchor)
+ except Fragment.DoesNotExist:
+ return rc.NOT_FOUND
class FragmentsHandler(BaseHandler):
class FragmentsHandler(BaseHandler):
@@
-240,7
+268,11
@@
class FragmentsHandler(BaseHandler):
"""
tags = read_tags(tags, allowed=self.categories)
"""
tags = read_tags(tags, allowed=self.categories)
- return Fragment.tagged.with_all(tags).select_related('book')
+ fragments = Fragment.tagged.with_all(tags).select_related('book')
+ if fragments.exists():
+ return fragments
+ else:
+ return rc.NOT_FOUND
@classmethod
def href(cls, fragment):
@classmethod
def href(cls, fragment):