X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/842685bc24daac46f562bdde7ce527fd5e3b1474..e4590228924bdcb69e716e4741240073e608e678:/src/depot/legimi.py diff --git a/src/depot/legimi.py b/src/depot/legimi.py index 3a6829a8..5fa040cb 100644 --- a/src/depot/legimi.py +++ b/src/depot/legimi.py @@ -6,6 +6,7 @@ from librarian.html import transform_abstrakt from librarian.builders import EpubBuilder, MobiBuilder from librarian.cover import LegimiCornerCover, LegimiCover import requests +from slugify import slugify @@ -17,6 +18,9 @@ fundraising=[ "Przekaż 1% podatku na Wolne Lektury.
\nKRS: 0000070056
\nNazwa organizacji: Fundacja Nowoczesna Polska
\nKażda wpłacona kwota zostanie przeznaczona na rozwój Wolnych Lektur." ] +description_add = '

Książkę polecają Wolne Lektury — najpopularniejsza biblioteka on-line.

' + + class Legimi: #BASE_URL = 'https://wydawca.legimi.com' BASE_URL = 'https://panel.legimi.pl' @@ -82,11 +86,11 @@ class Legimi: "Author": ", ".join(p.readable() for p in meta.authors), "Year": meta.created_at[:4], - 'GenreId': '11', # TODO + 'GenreId': str(self.get_genre(wlbook)), 'Isbn': '', 'LanguageLocale': lang_code_3to2(meta.language), - 'Description': '

—

', + 'Description': self.get_description(wlbook), } if meta.isbn_html: isbn = meta.isbn_html @@ -97,11 +101,6 @@ class Legimi: files_data = {} - abstract = wlbook.tree.find('.//abstrakt') - if abstract is not None: - book_data['Description'] = transform_abstrakt(abstract) - - cover_data = self.upload( (meta.url.slug + '.jpg', cover.get_file(), 'image/jpeg') ) @@ -142,6 +141,77 @@ class Legimi: book.legimi_id = legimi_id book.save(update_fields=['legimi_id']) + def get_description(self, wlbook): + description = '' + abstract = wlbook.tree.find('.//abstrakt') + if abstract is not None: + description = transform_abstrakt(abstract) + description += description_add + description += '

' + description += ', '.join( + '{}'.format( + slugify(p.readable()), + p.readable(), + ) + for p in wlbook.meta.authors + ) + '
' + description += '{}
'.format( + wlbook.meta.url.slug, + wlbook.meta.title + ) + if wlbook.meta.translators: + description += 'tłum. ' + ', '.join(p.readable() for p in wlbook.meta.translators) + '
' + description += 'Epoka: ' + ', '.join( + '{}'.format( + slugify(p), + p, + ) + for p in wlbook.meta.epochs + ) + ' ' + description += 'Rodzaj: ' + ', '.join( + '{}'.format( + slugify(p), + p, + ) + for p in wlbook.meta.kinds + ) + ' ' + description += 'Gatunek: ' + ', '.join( + '{}'.format( + slugify(p), + p, + ) + for p in wlbook.meta.genres + ) + '

' + + if wlbook.meta.audience: + description += '

{} to lektura szkolna.'.format(wlbook.meta.title) + if wlbook.tree.find('//pe') is not None: + description += '
Ebook {title} zawiera przypisy opracowane specjalnie dla uczennic i uczniów {school}.'.format( + title=wlbook.meta.title, + school='szkoły podstawowej' if wlbook.meta.audience == 'SP' else 'liceum i technikum' + ) + description += '

' + return description + + def get_genre(self, wlbook): + epoch_map = { + 'Starożytność': 80, + 'Średniowiecze': 81, + 'Renesans': 82, + 'Barok': 83, + 'Oświecenie': 84, + 'Romantyzm': 85, + 'Pozytywizm': 86, + 'Modernizm': 87, + 'Dwudziestolecie międzywojenne': 88, + 'Współczesność': 90, + } + + for epoch in wlbook.meta.epochs: + if epoch in epoch_map: + return epoch_map[epoch] + return 11 + def create_book(self, book_data, files_data): data = { 'createValidationTrue': 'true',