Sha256: 9fef65394f31acad7f22512336c4ff7a5f8cf257bf8ea26093299684a0541d34

Contents?: true

Size: 1.85 KB

Versions: 1

Compression:

Stored size: 1.85 KB

Contents

require 'epub/constants'
require 'epub/ocf'
require 'zipruby'
require 'nokogiri'

module EPUB
  class Parser
    class OCF
      include Utils

      DIRECTORY = 'META-INF'
      EPUB::OCF::MODULES.each {|m| self.const_set "#{m.upcase}_FILE", "#{m}.xml"}

      class << self
        def parse(zip_archive)
          new(zip_archive).parse
        end
      end

      def initialize(zip_archive)
        @zip = zip_archive
        @ocf = EPUB::OCF.new
      end

      def parse
        EPUB::OCF::MODULES.each do |m|
          begin
            file = @zip.fopen(File.join(DIRECTORY, self.class.const_get("#{m.upcase}_FILE")))
            @ocf.__send__ "#{m}=", __send__("parse_#{m}", file.read)
          rescue Zip::Error
          end
        end

        @ocf
      end

      def parse_container(xml)
        container = EPUB::OCF::Container.new
        doc = Nokogiri.XML(xml)
        doc.xpath('/ocf:container/ocf:rootfiles/ocf:rootfile', EPUB::NAMESPACES).each do |elem|
          rootfile = EPUB::OCF::Container::Rootfile.new
          %w[full-path media-type].each do |attr|
            value = extract_attribute(elem, attr)
            rootfile.__send__(attr.gsub(/-/, '_') + '=', value)
          end
          container.rootfiles << rootfile
        end

        container
      end

      def parse_encryption(content)
        encryption = EPUB::OCF::Encryption.new
        encryption.content = content
        encryption
      end

      def parse_manifest
        warn "Not implemented: #{self.class}##{__method__}" if $VERBOSE
      end

      def parse_metadata
        warn "Not implemented: #{self.class}##{__method__}" if $VERBOSE
      end

      def parse_rights
        warn "Not implemented: #{self.class}##{__method__}" if $VERBOSE
      end

      def parse_signatures
        warn "Not implemented: #{self.class}##{__method__}" if $VERBOSE
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
epub-parser-0.1.3 lib/epub/parser/ocf.rb