1
0
Fork 0
oldhaven/app/controllers/last_fm_controller.rb

70 lines
1.9 KiB
Ruby
Raw Normal View History

2011-06-22 07:23:07 +00:00
require 'open-uri'
2011-06-22 22:56:32 +00:00
require 'lastfm'
2011-06-22 07:23:07 +00:00
class LastFmController < ApplicationController
@@api_key = '04fda005dbf61a50af5abc3e90f111f2'
@@secret = '19e70e98b291e9f15d0516925945eb1b'
def connect
unless params[:sid].nil? or params[:token].nil?
session = Session.find_by_key(params[:sid])
unless session.nil?
2011-06-22 22:56:32 +00:00
lastfm = Lastfm.new(@@api_key, @@secret)
lastfm.session = lastfm.auth.get_session(params[:token])
session.user.lastfm_key = lastfm.session['key']
session.user.lastfm_username = lastfm.session['name']
2011-06-22 07:23:07 +00:00
session.user.save
render :text => '<script>window.close();</script>'
else
render :text => 'You Don\'t Fool Me'
end
else
render :text => 'So Much Trouble In The World'
end
end
def getinfo
2011-06-22 22:56:32 +00:00
return unless authorized?
2011-06-22 07:23:07 +00:00
@res = {}
2011-06-22 22:56:32 +00:00
user = User.find_by_vkid(params[:mid])
unless user.lastfm_key.nil?
render :json => {
:connected => true,
:username => user.lastfm_username
}
else
render :json => {
:connected => false,
:lastfm_login_url => 'http://www.last.fm/api/auth?api_key='+ @@api_key +'&cb=http://localhost/lastfm/connect/?sid='+ user.session.key
}
2011-06-22 07:23:07 +00:00
end
end
2011-06-22 22:56:32 +00:00
def listening
return unless authorized?
return if params[:artist].nil? or params[:track].nil?
user = User.find_by_vkid(params[:mid])
return unless user.lastfm_key.nil?
lastfm = Lastfm.new(@@api_key, @@secret)
lastfm.session = user.lastfm_key
lastfm.update_now_playing(params[:artist], params[:track])
2011-06-22 07:23:07 +00:00
end
2011-06-22 22:56:32 +00:00
def scrobble
return unless authorized?
return if params[:artist].nil? or params[:track].nil?
user = User.find_by_vkid(params[:mid])
return unless user.lastfm_key.nil?
lastfm = Lastfm.new(@@api_key, @@secret)
lastfm.session = user.lastfm_key
lastfm.scrobble(params[:artist], params[:track])
2011-06-22 07:23:07 +00:00
end
end