return false
end
+ #puts "Filename: " + fileName.to_s
lowerName = fileName.downcase()
if lowerName.end_with?(".epub")
return '(Book:' + data.join(',') + ')'
end
+ def path
+ @path
+ end
+
def to_s
return inspect()
end
protected
def scanEpub!(fileName)
- puts 'Scanning "' + fileName.to_s + '"...'
- Zip::File.open(fileName) do |zipfile|
- contXml = zipfile.read('META-INF/container.xml')
- contDoc = Nokogiri::XML(contXml)
- opfPath = contDoc.css("container rootfiles rootfile")[0]['full-path']
+ #puts 'Scanning "' + fileName.to_s + '"...'
+ begin
+ Zip::File.open(fileName) do |zipfile|
+ entry = zipfile.find_entry('META-INF/container.xml')
+ if nil == entry
+ return
+ end
+ contXml = zipfile.read('META-INF/container.xml')
+ contDoc = Nokogiri::XML(contXml)
+ opfPath = contDoc.css("container rootfiles rootfile")[0]['full-path']
- scanOpf!(zipfile, opfPath)
+ scanOpf!(zipfile, opfPath)
+ end
+ rescue Zip::Error => exc
+ puts 'ERROR processing file "' + fileName + '":'
+ puts exc.message
+ puts exc.backtrace
end
end
# Author
creator = opfDoc.css('dc|creator', 'dc' => 'http://purl.org/dc/elements/1.1/')
- if nil != creator
+ if (nil != creator) and (creator.length > 0)
roleNode = creator.attr('role')
if nil != roleNode
role = roleNode.value
- if 'aut' == role
+ if ('aut' == role) and (creator.children.length > 0) and (nil != creator.children[0])
name = creator.children[0].content
parts = name.split(' ')
if parts.length > 1
#---------------
# Load the cover
+ @cover = loadCover(zipfile, opfPath, opfDoc, coverId)
+ end
+
+ protected
+ def loadCover(zipfile, opfPath, opfDoc, coverId)
coverFile = nil
- if nil != coverId
- items = opfDoc.css('package manifest item')
- for i in items
- href = i['href']
- id = i['id']
- mimeType = i['media-type']
-
- if coverId == id
- entry = zipfile.find_entry(href)
+ if nil == coverId
+ coverId = "cover-image"
+ end
+
+ items = opfDoc.css('package manifest item')
+ for i in items
+ href = i['href']
+ id = i['id']
+ mimeType = i['media-type']
+
+ if coverId == id
+ entry = zipfile.find_entry(href)
+
+ if nil == entry
+ # Although the epub standard requires the path to be relative
+ # to the base of the epub (zip), some books encountered in the
+ # wild have been found to use a bath relative to the location
+ # of the opf file.
+ parts = opfPath.split('/')
+ opfBasePath = opfPath.split('/')[0..-2].join('/')
+ coverPath = opfBasePath + '/' + href
+ entry = zipfile.find_entry(coverPath)
+ end
+
+ if nil == entry
+ puts 'WARNING! Cover image "' + href + '" not found in file "' + @path + '".'
+ return nil
+ else
entry.get_input_stream() do |is|
- @cover = Cover.new(is, href, mimeType)
+ return Cover.new(is, href, mimeType)
end
end
end
end
+ return nil
end
end
end
open(outputDir + '/index.html', 'w') do |fd|
- fd.puts "<html>"
- fd.puts " <head><title>Books</title></head>"
- fd.puts " <body>"
- fd.puts " <table>"
+ fd.puts '<html>'
+ fd.puts ' <head>'
+ fd.puts ' <meta charset="utf-8"/>'
+ fd.puts ' <title>Books</title>'
+ fd.puts ' <style>'
+ fd.puts 'div { '
+ fd.puts ' display: inline-block;'
+ fd.puts ' width: 400px;'
+ fd.puts ' margin: 10px;'
+ fd.puts ' border 3px solid #73ad21;'
+ fd.puts '}'
+ fd.puts ' </style>'
+ fd.puts ' </head>'
+ fd.puts ' <body>'
for book in books
image = nil
if nil != book.cover
imageCount += 1
(path, mimeType) = book.cover.writeImage(outputDir, 'image' + imageCount.to_s)
- image = '<img src="' + path + '"/>'
+ image = '<img height="200px" src="' + path + '"/>'
else
image = '(No cover image)'
end
- fd.puts " <tr><td>" + image + "</td><td>" + book.describe() + "</td></tr>"
+ fd.puts ' <div><table>'
+ fd.puts ' <tr><td><a href="' + book.path + '">' + image + '</a></td><td>' + book.describe() + '</td></tr>'
+ fd.puts ' </table></div>'
end
fd.puts " </table>"