Class: MetaInspector::Parsers::ImagesParser

Inherits:
Base
  • Object
show all
Includes:
Enumerable
Defined in:
lib/meta_inspector/parsers/images.rb

Instance Method Summary collapse

Constructor Details

#initialize(main_parser, options = {}) ⇒ ImagesParser

Returns a new instance of ImagesParser.



11
12
13
14
# File 'lib/meta_inspector/parsers/images.rb', line 11

def initialize(main_parser, options = {})
  @download_images = options[:download_images]
  super(main_parser)
end

Instance Method Details

#bestObject

Returns either the Facebook Open Graph image, twitter suggested image or the largest image in the image collection



22
23
24
# File 'lib/meta_inspector/parsers/images.rb', line 22

def best
  owner_suggested || largest
end

#faviconObject

Return favicon url if exist



73
74
75
76
77
78
79
# File 'lib/meta_inspector/parsers/images.rb', line 73

def favicon
  query = '//link[@rel="icon" or contains(@rel, "shortcut")]'
  value = parsed.xpath(query)[0].attributes['href'].value
  @favicon ||= URL.absolutify(value, base_url, normalize: false)
rescue
  nil
end

#imagesObject



16
17
18
# File 'lib/meta_inspector/parsers/images.rb', line 16

def images
  self
end

#largestObject

Returns the largest image from the image collection, filtered for images that are more square than 10:1 or 1:10



60
61
62
63
64
65
66
67
68
69
70
# File 'lib/meta_inspector/parsers/images.rb', line 60

def largest
  @largest_image ||= begin
    imgs_with_size = with_size.dup
    imgs_with_size.keep_if do |url, width, height|
      ratio = width.to_f / height.to_f
      ratio > 0.1 && ratio < 10
    end
    url, width, height = imgs_with_size.first
    url
  end
end

#owner_suggestedObject

Returns the parsed image from Facebook’s open graph property tags Most major websites now define this property and is usually relevant See doc at developers.facebook.com/docs/opengraph/ If none found, tries with Twitter image



30
31
32
33
# File 'lib/meta_inspector/parsers/images.rb', line 30

def owner_suggested
  suggested_img = content_of(meta['og:image']) || content_of(meta['twitter:image'])
  URL.absolutify(suggested_img, base_url, normalize: false) if suggested_img
end

#with_sizeObject

Returns an array of [img_url, width, height] sorted by image area (width * height)



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/meta_inspector/parsers/images.rb', line 36

def with_size
  @with_size ||= begin
    img_nodes = parsed.search('//img').select{ |img_node| img_node['src'] }
    imgs_with_size = img_nodes.map do |img_node|
      [URL.absolutify(img_node['src'], base_url, normalize: false), img_node['width'], img_node['height']]
    end
    imgs_with_size.uniq! { |url, width, height| url }
    if @download_images
      imgs_with_size.map! do |url, width, height|
        width, height = FastImage.size(url) if width.nil? || height.nil?
        [url, width.to_i, height.to_i]
      end
    else
      imgs_with_size.map! do |url, width, height|
        width, height = [0, 0] if width.nil? || height.nil?
        [url, width.to_i, height.to_i]
      end
    end
    imgs_with_size.sort_by { |url, width, height| -(width.to_i * height.to_i) }
  end
end