-require './author.rb'
+require 'nokogiri'
+require 'zip'
+
+require './author'
+require './cover'
class Book
def initialize(fileName)
def inspect
data = []
if nil != @author
- data.push('author="' + @author + '"')
+ data.push('author="' + @author.to_s + '"')
end
if nil != @series
data.push('series="' + @series + '"')
if nil != @title
data.push('title="' + @title + '"')
end
+ if nil != @cover
+ data.push(@cover.inspect())
+ end
if nil != @path
data.push('path="' + @path + '"')
end
if parts.length > 1
@author = massageAuthor(parts[-2])
end
+
+ if fileName.downcase.end_with?(".epub")
+ scanEpub!(fileName)
+ end
+ end
+
+ protected
+ def scanEpub!(fileName)
+ 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']
+
+ scanOpf!(zipfile, opfPath)
+ end
+ end
+
+ protected
+ def scanOpf!(zipfile, opfPath)
+ coverId = nil
+
+ opfXml = zipfile.read(opfPath)
+ opfDoc = Nokogiri::XML(opfXml)
+
+ #-------
+ # Author
+
+ creator = opfDoc.css('dc|creator', 'dc' => 'http://purl.org/dc/elements/1.1/')
+ if nil != creator
+ roleNode = creator.attr('role')
+ if nil != roleNode
+ role = roleNode.value
+ if 'aut' == role
+ name = creator.children[0].content
+ parts = name.split(' ')
+ if parts.length > 1
+ surname = parts[-1]
+ givenNames = parts[0..-2].join(' ')
+ @author = Author.new(surname, givenNames)
+ else
+ @author = Author.new(name, '')
+ end
+ end
+ end
+ end
+
+ #---------------------------------------
+ # Other metadata: series, volume, cover
+
+ metas = opfDoc.css('package metadata meta')
+ for m in metas
+ name = m['name']
+ content = m['content']
+
+ if 'calibre:series' == name
+ @series = content
+ elsif 'calibre:series-index' == name
+ @volume = content
+ elsif 'cover' == name
+ coverId = content
+ end
+ end
+
+ #---------------
+ # Load the cover
+
+ 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)
+ entry.get_input_stream() do |is|
+ @cover = Cover.new(is, href, mimeType)
+ end
+ end
+ end
+ end
end
end
+