Sha256: 5fee0048e92c30b3a31fc3f99d164a8ec16bd72fe6341b023a0b88d0a9bdb5f9
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
class TmdbCast def self.find(options) options = { :expand_results => true }.merge(options) raise ArgumentError, "At least one of: id, name, should be supplied" if(options[:id].nil? && options[:name].nil?) results = [] unless(options[:id].nil? || options[:id].to_s.empty?) results << Tmdb.api_call('Person.getInfo', options[:id]) end unless(options[:name].nil? || options[:name].to_s.empty?) results << Tmdb.api_call('Person.search', options[:name]) 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!{|c| TmdbCast.new(c, options[:expand_results]) } if(results.length == 1) return results[0] else return results end end def self.new(raw_data, expand_results = false) # expand the result by calling Person.getInfo unless :expand_results is set to false or the data is already complete # (as determined by checking for the 'known_movies' property) raw_data = Tmdb.api_call('Person.getInfo', raw_data["id"]).first if(expand_results && !raw_data.has_key?("known_movies")) return Tmdb.data_to_object(raw_data) end def ==(other) return false unless(other.is_a?(TmdbCast)) @raw_data == other.raw_data end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-tmdb-0.1.2 | lib/ruby-tmdb/tmdb_cast.rb |