]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blobdiff - data/rbot/plugins/lastfm.rb
Fixed chucknorris.rb debug output
[user/henk/code/ruby/rbot.git] / data / rbot / plugins / lastfm.rb
index 042d2d69227c92f7ed99bbc87fe1b4bd0f591d03..63935da15e0179feb02f90b3562314ac2379e710 100644 (file)
@@ -1,24 +1,25 @@
 require 'open-uri'
 
 # plugin submitted by Jeremy Voorhis (jvoorhis)
+
 class LastFmPlugin < Plugin
   def help(plugin, topic="")
     "lastfm <function> <user> => lastfm data for <user> on last.fm where <function> in [recenttracks, topartists, topalbums, toptracks, tags, friends, neighbors]"
   end
+
   def do_lastfm (m, params)
     begin
+      if params[:action] == "neighbors" || params[:action] == "neighbours" then
+        params[:action]="neighbours"
+      end
       data = open("http://ws.audioscrobbler.com/1.0/user/#{params[:user]}/#{params[:action]}.txt")
       m.reply "#{params[:action]} for #{params[:user]}:"
-      data.to_a[0..2].each do |line|
-        m.reply line.split(',')[-1]
-      end
+      m.reply data.to_a[0..3].map{|l| l.split(',')[-1].chomp}.join(", ")
     rescue
       m.reply "could not find #{params[:action]} for #{params[:user]} (is #{params[:user]} a user?)"
     end
   end
 end
+
 plugin = LastFmPlugin.new
 plugin.map 'lastfm :action :user', :action => 'do_lastfm'