bookwyrm/bookwyrm/views/isbn.py

36 lines
1.1 KiB
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 import book_search
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"""
book_results = book_search.isbn_search(isbn)
2021-03-01 20:09:21 +00:00
if is_api_request(request):
2021-09-16 19:52:10 +00:00
return JsonResponse(
2022-08-05 18:43:11 +00:00
[book_search.format_search_result(r) for r in book_results[:10]],
safe=False,
2021-09-16 19:52:10 +00:00
)
2021-03-01 20:09:21 +00:00
2022-08-05 18:43:11 +00:00
paginated = Paginator(book_results, PAGE_LENGTH)
page = paginated.get_page(request.GET.get("page"))
2021-03-01 20:09:21 +00:00
data = {
2022-08-05 18:43:11 +00:00
"results": page,
"page_range": paginated.get_elided_page_range(
page.number, on_each_side=2, on_ends=1
),
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)