X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=m_librarian%2Fweb%2Fapp.py;h=3ca8d4fd54b51e5cbddeecbf23e97f2c80e78c7c;hb=10f50ecc606a84ead65526f78a9544996f8e6ccd;hp=7032825e8224d3f4c0cf94e04228eeddd46d21f7;hpb=b446a389796d3e6922ce93f089e25324765a8c62;p=m_librarian.git diff --git a/m_librarian/web/app.py b/m_librarian/web/app.py index 7032825..3ca8d4f 100644 --- a/m_librarian/web/app.py +++ b/m_librarian/web/app.py @@ -8,7 +8,7 @@ from bottle import cheetah_view, redirect, request, route, static_file from m_librarian.config import get_config from m_librarian.db import Author, Book from m_librarian.download import download -from m_librarian.search import search_authors +from m_librarian.search import search_authors, search_books @route('/') @@ -87,11 +87,61 @@ def send_static(filename): ) -@route('/download//', method='GET') +@route('/download/', method='POST') @cheetah_view('download.tmpl') -def download_book(id): - book = Book.get(id) - download(book, get_config().get('download', 'path')) +def download_books(): + books_ids = request.forms.getall('books') + download_path = get_config().get('download', 'path') + if books_ids: + for id in books_ids: + book = Book.get(int(id)) + download(book, download_path) + return { + 'message': u'Книги сохранены.', + } + else: + return { + 'message': u'Не выбрано книг для сохранения.', + } + + +@route('/search_books', method='GET') +def _search_books(): + return redirect('/search_books/') + + +@route('/search_books/', method='GET') +@cheetah_view('search_books.tmpl') +def search_books_get(): + return {} + + +@route('/search_books/', method='POST') +@cheetah_view('list_books.tmpl') +def search_books_post(): + value = request.forms.get('search_books') + if not value: + return redirect('/search_books/') + value = decode(value) + search_type = request.forms.get('search_type') + if not search_type: + search_type = 'start' + case_sensitive = request.forms.get('case_sensitive') + if case_sensitive is None: + case_sensitive = _guess_case_sensitivity(value) + books = search_books(search_type, case_sensitive, {'title': value}, None, + orderBy=('title',)) + books_by_authors = {} + for book in books: + author = book.authors[0].fullname + if author in books_by_authors: + books_by_author = books_by_authors[author] + else: + books_by_author = books_by_authors[author] = [] + books_by_author.append(book) return { - 'message': u'Книга сохранена', + 'books_by_author': books_by_authors, + 'search_books': value, + 'search_type': search_type, + 'case_sensitive': case_sensitive, }