Sha256: 4a13e9b5c85c4e81c932d16814130028d78604fc5078d42e143b4283065bfb12
Contents?: true
Size: 1.1 KB
Versions: 8
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true require_relative 'comment_authors/comment_author' module OoxmlParser # Class for parsing `commentAuthors.xml` file class CommentAuthors < OOXMLDocumentObject # @return [Array<CommentAuthor>] list of comment authors attr_reader :list def initialize(parent: nil) @list = [] @parent = parent end # Parse CommentAuthors object # @param file [Nokogiri::XML:Element] node to parse # @return [CommentAuthors] result of parsing def parse(file = "#{OOXMLDocumentObject.path_to_folder}/#{OOXMLDocumentObject.root_subfolder}/commentAuthors.xml") return nil unless File.exist?(file) document = parse_xml(File.open(file)) node = document.xpath('*').first node.xpath('*').each do |node_child| case node_child.name when 'cmAuthor' @list << CommentAuthor.new(parent: self).parse(node_child) end end self end # @param id [Integer] id of author # @return [CommentAuthor] author by id def author_by_id(id) list.detect { |author| author.id == id } end end end
Version data entries
8 entries across 8 versions & 1 rubygems