Class: Onebox::Engine::GfycatOnebox

Inherits:
Object
  • Object
show all
Includes:
Onebox::Engine, JSON
Defined in:
lib/onebox/engine/gfycat_onebox.rb

Constant Summary

Constants included from Onebox::Engine

DEFAULT

Instance Attribute Summary

Attributes included from Onebox::Engine

#cache, #timeout, #uri

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Onebox::Engine

engines, included, #initialize, #options, #options=

Class Method Details

.priorityObject



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

def self.priority
  # This engine should have priority over WhitelistedGenericOnebox.
  1
end

Instance Method Details

#placeholder_htmlObject



50
51
52
53
54
55
56
57
# File 'lib/onebox/engine/gfycat_onebox.rb', line 50

def placeholder_html
  <<-HTML
    <a href="#{data[:url]}">
      <img src="#{data[:posterUrl]}" width="#{data[:width]}" height="#{data[:height]}"><br/>
      #{data[:gfyName]}
    </a>
  HTML
end

#to_htmlObject



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/onebox/engine/gfycat_onebox.rb', line 19

def to_html
  <<-HTML
    <aside class="onebox gfycat">
      <header class="source">
        <img src="https://gfycat.com/static/favicons/favicon-96x96.png" class="site-icon" width="64" height="64">
        <a href="#{data[:url]}" target="_blank" rel="nofollow noopener">Gfycat.com</a>
      </header>
      <article class="onebox-body">
        <h4>
          #{data[:title]} by
          <a href="https://gfycat.com/@#{data[:author]}" target="_blank" rel="nofollow noopener">
            <span>#{data[:author]}</span>
          </a>
        </h4>

        <div class="video">
          <video controls loop #{data[:autoplay]} muted poster="#{data[:posterUrl]}" style="--aspect-ratio: #{data[:width]}/#{data[:height]}">
            <source id="webmSource" src="#{data[:webmUrl]}" type="video/webm">
            <source id="mp4Source" src="#{data[:mp4Url]}" type="video/mp4">
            <img title="Sorry, your browser doesn't support HTML5 video." src="#{data[:posterUrl]}">
          </video>
        </div>
        <p>
          <span class="label1">#{data[:tags]}</span>
        </p>

      </article>
    </aside>
  HTML
end

#urlObject



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

def url
  "https://gfycat.com/cajax/get/#{match[:name]}"
end