Class: Onebox::Engine::AmazonOnebox

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

Constant Summary

Constants included from Onebox::Engine

DEFAULT

Instance Attribute Summary

Attributes included from Onebox::Engine

#timeout, #uri

Instance Method Summary collapse

Methods included from LayoutSupport

#layout, max_text, #to_html

Methods included from Onebox::Engine

engines, included, #initialize, #options, #options=, #placeholder_html, #to_html

Instance Method Details

#http_paramsObject



28
29
30
31
32
33
# File 'lib/onebox/engine/amazon_onebox.rb', line 28

def http_params
  {
    'User-Agent' =>
    'Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3'
  }
end

#tldObject



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

def tld
  @tld || @@matcher.match(@url)["tld"]
end

#urlObject



16
17
18
19
20
21
22
# File 'lib/onebox/engine/amazon_onebox.rb', line 16

def url
  if match && match[:id]
    return "https://www.amazon.#{tld}/gp/aw/d/#{Onebox::Helpers.uri_encode(match[:id])}"
  end

  @url
end