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

#cache, #timeout, #url

Instance Method Summary collapse

Methods included from Onebox::Engine

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

Instance Method Details

#placeholder_htmlObject



24
25
26
# File 'lib/onebox/engine/youku_onebox.rb', line 24

def placeholder_html
  to_html
end

#to_htmlObject



20
21
22
# File 'lib/onebox/engine/youku_onebox.rb', line 20

def to_html
  "<iframe width='480' height='270' src='http://player.youku.com/embed/#{video_id}' frameborder='0' allowfullscreen></iframe>"
end

#video_idObject

Try to get the video ID. Works for URLs of the form:



11
12
13
14
15
16
17
18
# File 'lib/onebox/engine/youku_onebox.rb', line 11

def video_id
  match = uri.path.match(/\/v_show\/id_([a-zA-Z0-9]*)(\.html)*/)
  return match[1] if match && match[1]

  nil
rescue
  return nil
end