Sha256: bd5e916569ae248a2df6b4629765132873811115690b1a8fd34ec633be214228

Contents?: true

Size: 1.15 KB

Versions: 7

Compression:

Stored size: 1.15 KB

Contents

require "nokogiri"

module RelatonGb
  class XMLParser < RelatonIsoBib::XMLParser
    class << self
      private

      # override RelatonBib::BibliographicItem.bib_item method
      # @param item_hash [Hash]
      # @return [RelatonGb::GbBibliographicItem]
      def bib_item(item_hash)
        GbBibliographicItem.new **item_hash
      end

      def item_data(gbitem)
        data = super
        data[:committee] = fetch_committee gbitem
        data[:gbtype] = fetch_gbtype gbitem
        data[:ccs] = fetch_ccs gbitem
        data[:plannumber] = gbitem.at("./plannumber")&.text
        data
      end

      def fetch_committee(doc)
        committee = doc.at "./ext/gbcommittee"
        return nil unless committee

        { type: committee[:type], name: committee.text }
      end

      def fetch_ccs(doc)
        doc.xpath("./ext/ccs/code").map &:text
      end

      def fetch_gbtype(doc)
        gbtype = doc.at "./ext/gbtype"
        {
          scope: gbtype&.at("gbscope")&.text,
          prefix: gbtype&.at("gbprefix")&.text,
          mandate: gbtype&.at("gbmandate")&.text,
          topic: gbtype&.at("gbtopic")&.text,
        }
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
relaton-gb-1.10.1 lib/relaton_gb/xml_parser.rb
relaton-gb-1.10.0 lib/relaton_gb/xml_parser.rb
relaton-gb-1.9.0 lib/relaton_gb/xml_parser.rb
relaton-gb-1.8.1 lib/relaton_gb/xml_parser.rb
relaton-gb-1.8.0 lib/relaton_gb/xml_parser.rb
relaton-gb-1.7.2 lib/relaton_gb/xml_parser.rb
relaton-gb-1.7.1 lib/relaton_gb/xml_parser.rb