X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=m_librarian%2Fweb%2Fapp.py;h=686dafedaed5a11eae2a8a158dd07c7735aba73d;hb=340957e73caf64e0835d6dfd1b003ed61df28004;hp=01b15dd70f106fd3ec0d0cc856b582bcdec551a0;hpb=2d76928b93c208d27f942b9a9eb649df1d5b2192;p=m_librarian.git diff --git a/m_librarian/web/app.py b/m_librarian/web/app.py index 01b15dd..686dafe 100644 --- a/m_librarian/web/app.py +++ b/m_librarian/web/app.py @@ -1,6 +1,83 @@ -from bottle import route +import os + +from sqlobject.sqlbuilder import CONCAT +from bottle import cheetah_view, redirect, request, route, static_file + +from m_librarian.db import Author, Book +from m_librarian.search import search_authors @route('/') -def hello(): - return "Hello World!" +@cheetah_view('index.tmpl') +def index(): + return {} + + +@route('/search_authors', method='GET') +def _search_authors(): + return redirect('/search_authors/') + + +@route('/search_authors/', method='GET') +@cheetah_view('search_authors.tmpl') +def search_authors_get(): + return {} + + +def decode(value): + if isinstance(value, bytes): + return value.decode('utf-8') + return value + + +def _guess_case_sensitivity(value): + return not value.islower() + + +@route('/search_authors/', method='POST') +@cheetah_view('list_authors.tmpl') +def search_authors_post(): + value = request.forms.get('search_authors') + if not value: + return redirect('/search_authors/') + 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) + expressions = [( + CONCAT(Author.q.surname, ' ', Author.q.name, ' ', Author.q.misc_name), + decode(value) + )] + authors = search_authors(search_type, case_sensitive, {}, expressions, + orderBy=('surname', 'name', 'misc_name')) + return { + 'authors': list(authors), + 'search_authors': value, + 'search_type': search_type, + 'case_sensitive': case_sensitive, + } + + +@route('/books-by-author//', method='GET') +@cheetah_view('books_by_author.tmpl') +def books_by_author(id): + return { + 'author': Author.get(id), + 'books': Book.select( + Book.j.authors & (Author.q.id == id), + orderBy=['series', 'ser_no', 'title'], + ) + } + + +@route('/static/') +def send_static(filename): + return static_file( + filename, root=os.path.join( + os.path.dirname(__file__), + 'static' + ) + )