moviewyrm/bookwyrm/views/isbn.py

31 lines
960 B
Python
Raw Normal View History

2021-03-08 16:49:10 +00:00
""" isbn search view """
from django.core.paginator import Paginator
2021-03-01 20:09:21 +00:00
from django.http import JsonResponse
from django.template.response import TemplateResponse
from django.views import View
from bookwyrm.connectors import connector_manager
from bookwyrm.settings import PAGE_LENGTH
2021-03-01 20:09:21 +00:00
from .helpers import is_api_request
# pylint: disable= no-self-use
class Isbn(View):
2021-04-26 16:15:42 +00:00
"""search a book by isbn"""
2021-03-08 16:49:10 +00:00
2021-03-01 20:09:21 +00:00
def get(self, request, isbn):
2021-04-26 16:15:42 +00:00
"""info about a book"""
2021-03-01 20:09:21 +00:00
book_results = connector_manager.isbn_local_search(isbn)
if is_api_request(request):
return JsonResponse([r.json() for r in book_results], safe=False)
paginated = Paginator(book_results, PAGE_LENGTH).get_page(
request.GET.get("page")
)
2021-03-01 20:09:21 +00:00
data = {
"results": [{"results": paginated}],
2021-03-08 16:49:10 +00:00
"query": isbn,
"type": "book",
2021-03-01 20:09:21 +00:00
}
return TemplateResponse(request, "search/book.html", data)