Class: Onebox::Engine::YoukuOnebox

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

Constant Summary

Constants included from Onebox::Engine

DEFAULT

Instance Attribute Summary

Attributes included from Onebox::Engine

#errors, #timeout, #url

Instance Method Summary collapse

Methods included from Onebox::Engine

all_iframe_origins, engines, included, #initialize, #options, #options=, origins_to_regexes, #placeholder_html

Instance Method Details

#to_htmlObject



22
23
24
25
26
27
28
29
30
31
# File 'lib/onebox/engine/youku_onebox.rb', line 22

def to_html
  <<~HTML
    <iframe src="https://player.youku.com/embed/#{video_id}"
            width="640"
            height="430"
            frameborder='0'
            allowfullscreen>
    </iframe>
  HTML
end

#video_idObject



15
16
17
18
19
20
# File 'lib/onebox/engine/youku_onebox.rb', line 15

def video_id
  match = uri.path.match(/\/v_show\/id_([a-zA-Z0-9_=\-]+)(\.html)?.*/)
  match && match[1]
rescue
  nil
end