Class: LinkThumbnailer::Scrapers::Opengraph::Image::Base

Inherits:
Base
  • Object
show all
Defined in:
lib/link_thumbnailer/scrapers/opengraph/image.rb

Overview

Handles ‘og:image` attributes.

Direct Known Subclasses

Url

Instance Attribute Summary

Attributes inherited from Base

#attribute_name, #config, #document, #website

Instance Method Summary collapse

Methods inherited from Base

#applicable?

Methods inherited from Base

#applicable?, #call, #initialize

Constructor Details

This class inherits a constructor from LinkThumbnailer::Scrapers::Base

Instance Method Details

#attributeObject



43
44
45
# File 'lib/link_thumbnailer/scrapers/opengraph/image.rb', line 43

def attribute
  'og:image'
end

#heightObject



55
56
57
# File 'lib/link_thumbnailer/scrapers/opengraph/image.rb', line 55

def height
  ::LinkThumbnailer::Scrapers::Opengraph::Image::Height.new(document).value
end

#modelObject



23
24
25
26
27
28
# File 'lib/link_thumbnailer/scrapers/opengraph/image.rb', line 23

def model
  nodes.map do |n|
    uri =  LinkThumbnailer::URI.new(n.attributes['content'])
    modelize(n, uri.to_s) if uri.valid?
  end.compact
end

#model_classObject



34
35
36
# File 'lib/link_thumbnailer/scrapers/opengraph/image.rb', line 34

def model_class
  ::LinkThumbnailer::Models::Image
end

#modelize(node, text = nil) ⇒ Object



30
31
32
# File 'lib/link_thumbnailer/scrapers/opengraph/image.rb', line 30

def modelize(node, text = nil)
  model_class.new(text, size)
end

#nodesObject



38
39
40
41
# File 'lib/link_thumbnailer/scrapers/opengraph/image.rb', line 38

def nodes
  nodes = meta_xpaths(attribute: attribute)
  nodes.empty? ? meta_xpaths(attribute: attribute, key: :name) : nodes
end

#sizeObject



47
48
49
# File 'lib/link_thumbnailer/scrapers/opengraph/image.rb', line 47

def size
  [width.to_i, height.to_i] if width && height
end

#valueObject



19
20
21
# File 'lib/link_thumbnailer/scrapers/opengraph/image.rb', line 19

def value
  model
end

#widthObject



51
52
53
# File 'lib/link_thumbnailer/scrapers/opengraph/image.rb', line 51

def width
  ::LinkThumbnailer::Scrapers::Opengraph::Image::Width.new(document).value
end