Sha256: 8b181e73d264967ae2139187bd9161c45890ffb60c29acb94241a9f41216282b
Contents?: true
Size: 1.27 KB
Versions: 4
Compression:
Stored size: 1.27 KB
Contents
# gem 'httparty' require 'httparty' require 'tmdb_party/core_extensions' require 'tmdb_party/attributes' require 'tmdb_party/video' require 'tmdb_party/category' require 'tmdb_party/person' require 'tmdb_party/image' require 'tmdb_party/movie' module TMDBParty class Base include HTTParty base_uri 'http://api.themoviedb.org/2.0' format :xml def initialize(key) self.class.default_params :api_key => key end def search(query) data = self.class.get('/Movie.search', :query=>{:title=>query}) case data['results']['moviematches']['movie'] when Array data['results']['moviematches']['movie'].collect { |movie| Movie.new(movie, self) } when Hash [Movie.new(data['results']['moviematches']['movie'], self)] else [] end end def imdb_lookup(imdb_id) data = self.class.get('/Movie.imdbLookup', :query=>{:imdb_id=>imdb_id}) case data['results']['moviematches']['movie'] when String return nil when Hash Movie.new(data['results']['moviematches']['movie'], self) end end def get_info(id) data = self.class.get('/Movie.getInfo', :query=>{:id=>id}) Movie.new(data['results']['moviematches']['movie'], self) end end end
Version data entries
4 entries across 4 versions & 3 rubygems
Version | Path |
---|---|
jduff-tmdb_party-0.2.1 | lib/tmdb_party.rb |
maddox-tmdb_party-0.2.1 | lib/tmdb_party.rb |
maddox-tmdb_party-0.3.0 | lib/tmdb_party.rb |
tmdb_party-0.3.0 | lib/tmdb_party.rb |