diff options
author | Raine Virta <rane@kapsi.fi> | 2009-12-13 22:31:01 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2009-12-21 10:30:44 +0100 |
commit | 0f4d8db41a58cdbb0f302e828e1e84b2752344b3 (patch) | |
tree | 59e89684f02147d01ece60cb1140ac7727bf4609 /data/rbot | |
parent | f83cf5ee37e960b6f873d29554e42a22e6957738 (diff) |
lastfm: use Spotify from lib_spotify
Diffstat (limited to 'data/rbot')
-rw-r--r-- | data/rbot/plugins/lastfm.rb | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/data/rbot/plugins/lastfm.rb b/data/rbot/plugins/lastfm.rb index f7d2b42f..57cf3ec1 100644 --- a/data/rbot/plugins/lastfm.rb +++ b/data/rbot/plugins/lastfm.rb @@ -15,24 +15,6 @@ # # License:: GPL v2 -module Spotify - def self.get(service, method, query, page=1) - query.tr!('-','') - url = "http://ws.spotify.com/#{service}/1/#{method}?q=#{CGI.escape(query)}&page=#{page}" - xml = Irc::Utils.bot.httputil.get_response(url).body - return REXML::Document.new(xml).root - end - - # returns a Spotify URL, e.g. 'http://open.spotify.com/track/3y6EhoUO3A8bPr3zt3Tm9b' - def self.search(method, query, page=1) - doc = get(:search, method, query, page) - return nil if doc.elements["opensearch:totalResults"].text.to_i.zero? - uri = doc.elements[method.to_s].attributes["href"] - id = uri[uri.rindex(':')+1..-1] - return URI.escape("http://open.spotify.com/#{method}/#{id}") - end -end - require 'rexml/document' require 'cgi' @@ -405,8 +387,10 @@ class LastFmPlugin < Plugin reply = _("%{u} %{v} \"%{t}\" by %{bold}%{a}%{bold}%{b} %{p};") % {:u => user, :v => verb, :t => track, :a => artist, :b => album, :p => ago, :bold => Bold} end - if (spotify_url = Spotify.search(:track, "#{artist} #{track}")) - reply << _(" [%{u}%{url}%{u}]") % {:u => Underline, :url => spotify_url} + if Object.const_defined?('Spotify') + if track = Spotify.search(:track, "#{artist} #{track}") + reply << _(" [%{u}%{url}%{u}]") % {:u => Underline, :url => track.url} + end end reply << _(" -- see %{uri} for more") % { :uri => "http://www.last.fm/user/#{CGI.escape user}"} |