Sha256: 01fcb29f5a7de6f4b961403dc569f0227d3eadcaa02604df006ca7dd84919cfb

Contents?: true

Size: 1.55 KB

Versions: 4

Compression:

Stored size: 1.55 KB

Contents

module Onebox
  module Engine
    class PubmedOnebox
      include Engine
      include LayoutSupport

      matches_regexp Regexp.new("^http(?:s)?://(?:(?:\\w)+\\.)?(www.ncbi.nlm.nih)\\.gov(?:/)?/pubmed/")

      private

      def get_xml
        doc = Nokogiri::XML(open(@url + "?report=xml&format=text"))
        pre = doc.xpath("//pre")
        Nokogiri::XML("<root>" + pre.text + "</root>")
      end

      def authors_of_xml(xml)
        initials = xml.css("Initials").map{|x| x.content}
        last_names = xml.css("LastName").map{|x| x.content}
        author_list = (initials.zip(last_names)).map{|i,l| i + " " + l}
        if author_list.length > 1 then
          author_list[-2] = author_list[-2] + " and " + author_list[-1]
          author_list.pop
        end
        author_list.join(", ")
      end

      def date_of_xml(xml)
        date_arr = (xml.css("PubDate")[0].children).map{|x| x.content}
        date_arr = date_arr.select{|s| !s.match(/^\s+$/)}
        date_arr = (date_arr.map{|s| s.split}).flatten
        date_arr.sort.reverse.join(" ") # Reverse sort so month before year.
      end

      def data
         xml = get_xml()
         {
         title: xml.css("ArticleTitle")[0].content,
         authors: authors_of_xml(xml),
         journal: xml.css("Title")[0].content,
         abstract: xml.css("AbstractText")[0].content,
         date: date_of_xml(xml),
         link: @url,
         pmid: match[:pmid]
        }
      end

      def match
        @match ||= @url.match(%r{www\.ncbi\.nlm\.nih\.gov/pubmed/(?<pmid>[0-9]+)})
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
onebox-1.4.2 lib/onebox/engine/pubmed_onebox.rb
onebox-1.4.1 lib/onebox/engine/pubmed_onebox.rb
onebox-1.4.0 lib/onebox/engine/pubmed_onebox.rb
onebox-1.3.9 lib/onebox/engine/pubmed_onebox.rb