Sha256: c33f32727236f4a9a52d96ac8d3f8d9b01d8d8d4dbb16692a0d84bfb0eac6010

Contents?: true

Size: 1.62 KB

Versions: 4

Compression:

Stored size: 1.62 KB

Contents

module OoxmlParser
  class Parser
    # Base method to yield parse document of any type
    # @param path_to_file [String] file
    # @return [CommonDocumentStructure] structure of doc
    def self.parse_format(path_to_file)
      return nil if OOXMLDocumentObject.encrypted_file?(path_to_file)
      path_to_zip_file = OOXMLDocumentObject.copy_file_and_rename_to_zip(path_to_file)
      OOXMLDocumentObject.path_to_folder = path_to_zip_file.sub(File.basename(path_to_zip_file), '')
      OOXMLDocumentObject.unzip_file(path_to_zip_file, OOXMLDocumentObject.path_to_folder)
      model = yield
      model.file_path = path_to_file if model
      FileUtils.rm_rf(OOXMLDocumentObject.path_to_folder)
      model
    end

    # Base method to parse document of any type
    # @param path_to_file [String] file
    # @return [CommonDocumentStructure] structure of doc
    def self.parse(path_to_file)
      Parser.parse_format(path_to_file) do
        format = Parser.recognize_folder_format
        case format
        when :docx
          DocumentStructure.parse
        when :xlsx
          XLSXWorkbook.parse
        when :pptx
          Presentation.parse
        else
          warn "#{path_to_file} is a simple zip file without OOXML content"
        end
      end
    end

    # Recognize folder format
    # @param directory [String] path to dirctory
    # @return [Symbol] type of document
    def self.recognize_folder_format(directory = OOXMLDocumentObject.path_to_folder)
      return :docx if Dir.exist?("#{directory}/word")
      return :xlsx if Dir.exist?("#{directory}/xl")
      return :pptx if Dir.exist?("#{directory}/ppt")
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ooxml_parser-0.4.1 lib/ooxml_parser/common_parser/parser.rb
ooxml_parser-0.4.0 lib/ooxml_parser/common_parser/parser.rb
ooxml_parser-0.3.0 lib/ooxml_parser/common_parser/parser.rb
ooxml_parser-0.2.0 lib/ooxml_parser/common_parser/parser.rb