API_BASE = WL_BASE = MEDIA_BASE = lazy(
lambda: u'https://' + Site.objects.get_current().domain, unicode)()
-SORT_KEY_SEP = ','
+SORT_KEY_SEP = '$'
category_singular = {
'authors': 'author',
try:
author, title, book_id = after.split(SORT_KEY_SEP)
except ValueError:
- return []
+ return Book.objects.none()
return books.filter(Q(sort_key_author__gt=author)
| (Q(sort_key_author=author) & Q(sort_key__gt=title))
| (Q(sort_key_author=author) & Q(sort_key=title) & Q(id__gt=int(book_id))))
return None
def read(self, request):
+ key_sep = '$'
search_string = request.GET.get('search')
is_lektura = self.parse_bool(request.GET.get('lektura'))
is_audiobook = self.parse_bool(request.GET.get('audiobook'))
preview = self.parse_bool(request.GET.get('preview'))
new_api = request.GET.get('new_api')
- if new_api:
- key_sep = ','
- else:
- key_sep = '$'
after = request.GET.get('after')
count = int(request.GET.get('count', 50))
books = self.order_books(Book.objects.distinct(), new_api)