class ThetvdbApi::Search

Private Instance Methods

get_episode_mapped_options(options) click to toggle source
# File lib/thetvdb_api/search.rb, line 267
def get_episode_mapped_options(options)
  ThetvdbApi::AttributesMapping::Search::GetEpisode.new(options).to_hash
end
get_episode_path() click to toggle source
# File lib/thetvdb_api/search.rb, line 271
def get_episode_path
  'GetEpisodeByAirDate.php'
end
get_episode_path_with_params(options) click to toggle source
# File lib/thetvdb_api/search.rb, line 263
def get_episode_path_with_params(options)
  path(get_episode_path).params(api_key_with_language_options.merge(get_episode_mapped_options(options)))
end
get_serie_by_remote_id_mapped_options(options) click to toggle source
# File lib/thetvdb_api/search.rb, line 255
def get_serie_by_remote_id_mapped_options(options)
  ThetvdbApi::AttributesMapping::Search::GetSeriesByRemoteId.new(options).to_hash
end
get_series_by_remote_id_path() click to toggle source
# File lib/thetvdb_api/search.rb, line 259
def get_series_by_remote_id_path
  'GetSeriesByRemoteID.php'
end
get_series_by_remote_id_path_with_params(options) click to toggle source
# File lib/thetvdb_api/search.rb, line 251
def get_series_by_remote_id_path_with_params(options)
  path(get_series_by_remote_id_path).params(language_options.merge(get_serie_by_remote_id_mapped_options(options)))
end
get_series_mapped_options(options) click to toggle source
# File lib/thetvdb_api/search.rb, line 243
def get_series_mapped_options(options)
  ThetvdbApi::AttributesMapping::Search::GetSeries.new(options).to_hash
end
get_series_path() click to toggle source
# File lib/thetvdb_api/search.rb, line 247
def get_series_path
  'GetSeries.php'
end
get_series_path_with_params(options) click to toggle source
# File lib/thetvdb_api/search.rb, line 239
def get_series_path_with_params(options)
  path(get_series_path).params(language_options.merge(get_series_mapped_options(options)))
end