Sha256: 6c13781e39c044d2823815ab4e301c38314ebdb2a23f7f61ed9237a98529050c

Contents?: true

Size: 1.15 KB

Versions: 2

Compression:

Stored size: 1.15 KB

Contents

module Microby
  class HEntry < Element

    attr_accessor :name, :categories, :author, :content, :bookmark, :published_at, :summary

    # Certainly there is a better way to do this.
    def initialize(microformat)
      @categories = {}
      super
    end

    def parse_elements(microformat)
      FormatClass.each do |letter|
        microformat.css(">*[class*=#{letter}-]").each do |attrs|
          attrs["class"].split.each do |klass|
            parse_element(attrs, klass)
          end
        end
      end
    end

    private

    def parse_element(microformat, klass)
      case klass
      when 'h-card'
        self.author = HCard.new(microformat)
      when 'p-category'
        self.categories[microformat.text.gsub('\n', " ").strip] = microformat["href"]
      when 'e-content'
        self.content = parse_content(microformat)
      when'dt-published'
        self.published_at = microformat["datetime"]
      when "u-uid"
        self.bookmark = microformat["href"]
      else
        self[symbolize_class(klass)] = microformat.text.gsub('\n', " ").strip
      end
    end

    def parse_content(microformat)
      microformat.inner_html
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
microby-0.0.3 lib/microby/h_entry.rb
microby-0.0.2 lib/microby/h_entry.rb