1 from datetime import date
4 from ebooklib import epub
7 from librarian import functions, OutputFile, get_resource, XHTMLNS
8 from librarian.cover import make_cover
9 from librarian.embeds.mathml import MathML
11 from librarian.fonts import strip_font
18 self.element = etree.XML('''<html xmlns="http://www.w3.org/1999/xhtml"><head><link rel="stylesheet" href="style.css" type="text/css"/><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>WolneLektury.pl</title></head><body/></html>''')
22 return self.element.find('.//' + XHTMLNS('title'))
26 return self.element.find('.//' + XHTMLNS('body'))
32 def __init__(self, base_url=None, fundraising=None, cover=None):
33 self._base_url = base_url or 'file:///home/rczajka/for/fnp/librarian/temp~/maly/img/'
34 self.fundraising = fundraising
35 self.footnotes = etree.Element('div', id='footnotes')
36 self.make_cover = cover or make_cover
40 # 'header': self.header,
41 'footnotes': self.footnotes,
43 self.current_cursors = []
49 return self.current_cursors[-1]
51 def enter_fragment(self, fragment):
52 self.current_cursors.append(self.cursors[fragment])
54 def exit_fragment(self):
55 self.current_cursors.pop()
57 def create_fragment(self, name, element):
58 assert name not in self.cursors
59 self.cursors[name] = element
61 def forget_fragment(self, name):
62 del self.cursors[name]
68 if self._base_url is not None:
71 return 'https://wolnelektury.pl/media/book/pictures/{}/'.format(self.document.meta.url.slug)
74 # Base URL should be on Document level, not builder.
75 def build(self, document, **kwargs):
76 """Should return an OutputFile with the output."""
77 raise NotImplementedError()
80 class EpubBuilder(Builder):
81 file_extension = 'epub'
82 isbn_field = 'isbn_epub'
84 def __init__(self, *args, **kwargs):
87 super().__init__(*args, **kwargs)
89 def build(self, document, **kwargs):
90 # replace_characters -- nie, robimy to na poziomie elementów
92 # hyphenator (\00ad w odp. miejscach) -- jeśli już, to też powinno to się dziać na poziomie elementów
93 # spójniki (\u00a0 po)-- jeśli już, to na poziomie elementów
94 # trick na dywizy: ­⁠-
97 # początek z KAŻDEGO PLIKU xml
99 # zliczamy zbiór użytych znaków
102 # mieliśmy taką flagę less-advertising, używaną tylko dla Prestigio; już nie używamy.
104 # @editors = document.editors() (jako str)
105 # @funders = join(meta.funders)
106 # @thanks = meta.thanks
109 self.output = output = epub.EpubBook()
110 self.document = document
116 self.add_title_page()
125 'Początek utworu', # i18n
128 self.output.guide.append({
131 "href": "part1.xhtml"
135 self.build_document(self.document)
140 self.add_annotations()
141 self.add_support_page()
145 e = len(self.output.spine) - 3 - 3
146 nfunds = len(self.fundraising)
150 # COUNTING CHARACTERS?
151 for f in range(nfunds):
152 spine_index = int(4 + (f / nfunds * e) + f)
156 etree.XML('<div id="book-text"><div class="fundraising">' + self.fundraising[f % len(self.fundraising)] + '</div></div>')
158 self.add_html(h.element, file_name='fund%d.xhtml' % f, spine=spine_index)
162 output_file = tempfile.NamedTemporaryFile(
163 prefix='librarian', suffix='.epub',
166 epub.write_epub(output_file.name, output, {'epub3_landmark': False})
167 return OutputFile.from_filename(output_file.name)
169 def build_document(self, document):
170 self.toc_precedences = []
175 document.tree.getroot().epub_build(self)
176 if document.meta.parts:
179 self.start_element('div', {'class': 'title-page'})
180 self.start_element('h1', {'class': 'title'})
181 self.push_text(document.meta.title)
195 for child in document.children:
197 self.add_toc_entry(None, child.meta.title, 0)
198 self.build_document(child)
200 self.shift_toc_base()
203 def add_title_page(self):
205 html.title.text = "Strona tytułowa"
206 bt = etree.SubElement(html.body, 'div', **{'id': 'book-text'})
207 tp = etree.SubElement(bt, 'div', **{'class': 'title-page'})
209 # Tak jak jest teraz – czy może być jednocześnie
211 # i „dzieło nadrzędne”
212 # wcześniej mogło być dzieło nadrzędne,
214 e = self.document.tree.find('//autor_utworu')
216 etree.SubElement(tp, 'h2', **{'class': 'author'}).text = e.raw_printable_text(self)
217 e = self.document.tree.find('//nazwa_utworu')
219 etree.SubElement(tp, 'h1', **{'class': 'title'}).text = e.raw_printable_text(self)
222 for author in self.document.meta.authors:
223 etree.SubElement(tp, 'h2', **{'class': 'author'}).text = author.readable()
224 etree.SubElement(tp, 'h1', **{'class': 'title'}).text = self.document.meta.title
226 # <xsl:apply-templates select="//nazwa_utworu | //podtytul | //dzielo_nadrzedne" mode="poczatek"/>
228 # <xsl:apply-templates select="//dc:creator" mode="poczatek"/>
229 # <xsl:apply-templates select="//dc:title | //podtytul | //dzielo_nadrzedne" mode="poczatek"/>
231 etree.SubElement(tp, 'p', **{"class": "info"}).text = '\u00a0'
233 if self.document.meta.translators:
234 p = etree.SubElement(tp, 'p', **{'class': 'info'})
235 p.text = 'tłum. ' + ', '.join(t.readable() for t in self.document.meta.translators)
237 #<p class="info">[Kopia robocza]</p>
239 p = etree.XML("""<p class="info">
240 <a>Ta lektura</a>, podobnie jak tysiące innych, jest dostępna on-line na stronie
241 <a href="http://www.wolnelektury.pl/">wolnelektury.pl</a>.
243 p[0].attrib['href'] = str(self.document.meta.url)
246 if self.document.meta.thanks:
247 etree.SubElement(tp, 'p', **{'class': 'info'}).text = self.document.meta.thanks
249 tp.append(etree.XML("""
251 Utwór opracowany został w ramach projektu<a href="http://www.wolnelektury.pl/"> Wolne Lektury</a> przez<a href="http://www.nowoczesnapolska.org.pl/"> fundację Nowoczesna Polska</a>.
255 if getattr(self.document.meta, self.isbn_field):
256 etree.SubElement(tp, 'p', **{"class": "info"}).text = getattr(self.document.meta, self.isbn_field)
258 tp.append(etree.XML("""<p class="footer info">
259 <a href="http://www.wolnelektury.pl/"><img src="logo_wolnelektury.png" alt="WolneLektury.pl" /></a>
264 file_name='title.xhtml',
266 toc='Strona tytułowa' # TODO: i18n
270 get_resource('res/wl-logo-small.png'),
271 file_name='logo_wolnelektury.png',
272 media_type='image/png'
275 def set_metadata(self):
276 self.output.set_identifier(
277 str(self.document.meta.url))
278 self.output.set_language(
279 functions.lang_code_3to2(self.document.meta.language)
281 self.output.set_title(self.document.meta.title)
283 for i, author in enumerate(self.document.meta.authors):
284 self.output.add_author(
286 file_as=six.text_type(author),
287 uid='creator{}'.format(i)
289 for translator in self.document.meta.translators:
290 self.output.add_author(
291 translator.readable(),
292 file_as=six.text_type(translator),
294 uid='translator{}'.format(i)
296 for publisher in self.document.meta.publisher:
297 self.output.add_metadata("DC", "publisher", publisher)
299 self.output.add_metadata("DC", "date", self.document.meta.created_at)
305 item = epub.EpubNav()
306 item.add_link(href='style.css', rel='stylesheet', type='text/css')
307 self.output.add_item(item)
308 self.output.spine.append(item)
309 self.output.add_item(epub.EpubNcx())
311 self.output.toc.append(
321 def add_support_page(self):
323 get_resource('epub/support.xhtml'),
325 toc='Wesprzyj Wolne Lektury'
329 get_resource('res/jedenprocent.png'),
330 media_type='image/png'
333 get_resource('epub/style.css'),
334 media_type='text/css'
338 def add_file(self, path=None, content=None,
339 media_type='application/xhtml+xml',
340 file_name=None, uid=None,
341 spine=False, toc=None):
344 # jakieś tam ścieśnianie białych znaków?
347 with open(path, 'rb') as f:
349 if file_name is None:
350 file_name = path.rsplit('/', 1)[-1]
353 uid = file_name.split('.', 1)[0]
355 item = epub.EpubItem(
358 media_type=media_type,
362 self.output.add_item(item)
365 self.output.spine.append(item)
367 self.output.spine.insert(spine, item)
370 self.output.toc.append(
378 def add_html(self, html_tree, **kwargs):
379 html = etree.tostring(
380 html_tree, pretty_print=True, xml_declaration=True,
382 doctype='<!DOCTYPE html>'
385 html = librarian.epub.squeeze_whitespace(html)
394 for fname in ('DejaVuSerif.ttf', 'DejaVuSerif-Bold.ttf',
395 'DejaVuSerif-Italic.ttf', 'DejaVuSerif-BoldItalic.ttf'):
398 get_resource('fonts/' + fname),
402 media_type='font/ttf'
405 def start_chunk(self):
406 if getattr(self, 'current_chunk', None) is not None:
407 if not len(self.current_chunk):
410 self.current_chunk = etree.Element(
414 self.cursors[None] = self.current_chunk
415 self.current_cursors.append(self.current_chunk)
417 self.section_number = 0
420 def close_chunk(self):
421 assert self.cursor is self.current_chunk
422 ###### -- what if we're inside?
429 self.chunk_counter = chunk_no + 1
432 html.body.append(self.current_chunk)
435 ## html container from template.
438 file_name='part%d.xhtml' % chunk_no,
442 self.current_chunk = None
443 self.current_cursors.pop()
445 def start_element(self, tag, attr):
446 self.current_cursors.append(
447 etree.SubElement(self.cursor, tag, **attr)
450 def end_element(self):
451 self.current_cursors.pop()
453 def push_text(self, text):
454 self.chars.update(text)
456 self.cursor[-1].tail = (self.cursor[-1].tail or '') + text
458 self.cursor.text = (self.cursor.text or '') + text
461 def assign_image_number(self):
462 image_number = getattr(self, 'image_number', 0)
463 self.image_number = image_number + 1
466 def assign_footnote_number(self):
467 number = getattr(self, 'footnote_number', 1)
468 self.footnote_number = number + 1
471 def assign_section_number(self):
472 number = getattr(self, 'section_number', 1)
473 self.section_number = number + 1
476 def assign_mathml_number(self):
477 number = getattr(self, 'mathml_number', 0)
478 self.mathml_number = number + 1
482 def add_toc_entry(self, fragment, name, precedence):
484 while self.toc_precedences and self.toc_precedences[-1] >= precedence:
485 self.toc_precedences.pop()
487 self.toc_precedences = []
489 real_level = self.toc_base + len(self.toc_precedences)
491 self.toc_precedences.append(precedence)
495 part_number = getattr(
500 filename = 'part%d.xhtml' % part_number
501 uid = filename.split('.')[0]
503 filename += '#' + fragment
504 uid += '-' + fragment
506 toc = self.output.toc
507 for l in range(1, real_level):
508 if isinstance(toc[-1], epub.Link):
509 toc[-1] = [toc[-1], []]
520 def shift_toc_base(self):
524 def add_last_page(self):
526 m = self.document.meta
528 html.title.text = 'Strona redakcyjna'
529 d = etree.SubElement(html.body, 'div', id='book-text')
531 newp = lambda: etree.SubElement(d, 'p', {'class': 'info'})
535 "Wszystkie zasoby Wolnych Lektur możesz swobodnie wykorzystywać, "
536 "publikować i rozpowszechniać pod warunkiem zachowania warunków "
537 "licencji i zgodnie z "
539 a = etree.SubElement(p, "a", href="https://wolnelektury.pl/info/zasady-wykorzystania/")
540 a.text = "Zasadami wykorzystania Wolnych Lektur"
543 etree.SubElement(p, "br")
547 p[-1].tail = "Ten utwór jest udostępniony na licencji "
548 etree.SubElement(p, 'a', href=m.license).text = m.license_description
550 p[-1].tail = 'Ten utwór jest w domenie publicznej.'
552 etree.SubElement(p, "br")
555 "Wszystkie materiały dodatkowe (przypisy, motywy literackie) są "
558 etree.SubElement(p, 'a', href='https://artlibre.org/licence/lal/pl/').text = 'Licencji Wolnej Sztuki 1.3'
560 etree.SubElement(p, "br")
562 "Fundacja Nowoczesna Polska zastrzega sobie prawa do wydania "
563 "krytycznego zgodnie z art. Art.99(2) Ustawy o prawach autorskich "
564 "i prawach pokrewnych. Wykorzystując zasoby z Wolnych Lektur, "
565 "należy pamiętać o zapisach licencji oraz zasadach, które "
569 etree.SubElement(p, 'a', href='https://wolnelektury.pl/info/zasady-wykorzystania/').text = 'Zasadach wykorzystania Wolnych Lektur'
570 p[-1].tail = '. Zapoznaj się z nimi, zanim udostępnisz dalej nasze książki.'
573 p.text = 'E-book można pobrać ze strony: '
575 p, 'a', href=str(m.url),
577 ', '.join(p.readable() for p in m.authors),
583 newp().text = 'Tekst opracowany na podstawie: ' + m.source_name
587 """ + ", ".join(p for p in m.publisher)
590 newp().text = m.description
594 newp().text = 'Opracowanie redakcyjne i przypisy: %s.' % (
595 ', '.join(e.readable() for e in sorted(self.document.editors())))
598 etree.SubElement(d, 'p', {'class': 'minor-info'}).text = '''Publikację wsparli i wsparły:
599 %s.''' % (', '.join(m.funders))
603 p.text = 'Okładka na podstawie: '
613 if getattr(m, self.isbn_field):
614 newp().text = getattr(m, self.isbn_field)
616 newp().text = '\u00a0'
619 p.attrib['class'] = 'minor-info'
621 Plik wygenerowany dnia '''
622 span = etree.SubElement(p, 'span', id='file_date')
623 span.text = str(date.today())
629 file_name='last.xhtml',
630 toc='Strona redakcyjna',
635 def add_annotations(self):
636 if not len(self.footnotes):
640 html.title.text = 'Przypisy'
641 d = etree.SubElement(
656 d.extend(self.footnotes)
660 file_name='annotations.xhtml',
666 # TODO: allow other covers
668 cover_maker = self.make_cover
670 cover_file = six.BytesIO()
671 cover = cover_maker(self.document.meta, width=600)
672 cover.save(cover_file)
673 cover_name = 'cover.%s' % cover.ext()
675 self.output.set_cover(
676 file_name=cover_name,
677 content=cover_file.getvalue(),
680 ci = ('''<?xml version="1.0" encoding="UTF-8"?>
682 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops" lang="en" xml:lang="en">
684 <title>Okładka</title>
686 body { margin: 0em; padding: 0em; }
687 img { width: 100%%; }
691 <img src="cover.%s" alt="Okładka" />
693 </html>''' % cover.ext()).encode('utf-8')
694 self.add_file(file_name='cover.xhtml', content=ci)
696 self.output.spine.append(('cover', 'no'))
697 self.output.guide.append({
699 'href': 'cover.xhtml',
703 def mathml(self, element):
704 name = "math%d.png" % self.assign_mathml_number()
706 content=MathML(element).to_latex().to_png().data,
707 media_type='image/png',