Module: Onebox::Engine::StandardEmbed

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.add_oembed_provider(regexp, endpoint) ⇒ Object



15
16
17
# File 'lib/onebox/engine/standard_embed.rb', line 15

def self.add_oembed_provider(regexp, endpoint)
  oembed_providers[regexp] = endpoint
end

.add_opengraph_provider(regexp) ⇒ Object



23
24
25
# File 'lib/onebox/engine/standard_embed.rb', line 23

def self.add_opengraph_provider(regexp)
  opengraph_providers << regexp
end

.oembed_providersObject



11
12
13
# File 'lib/onebox/engine/standard_embed.rb', line 11

def self.oembed_providers
  @@oembed_providers ||= {}
end

.opengraph_providersObject



19
20
21
# File 'lib/onebox/engine/standard_embed.rb', line 19

def self.opengraph_providers
  @@opengraph_providers ||= []
end

Instance Method Details

#always_https?Boolean

Returns:

  • (Boolean)


35
36
37
# File 'lib/onebox/engine/standard_embed.rb', line 35

def always_https?
  AllowlistedGenericOnebox.host_matches(uri, AllowlistedGenericOnebox.https_hosts) || super
end

#rawObject



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/onebox/engine/standard_embed.rb', line 39

def raw
  return @raw if @raw

  og = get_opengraph
  twitter = get_twitter
  oembed = get_oembed

  @raw = {}

  og.data.each do |k, v|
    next if k == "title_attr"
    v = og.send(k)
    @raw[k] ||= v unless v.nil?
  end

  twitter.each { |k, v| @raw[k] ||= v unless Onebox::Helpers::blank?(v) }

  oembed.data.each do |k, v|
    v = oembed.send(k)
    @raw[k] ||= v unless v.nil?
  end

  favicon = get_favicon
  @raw["favicon".to_sym] = favicon unless Onebox::Helpers::blank?(favicon)

  @raw
end