2017-01-29 20:06:08 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-01-20 18:37:45 +00:00
|
|
|
# This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
|
|
|
|
# Copyright (C) 2018 lemmsh, Kennyl, Kyosfonica, matthazinski
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2019-07-13 18:45:48 +00:00
|
|
|
import os
|
2016-06-05 19:28:30 +00:00
|
|
|
import zipfile
|
|
|
|
from lxml import etree
|
2019-07-13 18:45:48 +00:00
|
|
|
|
2022-03-12 17:01:11 +00:00
|
|
|
from . import isoLanguages, cover
|
2023-07-29 13:32:35 +00:00
|
|
|
from . import config, logger
|
2020-08-23 07:44:42 +00:00
|
|
|
from .helper import split_authors
|
2024-01-13 09:53:46 +00:00
|
|
|
from .epub_helper import get_content_opf, default_ns
|
2019-07-13 18:45:48 +00:00
|
|
|
from .constants import BookMeta
|
2024-08-12 16:41:20 +00:00
|
|
|
from .string_helper import strip_whitespaces
|
2016-12-23 08:53:39 +00:00
|
|
|
|
2023-07-29 13:32:35 +00:00
|
|
|
log = logger.create()
|
2017-03-31 14:52:25 +00:00
|
|
|
|
2024-01-13 09:53:46 +00:00
|
|
|
|
2022-03-12 17:01:11 +00:00
|
|
|
def _extract_cover(zip_file, cover_file, cover_path, tmp_file_name):
|
2022-02-06 15:22:28 +00:00
|
|
|
if cover_file is None:
|
2016-06-05 19:28:30 +00:00
|
|
|
return None
|
2022-03-12 17:01:11 +00:00
|
|
|
|
2022-12-25 15:37:58 +00:00
|
|
|
cf = extension = None
|
|
|
|
zip_cover_path = os.path.join(cover_path, cover_file).replace('\\', '/')
|
|
|
|
|
|
|
|
prefix = os.path.splitext(tmp_file_name)[0]
|
|
|
|
tmp_cover_name = prefix + '.' + os.path.basename(zip_cover_path)
|
|
|
|
ext = os.path.splitext(tmp_cover_name)
|
|
|
|
if len(ext) > 1:
|
|
|
|
extension = ext[1].lower()
|
|
|
|
if extension in cover.COVER_EXTENSIONS:
|
|
|
|
cf = zip_file.read(zip_cover_path)
|
|
|
|
return cover.cover_processing(tmp_file_name, cf, extension)
|
2016-06-05 19:28:30 +00:00
|
|
|
|
2024-06-18 18:13:26 +00:00
|
|
|
|
2022-01-10 20:15:19 +00:00
|
|
|
def get_epub_layout(book, book_data):
|
2023-11-07 18:30:13 +00:00
|
|
|
file_path = os.path.normpath(os.path.join(config.get_book_path(),
|
|
|
|
book.path, book_data.name + "." + book_data.format.lower()))
|
2022-01-10 20:15:19 +00:00
|
|
|
|
2023-07-29 13:32:35 +00:00
|
|
|
try:
|
2024-01-13 09:53:46 +00:00
|
|
|
tree, __ = get_content_opf(file_path, default_ns)
|
|
|
|
p = tree.xpath('/pkg:package/pkg:metadata', namespaces=default_ns)[0]
|
2022-01-10 20:15:19 +00:00
|
|
|
|
2024-01-13 09:53:46 +00:00
|
|
|
layout = p.xpath('pkg:meta[@property="rendition:layout"]/text()', namespaces=default_ns)
|
2024-04-27 05:22:58 +00:00
|
|
|
except (etree.XMLSyntaxError, KeyError, IndexError, OSError) as e:
|
2023-07-29 13:32:35 +00:00
|
|
|
log.error("Could not parse epub metadata of book {} during kobo sync: {}".format(book.id, e))
|
|
|
|
layout = []
|
2022-01-10 20:15:19 +00:00
|
|
|
|
|
|
|
if len(layout) == 0:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return layout[0]
|
|
|
|
|
2016-06-05 19:28:30 +00:00
|
|
|
|
2024-08-18 08:12:04 +00:00
|
|
|
def get_epub_info(tmp_file_path, original_file_name, original_file_extension, no_cover_processing):
|
2016-06-05 19:28:30 +00:00
|
|
|
ns = {
|
2016-12-23 08:53:39 +00:00
|
|
|
'n': 'urn:oasis:names:tc:opendocument:xmlns:container',
|
|
|
|
'pkg': 'http://www.idpf.org/2007/opf',
|
|
|
|
'dc': 'http://purl.org/dc/elements/1.1/'
|
2016-06-05 19:28:30 +00:00
|
|
|
}
|
|
|
|
|
2024-01-14 13:28:08 +00:00
|
|
|
tree, cf_name = get_content_opf(tmp_file_path, ns)
|
2016-06-05 19:28:30 +00:00
|
|
|
|
2022-03-13 11:34:21 +00:00
|
|
|
cover_path = os.path.dirname(cf_name)
|
2017-02-24 19:20:41 +00:00
|
|
|
|
2016-12-23 08:53:39 +00:00
|
|
|
p = tree.xpath('/pkg:package/pkg:metadata', namespaces=ns)[0]
|
2016-06-05 19:28:30 +00:00
|
|
|
|
|
|
|
epub_metadata = {}
|
2017-03-03 04:46:19 +00:00
|
|
|
|
2022-04-05 00:26:35 +00:00
|
|
|
for s in ['title', 'description', 'creator', 'language', 'subject', 'publisher', 'date']:
|
2016-12-23 08:53:39 +00:00
|
|
|
tmp = p.xpath('dc:%s/text()' % s, namespaces=ns)
|
|
|
|
if len(tmp) > 0:
|
2019-10-19 18:04:15 +00:00
|
|
|
if s == 'creator':
|
2020-11-06 20:36:49 +00:00
|
|
|
epub_metadata[s] = ' & '.join(split_authors(tmp))
|
2019-10-19 19:49:18 +00:00
|
|
|
elif s == 'subject':
|
2020-11-06 20:36:49 +00:00
|
|
|
epub_metadata[s] = ', '.join(tmp)
|
2022-04-05 00:26:35 +00:00
|
|
|
elif s == 'date':
|
|
|
|
epub_metadata[s] = tmp[0][:10]
|
2019-10-19 18:04:15 +00:00
|
|
|
else:
|
2024-08-12 16:41:20 +00:00
|
|
|
epub_metadata[s] = strip_whitespaces(tmp[0])
|
2016-06-05 19:28:30 +00:00
|
|
|
else:
|
2022-03-12 17:01:11 +00:00
|
|
|
epub_metadata[s] = 'Unknown'
|
2017-03-04 07:37:30 +00:00
|
|
|
|
2022-03-12 17:01:11 +00:00
|
|
|
if epub_metadata['subject'] == 'Unknown':
|
2017-07-31 06:46:29 +00:00
|
|
|
epub_metadata['subject'] = ''
|
|
|
|
|
2023-01-21 14:23:18 +00:00
|
|
|
if epub_metadata['publisher'] == 'Unknown':
|
2022-04-05 00:26:35 +00:00
|
|
|
epub_metadata['publisher'] = ''
|
|
|
|
|
2023-01-21 14:23:18 +00:00
|
|
|
if epub_metadata['date'] == 'Unknown':
|
2022-04-05 00:26:35 +00:00
|
|
|
epub_metadata['date'] = ''
|
|
|
|
|
2023-01-21 14:23:18 +00:00
|
|
|
if epub_metadata['description'] == 'Unknown':
|
2017-03-04 07:37:30 +00:00
|
|
|
description = tree.xpath("//*[local-name() = 'description']/text()")
|
|
|
|
if len(description) > 0:
|
|
|
|
epub_metadata['description'] = description
|
|
|
|
else:
|
|
|
|
epub_metadata['description'] = ""
|
|
|
|
|
2020-09-20 09:41:44 +00:00
|
|
|
lang = epub_metadata['language'].split('-', 1)[0].lower()
|
|
|
|
epub_metadata['language'] = isoLanguages.get_lang3(lang)
|
2016-06-05 19:28:30 +00:00
|
|
|
|
2022-02-06 15:22:28 +00:00
|
|
|
epub_metadata = parse_epub_series(ns, tree, epub_metadata)
|
2017-07-31 07:00:09 +00:00
|
|
|
|
2024-01-14 13:28:08 +00:00
|
|
|
epub_zip = zipfile.ZipFile(tmp_file_path)
|
2024-08-18 08:12:04 +00:00
|
|
|
if not no_cover_processing:
|
|
|
|
cover_file = parse_epub_cover(ns, tree, epub_zip, cover_path, tmp_file_path)
|
|
|
|
else:
|
|
|
|
cover_file = None
|
2021-03-21 07:19:54 +00:00
|
|
|
|
2022-04-05 00:26:35 +00:00
|
|
|
identifiers = []
|
|
|
|
for node in p.xpath('dc:identifier', namespaces=ns):
|
2023-01-02 20:21:43 +00:00
|
|
|
try:
|
|
|
|
identifier_name = node.attrib.values()[-1]
|
|
|
|
except IndexError:
|
|
|
|
continue
|
2022-09-24 04:46:24 +00:00
|
|
|
identifier_value = node.text
|
|
|
|
if identifier_name in ('uuid', 'calibre') or identifier_value is None:
|
|
|
|
continue
|
|
|
|
identifiers.append([identifier_name, identifier_value])
|
2022-04-05 00:26:35 +00:00
|
|
|
|
2021-03-21 07:19:54 +00:00
|
|
|
if not epub_metadata['title']:
|
|
|
|
title = original_file_name
|
2017-07-31 07:00:09 +00:00
|
|
|
else:
|
2021-03-21 07:19:54 +00:00
|
|
|
title = epub_metadata['title']
|
|
|
|
|
|
|
|
return BookMeta(
|
|
|
|
file_path=tmp_file_path,
|
|
|
|
extension=original_file_extension,
|
|
|
|
title=title.encode('utf-8').decode('utf-8'),
|
|
|
|
author=epub_metadata['creator'].encode('utf-8').decode('utf-8'),
|
2022-02-06 15:22:28 +00:00
|
|
|
cover=cover_file,
|
2021-03-21 07:19:54 +00:00
|
|
|
description=epub_metadata['description'],
|
|
|
|
tags=epub_metadata['subject'].encode('utf-8').decode('utf-8'),
|
|
|
|
series=epub_metadata['series'].encode('utf-8').decode('utf-8'),
|
|
|
|
series_id=epub_metadata['series_id'].encode('utf-8').decode('utf-8'),
|
|
|
|
languages=epub_metadata['language'],
|
2022-04-05 00:26:35 +00:00
|
|
|
publisher=epub_metadata['publisher'].encode('utf-8').decode('utf-8'),
|
|
|
|
pubdate=epub_metadata['date'],
|
|
|
|
identifiers=identifiers)
|
2017-07-31 07:00:09 +00:00
|
|
|
|
2022-02-06 15:22:28 +00:00
|
|
|
|
|
|
|
def parse_epub_cover(ns, tree, epub_zip, cover_path, tmp_file_path):
|
|
|
|
cover_section = tree.xpath("/pkg:package/pkg:manifest/pkg:item[@id='cover-image']/@href", namespaces=ns)
|
2022-03-13 11:34:21 +00:00
|
|
|
for cs in cover_section:
|
|
|
|
cover_file = _extract_cover(epub_zip, cs, cover_path, tmp_file_path)
|
|
|
|
if cover_file:
|
2022-12-25 15:37:58 +00:00
|
|
|
return cover_file
|
|
|
|
|
|
|
|
meta_cover = tree.xpath("/pkg:package/pkg:metadata/pkg:meta[@name='cover']/@content", namespaces=ns)
|
|
|
|
if len(meta_cover) > 0:
|
|
|
|
cover_section = tree.xpath(
|
|
|
|
"/pkg:package/pkg:manifest/pkg:item[@id='"+meta_cover[0]+"']/@href", namespaces=ns)
|
|
|
|
if not cover_section:
|
2022-02-06 15:22:28 +00:00
|
|
|
cover_section = tree.xpath(
|
2022-12-25 15:37:58 +00:00
|
|
|
"/pkg:package/pkg:manifest/pkg:item[@properties='" + meta_cover[0] + "']/@href", namespaces=ns)
|
|
|
|
else:
|
|
|
|
cover_section = tree.xpath("/pkg:package/pkg:guide/pkg:reference/@href", namespaces=ns)
|
|
|
|
|
|
|
|
cover_file = None
|
|
|
|
for cs in cover_section:
|
2023-02-22 17:59:11 +00:00
|
|
|
if cs.endswith('.xhtml') or cs.endswith('.html'):
|
2022-12-25 15:37:58 +00:00
|
|
|
markup = epub_zip.read(os.path.join(cover_path, cs))
|
|
|
|
markup_tree = etree.fromstring(markup)
|
|
|
|
# no matter xhtml or html with no namespace
|
|
|
|
img_src = markup_tree.xpath("//*[local-name() = 'img']/@src")
|
|
|
|
# Alternative image source
|
|
|
|
if not len(img_src):
|
|
|
|
img_src = markup_tree.xpath("//attribute::*[contains(local-name(), 'href')]")
|
|
|
|
if len(img_src):
|
|
|
|
# img_src maybe start with "../"" so fullpath join then relpath to cwd
|
|
|
|
filename = os.path.relpath(os.path.join(os.path.dirname(os.path.join(cover_path, cover_section[0])),
|
|
|
|
img_src[0]))
|
|
|
|
cover_file = _extract_cover(epub_zip, filename, "", tmp_file_path)
|
2019-10-20 13:48:06 +00:00
|
|
|
else:
|
2022-12-25 15:37:58 +00:00
|
|
|
cover_file = _extract_cover(epub_zip, cs, cover_path, tmp_file_path)
|
|
|
|
if cover_file:
|
2023-02-21 19:47:10 +00:00
|
|
|
break
|
2022-02-06 15:22:28 +00:00
|
|
|
return cover_file
|
|
|
|
|
2017-03-30 19:17:18 +00:00
|
|
|
|
2022-02-06 15:22:28 +00:00
|
|
|
def parse_epub_series(ns, tree, epub_metadata):
|
2021-03-21 07:19:54 +00:00
|
|
|
series = tree.xpath("/pkg:package/pkg:metadata/pkg:meta[@name='calibre:series']/@content", namespaces=ns)
|
|
|
|
if len(series) > 0:
|
|
|
|
epub_metadata['series'] = series[0]
|
2016-06-05 19:28:30 +00:00
|
|
|
else:
|
2021-03-21 07:19:54 +00:00
|
|
|
epub_metadata['series'] = ''
|
2016-06-05 19:28:30 +00:00
|
|
|
|
2021-03-21 07:19:54 +00:00
|
|
|
series_id = tree.xpath("/pkg:package/pkg:metadata/pkg:meta[@name='calibre:series_index']/@content", namespaces=ns)
|
|
|
|
if len(series_id) > 0:
|
|
|
|
epub_metadata['series_id'] = series_id[0]
|
|
|
|
else:
|
|
|
|
epub_metadata['series_id'] = '1'
|
|
|
|
return epub_metadata
|