Class: YouTube::SearchResult

Inherits:
Object
  • Object
show all
Defined in:
lib/you_tube/objects/search_result.rb

Instance Method Summary collapse

Methods inherited from Object

#to_ostruct

Constructor Details

#initialize(options = {}) ⇒ SearchResult

Returns a new instance of SearchResult.



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/you_tube/objects/search_result.rb', line 4

def initialize(options = {})
  super options

  if options["id"]
    self.video_id    = options["id"]["videoId"] || nil
    self.playlist_id = options["id"]["playlistId"] || nil
  end

  if options["snippet"]
    self.title        = options["snippet"]["title"]
    self.description  = options["snippet"]["description"]
    self.published_at = options["snippet"]["publishedAt"]
    self.channel_id   = options["snippet"]["channelId"]

    if options["snippet"]["thumbnails"]
      thumb = options["snippet"]["thumbnails"]
      self.thumbnail_default  = thumb["default"]["url"]   if thumb["default"]
      self.thumbnail_medium   = thumb["medium"]["url"]    if thumb["medium"]
      self.thumbnail_high     = thumb["high"]["url"]      if thumb["high"]
      self.thumbnail_standard = thumb["standard"]["url"]  if thumb["standard"]
      self.thumbnail_maxres   = thumb["maxres"]["url"]    if thumb["maxres"]
    end
  end
end