class Firstfm::Geo
Public Class Methods
get_events(params = {})
click to toggle source
# File lib/firstfm/geo.rb, line 9 def self.get_events(params = {}) location = params.delete(:location) lat = params.delete(:lat) lng = params.delete(:lng) page = params.delete(:page) || 1 distance = params.delete(:distance) response = get("/2.0/", {:query => {:method => 'geo.getevents', :location => location, :page => page, :lat => lat, :lng => lng, :distance => distance, :api_key => Firstfm.config.api_key, :format => :json}}) events = response ? Event.init_events_from_hash(response) : [] collection = WillPaginate::Collection.create(page, 10) do |pager| pager.replace events pager.total_entries = response['events']['@attr']['total'].to_i end end
get_generic_artist_chart(method, params = {})
click to toggle source
# File lib/firstfm/geo.rb, line 58 def self.get_generic_artist_chart(method, params = {}) metro = params[:metro] country = params[:country] start_timestamp = params[:start] end_timestamp = params[:end] page = params[:page] || 1 limit = params[:limit] || 50 response = get("/2.0/", {:query => { :method => method, :country => country, :metro => metro, :start => start_timestamp, :end => end_timestamp, :page => page, :limit => limit, :api_key => Firstfm.config.api_key, :format => :json }.reject {|k,v| v.nil?} }) artists_array = (response and response['topartists'] and response['topartists']['artist']) || [] artists = Artist.init_from_array(artists_array) WillPaginate::Collection.create(page, limit) do |pager| pager.replace artists pager.total_entries = response['topartists']['@attr']['total'].to_i rescue 0 end end
get_metro_artist_chart(params = {})
click to toggle source
# File lib/firstfm/geo.rb, line 46 def self.get_metro_artist_chart(params = {}) get_generic_artist_chart 'geo.getmetroartistchart', params end
get_metro_hype_artist_chart(params = {})
click to toggle source
# File lib/firstfm/geo.rb, line 50 def self.get_metro_hype_artist_chart(params = {}) get_generic_artist_chart 'geo.getmetrohypeartistchart', params end
get_metro_unique_artist_chart(params = {})
click to toggle source
# File lib/firstfm/geo.rb, line 54 def self.get_metro_unique_artist_chart(params = {}) get_generic_artist_chart 'geo.getmetrouniqueartistchart', params end
get_top_artists(params = {})
click to toggle source
# File lib/firstfm/geo.rb, line 25 def self.get_top_artists(params = {}) country = params[:country] page = params[:page] || 1 limit = params[:limit] || 50 response = get("/2.0/", {:query => { :method => 'geo.gettopartists', :country => country, :page => page, :limit => limit, :api_key => Firstfm.config.api_key, :format => :json }}) artists_array = (response and response['topartists'] and response['topartists']['artist']) || [] artists = Artist.init_from_array(artists_array) WillPaginate::Collection.create(page, limit) do |pager| pager.replace artists pager.total_entries = response['topartists']['@attr']['total'].to_i rescue 0 end end