Class: TmdbMovie

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby-tmdb/tmdb_movie.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.find(options) ⇒ Object

Raises:

  • (ArgumentError)


3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/ruby-tmdb/tmdb_movie.rb', line 3

def self.find(options)
  options = {
    :expand_results => true
  }.merge(options)
  
  raise ArgumentError, "At least one of: id, title, imdb should be supplied" if(options[:id].nil? && options[:imdb].nil? && options[:title].nil?)
  
  results = []
  unless(options[:id].nil? || options[:id].to_s.empty?)
    results << Tmdb.api_call("Movie.getInfo", options[:id])
  end
  unless(options[:imdb].nil? || options[:imdb].to_s.empty?)
    results << Tmdb.api_call("Movie.imdbLookup", options[:imdb])
    options[:expand_results] = true
  end
  unless(options[:title].nil? || options[:title].to_s.empty?)
    results << Tmdb.api_call("Movie.search", options[:title])
  end
  
  results.flatten!
  
  unless(options[:limit].nil?)
    raise ArgumentError, ":limit must be an integer greater than 0" unless(options[:limit].is_a?(Fixnum) && options[:limit] > 0)
    results = results.slice(0, options[:limit])
  end
  
  results.map!{|m| TmdbMovie.new(m, options[:expand_results]) }
  
  if(results.length == 1)
    return results[0]
  else
    return results
  end
end

.new(raw_data, expand_results = false) ⇒ Object



38
39
40
41
42
43
# File 'lib/ruby-tmdb/tmdb_movie.rb', line 38

def self.new(raw_data, expand_results = false)
  # expand the result by calling Movie.getInfo unless :expand_results is false or the data is already complete
  # (as determined by checking for the trailer property in the raw data)
  raw_data = Tmdb.api_call('Movie.getInfo', raw_data["id"]).first if(expand_results && !raw_data.has_key?("trailer"))
  return Tmdb.data_to_object(raw_data)
end

Instance Method Details

#==(other) ⇒ Object



45
46
47
48
# File 'lib/ruby-tmdb/tmdb_movie.rb', line 45

def ==(other)
  return false unless(other.is_a?(TmdbMovie))
  return @raw_data == other.raw_data
end