]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/commitdiff
lastfm: make "tracks" optional in mappings for lovedtracks and recenttracks
authorRaine Virta <rane@kapsi.fi>
Thu, 19 Feb 2009 01:45:52 +0000 (03:45 +0200)
committerRaine Virta <rane@kapsi.fi>
Thu, 19 Feb 2009 01:54:35 +0000 (03:54 +0200)
data/rbot/plugins/lastfm.rb

index 8742e4f72e785cc02d1a55f5ef4a46c04e29e73d..811a63aa1dc5e6057948aa007082dde4b65d0d94 100644 (file)
@@ -441,8 +441,9 @@ class LastFmPlugin < Plugin
 
   def lastfm(m, params)
     action = case params[:action]
-    when "neighbors"   then "neighbours"
-    when "recentracks" then "recenttracks"
+    when "neighbors" then "neighbours"
+    when "recentracks", "recent" then "recenttracks"
+    when "loved" then "lovedtracks"
     when /^weekly(track|album|artist)s$/
       "weekly#{$1}chart"
     when "events"
@@ -620,7 +621,7 @@ plugin.map 'lastfm compare to :user2', :action => :tasteometer, :thread => true
 plugin.map 'lastfm compare [:user1] [to] :user2', :action => :tasteometer, :thread => true
 plugin.map "lastfm [user] [:num] :action [:user]", :thread => true,
   :requirements => { :action =>
-    /^(?:events|shouts|friends|neighbou?rs|(?:loved|recent?)tracks|top(?:album|artist|track)s?|weekly(?:albums?|artists?|tracks?)(?:chart)?)$/
+    /^(?:events|shouts|friends|neighbou?rs|loved(?:tracks)?|recent(?:t?racks)?|top(?:album|artist|track)s?|weekly(?:albums?|artists?|tracks?)(?:chart)?)$/
 }
 plugin.map 'lastfm [user] [:num] :action [:user] over [*period]', :thread => true,
   :requirements => {