]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - data/rbot/plugins/lastfm.rb
lastfm: make "tracks" optional in mappings for lovedtracks and recenttracks
[user/henk/code/ruby/rbot.git] / data / rbot / plugins / lastfm.rb
1 #-- vim:sw=2:et
2 #++
3 #
4 # :title: lastfm plugin for rbot
5 #
6 # Author:: Jeremy Voorhis
7 # Author:: Giuseppe "Oblomov" Bilotta <giuseppe.bilotta@gmail.com>
8 # Author:: Casey Link <unnamedrambler@gmail.com>
9 # Author:: Raine Virta <rane@kapsi.fi>
10 #
11 # Copyright:: (C) 2005 Jeremy Voorhis
12 # Copyright:: (C) 2007 Giuseppe Bilotta
13 # Copyright:: (C) 2008 Casey Link
14 # Copyright:: (C) 2009 Raine Virta
15 #
16 # License:: GPL v2
17
18 require 'rexml/document'
19 require 'cgi'
20
21 class ::LastFmEvent
22   def initialize(hash)
23     @url = hash[:url]
24     @date = hash[:date]
25     @location = hash[:location]
26     @description = hash[:description]
27     @attendance = hash[:attendance]
28
29     @artists = hash[:artists]
30
31     if @artists.length > 10 #more than 10 artists and it floods
32       diff = @artists.length - 10
33       @artist_string = Bold + @artists[0..10].join(', ') + Bold
34       @artist_string << _(" and %{n} more...") % {:n => diff}
35     else
36       @artist_string = Bold + @artists.join(', ') + Bold
37     end
38   end
39
40   def compact_display
41    unless @attendance.zero?
42      return "%s %s @ %s (%s attending) %s" % [@date.strftime("%a, %b %d"), @artist_string, @location, @attendance, @url]
43    end
44    return "%s %s @ %s %s" % [@date.strftime("%a, %b %d"), @artist_string, @location, @url]
45   end
46   alias :to_s :compact_display
47
48 end
49
50 class LastFmPlugin < Plugin
51   include REXML
52   Config.register Config::IntegerValue.new('lastfm.max_events',
53     :default => 25, :validate => Proc.new{|v| v > 1},
54     :desc => "Maximum number of events to display.")
55   Config.register Config::IntegerValue.new('lastfm.default_events',
56     :default => 3, :validate => Proc.new{|v| v > 1},
57     :desc => "Default number of events to display.")
58   Config.register Config::IntegerValue.new('lastfm.max_shouts',
59     :default => 5, :validate => Proc.new{|v| v > 1},
60     :desc => "Maximum number of user shouts to display.")
61   Config.register Config::IntegerValue.new('lastfm.default_shouts',
62     :default => 3, :validate => Proc.new{|v| v > 1},
63     :desc => "Default number of user shouts to display.")
64   Config.register Config::IntegerValue.new('lastfm.max_user_data',
65     :default => 25, :validate => Proc.new{|v| v > 1},
66     :desc => "Maximum number of user data entries (except events and shouts) to display.")
67   Config.register Config::IntegerValue.new('lastfm.default_user_data',
68     :default => 10, :validate => Proc.new{|v| v > 1},
69     :desc => "Default number of user data entries (except events and shouts) to display.")
70
71   APIKEY = "b25b959554ed76058ac220b7b2e0a026"
72   APIURL = "http://ws.audioscrobbler.com/2.0/?api_key=#{APIKEY}&"
73
74   def initialize
75     super
76     class << @registry
77       def store(val)
78         val
79       end
80       def restore(val)
81         val
82       end
83     end
84   end
85
86   def help(plugin, topic="")
87     period = _(", where <period> can be one of: 3|6|12 months, a year")
88     case (topic.intern rescue nil)
89     when :event, :events
90       _("lastfm [<num>] events in <location> => show information on events in or near <location>. lastfm [<num>] events by <artist/group> => show information on events by <artist/group>. The number of events <num> that can be displayed is optional, defaults to %{d} and cannot be higher than %{m}") % {:d => @bot.config['lastfm.default_events'], :m => @bot.config['lastfm.max_events']}
91     when :artist
92       _("lastfm artist <name> => show information on artist <name> from last.fm")
93     when :album
94       _("lastfm album <name> => show information on album <name> from last.fm [not implemented yet]")
95     when :track
96       _("lastfm track <name> => search tracks matching <name> on last.fm")
97     when :now, :np
98       _("lastfm now [<nick>] => show the now playing track from last.fm. np [<nick>] does the same.")
99     when :set
100       _("lastfm set user <user> => associate your current irc nick with a last.fm user. lastfm set verb <present>, <past> => set your preferred now playing/just played verbs. default \"is listening to\" and \"listened to\".")
101     when :who
102       _("lastfm who [<nick>] => show who <nick> is on last.fm. if <nick> is empty, show who you are on lastfm.")
103     when :compare
104       _("lastfm compare [<nick1>] <nick2> => show musical taste compatibility between nick1 (or user if omitted) and nick2")
105     when :shouts
106       _("lastfm shouts [<nick>] => show shouts to <nick>")
107     when :friends
108       _("lastfm friends [<nick>] => show <nick>'s friends")
109     when :neighbors, :neighbours
110       _("lastfm neighbors [<nick>] => show people who share similar musical taste as <nick>")
111     when :lovedtracks
112       _("lastfm loved[tracks] [<nick>] => show tracks that <nick> has loved")
113     when :recenttracks, :recentracks
114       _("lastfm recent[tracks] [<nick>] => show tracks that <nick> has recently played")
115     when :topalbums
116       _("lastfm topalbums [<nick>] [over <period>] => show <nick>'s top albums%{p}") % { :p => period }
117     when :topartists
118       _("lastfm topartists [<nick>] [over <period>] => show <nick>'s top artists%{p}") % { :p => period }
119     when :toptracks
120       _("lastfm toptracks [<nick>] [over <period>] => show <nick>'s top tracks%{p}") % { :p => period }
121     when :weeklyalbumchart
122       _("lastfm weeklyalbumchart [<nick>] => show <nick>'s weekly album chart")
123     when :weeklyartistchart
124       _("lastfm weeklyartistchart [<nick>] => show <nick>'s weekly artist chart")
125     when :weeklytrackchart
126       _("lastfm weeklyartistchart [<nick>] => show <nick>'s weekly track chart")
127     else
128       _("last.fm plugin - topics: events, artist, album, track, now, set, who, compare, shouts, friends, neighbors, (loved|recent)tracks, top(albums|tracks|artists), weekly(album|artist|track)chart")
129     end
130   end
131
132   def find_events(m, params)
133     num = params[:num] || @bot.config['lastfm.default_events']
134     num = num.to_i.clip(1, @bot.config['lastfm.max_events'])
135
136     location = params[:location]
137     artist = params[:who]
138     user = resolve_username(m, params[:user])
139
140     if location
141       uri = "#{APIURL}method=geo.getevents&location=#{CGI.escape location.to_s}"
142       emptymsg = _("no events found in %{location}") % {:location => location.to_s}
143     elsif artist
144       uri = "#{APIURL}method=artist.getevents&artist=#{CGI.escape artist.to_s}"
145       emptymsg = _("no events found by %{artist}") % {:artist => artist.to_s}
146     elsif user
147       uri = "#{APIURL}method=user.getevents&user=#{CGI.escape user}"
148       emptymsg = _("%{user} is not attending any events") % {:user => user}
149     end
150     xml = @bot.httputil.get_response(uri)
151
152     doc = Document.new xml.body
153     if xml.class == Net::HTTPInternalServerError
154       if doc.root and doc.root.attributes["status"] == "failed"
155         m.reply doc.root.elements["error"].text
156       else
157         m.reply _("could not retrieve events")
158       end
159     end
160     disp_events = Array.new
161     events = Array.new
162     doc.root.elements.each("events/event"){ |e|
163       h = {}
164       h[:title] = e.elements["title"].text
165       venue = e.elements["venue"].elements["name"].text
166       city = e.elements["venue"].elements["location"].elements["city"].text
167       country =  e.elements["venue"].elements["location"].elements["country"].text
168       h[:location] = Underline + venue + Underline + " #{Bold + city + Bold}, #{country}"
169       date = e.elements["startDate"].text.split
170       h[:date] = Time.utc(date[3].to_i, date[2], date[1].to_i)
171       h[:desc] = e.elements["description"].text
172       h[:url] = e.elements["url"].text
173       h[:attendance] = e.elements["attendance"].text.to_i
174       artists = Array.new
175       e.elements.each("artists/artist"){ |a|
176         artists << a.text
177       }
178       h[:artists] = artists
179       events << LastFmEvent.new(h)
180     }
181     if events.empty?
182       m.reply emptymsg
183       return
184     end
185     events[0...num].each { |event|
186       disp_events << event.to_s
187     }
188     m.reply disp_events.join(' | '), :split_at => /\s+\|\s+/
189
190   end
191
192   def tasteometer(m, params)
193     opts = { :cache => false }
194     user1 = resolve_username(m, params[:user1])
195     user2 = resolve_username(m, params[:user2])
196     xml = @bot.httputil.get_response("#{APIURL}method=tasteometer.compare&type1=user&type2=user&value1=#{CGI.escape user1}&value2=#{CGI.escape user2}", opts)
197     doc = Document.new xml.body
198     unless doc
199       m.reply _("last.fm parsing failed")
200       return
201     end
202     if xml.class == Net::HTTPBadRequest
203       if doc.root.elements["error"].attributes["code"] == "7" then
204         error = doc.root.elements["error"].text
205         error.match(/Invalid username: \[(.*)\]/);
206         baduser = $1
207
208         m.reply _("%{u} doesn't exist on last.fm") % {:u => baduser}
209         return
210       else
211         m.reply _("error: %{e}") % {:e => doc.root.element["error"].text}
212         return
213       end
214     end
215     score = doc.root.elements["comparison/result/score"].text.to_f
216     artists = doc.root.get_elements("comparison/result/artists/artist").map { |e| e.elements["name"].text}
217     case
218       when score >= 0.9
219         rating = _("Super")
220       when score >= 0.7
221         rating = _("Very High")
222       when score >= 0.5
223         rating = _("High")
224       when score >= 0.3
225         rating = _("Medium")
226       when score >= 0.1
227         rating = _("Low")
228       else
229         rating = _("Very Low")
230     end
231
232     reply = _("%{a}'s and %{b}'s musical compatibility rating is %{bold}%{r}%{bold}") % {
233       :a => user1,
234       :b => user2,
235       :r => rating.downcase,
236       :bold => Bold
237     }
238
239     reply << _(" and music they have in common includes: %{artists}") % {
240       :artists => artists.join(", ")
241     } unless artists.empty?
242
243     m.reply reply
244   end
245
246   def now_playing(m, params)
247     opts = { :cache => false }
248     user = resolve_username(m, params[:who])
249     xml = @bot.httputil.get_response("#{APIURL}method=user.getrecenttracks&user=#{CGI.escape user}", opts)
250     doc = Document.new xml.body
251     unless doc
252       m.reply _("last.fm parsing failed")
253       return
254     end
255     if xml.class == Net::HTTPBadRequest
256       if doc.root.elements["error"].text == "Invalid user name supplied" then
257         m.reply _("%{user} doesn't exist on last.fm, perhaps they need to: lastfm user <username>") % {
258           :user => user
259         }
260         return
261       else
262         m.reply _("error: %{e}") % {:e => doc.root.element["error"].text}
263         return
264       end
265     end
266     now = artist = track = albumtxt = date = nil
267     unless doc.root.elements[1].has_elements?
268      m.reply _("%{u} hasn't played anything recently") % {:u => user}
269      return
270     end
271     first = doc.root.elements[1].elements[1]
272     now = first.attributes["nowplaying"]
273     artist = first.elements["artist"].text
274     track = first.elements["name"].text
275     albumtxt = first.elements["album"].text
276     album = ""
277     if albumtxt
278       year = get_album(artist, albumtxt)[2]
279       album = "[#{albumtxt}, #{year}] " if year
280     end
281     past = nil
282     date = XPath.first(first, "//date")
283     if date != nil
284       time = date.attributes["uts"]
285       past = Time.at(time.to_i)
286     end
287     if now == "true"
288        verb = _("is listening to")
289        if @registry.has_key? "#{m.sourcenick}_verb_present"
290          verb = @registry["#{m.sourcenick}_verb_present"]
291        end
292        m.reply _("%{u} %{v} \"%{t}\" by %{a} %{b}") % {:u => user, :v => verb, :t => track, :a => artist, :b => album}
293     else
294       verb = _("listened to")
295        if @registry.has_key? "#{m.sourcenick}_verb_past"
296          verb = @registry["#{m.sourcenick}_verb_past"]
297        end
298       ago = Utils.timeago(past)
299       m.reply _("%{u} %{v} \"%{t}\" by %{a} %{b}%{p}") % {:u => user, :v => verb, :t => track, :a => artist, :b => album, :p => ago}
300     end
301   end
302
303   def find_artist(m, params)
304     info_xml = @bot.httputil.get("#{APIURL}method=artist.getinfo&artist=#{CGI.escape params[:artist].to_s}")
305     unless info_xml
306       m.reply _("I had problems getting info for %{a}") % {:a => params[:artist]}
307       return
308     end
309     info_doc = Document.new info_xml
310     unless info_doc
311       m.reply _("last.fm parsing failed")
312       return
313     end
314     tags_xml = @bot.httputil.get("#{APIURL}method=artist.gettoptags&artist=#{CGI.escape params[:artist].to_s}")
315     tags_doc = Document.new tags_xml
316
317     first = info_doc.root.elements["artist"]
318     artist = first.elements["name"].text
319     url = first.elements["url"].text
320     stats = {}
321     %w(playcount listeners).each do |e|
322       t = first.elements["stats/#{e}"].text
323       stats[e.to_sym] = t.gsub(/(\d)(?=(\d\d\d)+(?!\d))/, "\\1,")
324     end
325     summary = first.elements["bio"].elements["summary"].text
326     similar = first.get_elements("similar/artist").map { |a|
327       _("%{b}%{a}%{b}") % { :a => a.elements["name"].text, :b => Bold } }
328     tags = tags_doc.root.get_elements("toptags/tag")[0..4].map { |t|
329       _("%{u}%{t}%{u}") % { :t => t.elements["name"].text, :u => Underline } }
330     reply = _("%{b}%{a}%{b} <%{u}> has been played %{b}%{c}%{b} times and is being listened to by %{b}%{l}%{b} people") % {
331       :b => Bold, :a => artist, :u => url, :c => stats[:playcount], :l => stats[:listeners] }
332     reply << _(". Tagged as: %{t}") % {
333       :t => tags.join(", "), :b => Bold } unless tags.empty?
334     reply << _(". Similar artists: %{s}") % {
335       :s => similar.join(", "), :b => Bold } unless similar.empty?
336     m.reply reply
337     m.reply summary.ircify_html
338   end
339
340   def find_track(m, params)
341     track = params[:track].to_s
342     xml = @bot.httputil.get("#{APIURL}method=track.search&track=#{CGI.escape track}")
343     unless xml
344       m.reply _("I had problems getting info for %{a}") % {:a => track}
345       return
346     end
347     debug xml
348     doc = Document.new xml
349     unless doc
350       m.reply _("last.fm parsing failed")
351       return
352     end
353     debug doc.root
354     results = doc.root.elements["results/opensearch:totalResults"].text.to_i rescue 0
355     if results > 0
356       begin
357         hits = []
358         doc.root.each_element("results/trackmatches/track") do |track|
359           hits << _("%{bold}%{t}%{bold} by %{bold}%{a}%{bold} (%{n} listeners)") % {
360             :t => track.elements["name"].text,
361             :a => track.elements["artist"].text,
362             :n => track.elements["listeners"].text,
363             :bold => Bold
364           }
365         end
366         m.reply hits.join(' -- '), :split_at => ' -- '
367       rescue
368         error $!
369         m.reply _("last.fm parsing failed")
370       end
371     else
372       m.reply _("track %{a} not found") % {:a => track}
373     end
374   end
375
376   def get_album(artist, album)
377     xml = @bot.httputil.get("#{APIURL}method=album.getinfo&artist=#{CGI.escape artist}&album=#{CGI.escape album}")
378     unless xml
379       return [_("I had problems getting album info")]
380     end
381     doc = Document.new xml
382     unless doc
383       return [_("last.fm parsing failed")]
384     end
385     album = date = playcount = artist = date = year = nil
386     first = doc.root.elements["album"]
387     artist = first.elements["artist"].text
388     playcount = first.elements["playcount"].text
389     album = first.elements["name"].text
390     date = first.elements["releasedate"].text
391     unless date.strip.length < 2
392       year = date.strip.split[2].chop
393     end
394     result = [artist, album, year, playcount]
395     return result
396   end
397
398   def find_album(m, params)
399     album = get_album(params[:artist].to_s, params[:album].to_s)
400     if album.length == 1
401       m.reply _("I couldn't locate: \"%{a}\" by %{r}") % {:a => params[:album], :r => params[:artist]}
402       return
403     end
404     year = "(#{album[2]}) " unless album[2] == nil
405     m.reply _("the album \"%{a}\" by %{r} %{y}has been played %{c} times") % {:a => album[1], :r => album[0], :y => year, :c => album[3]}
406   end
407
408   def set_user(m, params)
409     user = params[:who].to_s
410     nick = m.sourcenick
411     @registry[ nick ] = user
412     m.reply _("okay, I'll remember that %{n} is %{u} on last.fm") % {:n => nick, :u => user}
413   end
414
415   def set_verb(m, params)
416     past = params[:past].to_s
417     present = params[:present].to_s
418     key = "#{m.sourcenick}_verb_"
419     @registry[ "#{key}past" ] = past
420     @registry[ "#{key}present" ] = present
421     m.reply _("okay, I'll remember that %{n} prefers \"%{r}\" and \"%{p}\"") % {:n => m.sourcenick, :p => past, :r => present}
422   end
423
424   def get_user(m, params)
425     nick = ""
426     if params[:who]
427       nick = params[:who].to_s
428     else
429       nick = m.sourcenick
430     end
431     if @registry.has_key? nick
432       user = @registry[ nick ]
433       m.reply _("%{nick} is %{user} on last.fm") % {
434         :nick => nick,
435         :user => user
436       }
437     else
438       m.reply _("sorry, I don't know who %{n} is on last.fm, perhaps they need to: lastfm set user <username>") % {:n => nick}
439     end
440   end
441
442   def lastfm(m, params)
443     action = case params[:action]
444     when "neighbors" then "neighbours"
445     when "recentracks", "recent" then "recenttracks"
446     when "loved" then "lovedtracks"
447     when /^weekly(track|album|artist)s$/
448       "weekly#{$1}chart"
449     when "events"
450       find_events(m, params)
451       return
452     else
453       params[:action]
454     end.to_sym
455
456     if action == :shouts
457       num = params[:num] || @bot.config['lastfm.default_shouts']
458       num = num.to_i.clip(1, @bot.config['lastfm.max_shouts'])
459     else
460       num = params[:num] || @bot.config['lastfm.default_user_data']
461       num = num.to_i.clip(1, @bot.config['lastfm.max_user_data'])
462     end
463
464     user = resolve_username(m, params[:user])
465     uri = "#{APIURL}method=user.get#{action}&user=#{CGI.escape user}"
466
467     if period = params[:period]
468       period_uri = (period.last == "year" ? "12month" : period.first + "month")
469       uri << "&period=#{period_uri}"
470     end
471
472     res = @bot.httputil.get_response(uri)
473     unless res.body
474       m.reply _("I had problems accessing last.fm")
475       return
476     end
477     doc = Document.new(res.body)
478     unless doc
479       m.reply _("last.fm parsing failed")
480       return
481     end
482
483     case res
484     when Net::HTTPBadRequest
485       if doc.root and doc.root.attributes["status"] == "failed"
486         m.reply "error: " << doc.root.elements["error"].text.downcase
487       end
488       return
489     end
490
491     seemore =  _("; see %{uri} for more")
492     case action
493     when :friends
494       friends = doc.root.get_elements("friends/user").map do |u|
495         u.elements["name"].text
496       end
497
498       if friends.empty?
499         reply = _("%{user} has no friends :(")
500       elsif friends.length <= num
501         reply = _("%{user} has %{total} friends: %{friends}")
502       else
503         reply = _("%{user} has %{total} friends, including %{friends}")
504         reply << seemore
505       end
506       m.reply reply % {
507         :user => user,
508         :total => friends.size,
509         :friends => friends.shuffle[0, num].join(", "),
510         :uri => "http://www.last.fm/user/#{CGI.escape user}/friends"
511       }
512     when :lovedtracks
513       loved = doc.root.get_elements("lovedtracks/track").map do |track|
514         [track.elements["artist/name"].text, track.elements["name"].text].join(" - ")
515       end
516       loved_prep = loved.shuffle[0, num].to_enum(:each_with_index).collect { |e,i| (i % 2).zero? ? Underline+e+Underline : e }
517
518       if loved.empty?
519         reply = _("%{user} has not loved any tracks")
520       elsif loved.length <= num
521         reply = _("%{user} has loved %{total} tracks: %{tracks}")
522       else
523         reply = _("%{user} has loved %{total} tracks, including %{tracks}")
524         reply << seemore
525       end
526       m.reply reply % {
527           :user => user,
528           :total => loved.size,
529           :tracks => loved_prep.join(", "),
530           :uri => "http://www.last.fm/user/#{CGI.escape user}/library/loved"
531         }
532     when :neighbours
533       nbrs = doc.root.get_elements("neighbours/user").map do |u|
534         u.elements["name"].text
535       end
536
537       if nbrs.empty?
538         reply = _("no one seems to share %{user}'s musical taste")
539       elsif nbrs.length <= num
540         reply = _("%{user} musical neighbours are %{nbrs}")
541       else
542         reply = _("%{user} musical neighbours include %{nbrs}")
543         reply << seemore
544       end
545       m.reply reply % {
546           :user  => user,
547           :nbrs  => nbrs.shuffle[0, num].join(", "),
548           :uri   => "http://www.last.fm/user/#{CGI.escape user}/neighbours"
549       }
550     when :recenttracks
551       tracks = doc.root.get_elements("recenttracks/track").map do |track|
552         [track.elements["artist"].text, track.elements["name"].text].join(" - ")
553       end
554       tracks_prep = tracks[0, num].to_enum(:each_with_index).collect { |e,i| (i % 2).zero? ? Underline+e+Underline : e }
555
556       if tracks.empty?
557         m.reply _("%{user} hasn't played anything recently") % { :user => user }
558       else
559         m.reply _("%{user} has recently played %{tracks}") %
560           { :user => user, :tracks => tracks_prep.join(", ") }
561       end
562     when :shouts
563       shouts = doc.root.get_elements("shouts/shout")
564       if shouts.empty?
565         m.reply _("there are no shouts for %{user}") % { :user => user }
566       else
567         shouts[0, num].each do |shout|
568           m.reply _("<%{author}> %{body}") % {
569             :body   => shout.elements["body"].text,
570             :author => shout.elements["author"].text,
571           }
572         end
573       end
574     when :toptracks, :topalbums, :topartists, :weeklytrackchart, :weeklyalbumchart, :weeklyartistchart
575       type  = action.to_s.scan(/track|album|artist/).to_s
576       items = doc.root.get_elements("#{action}/#{type}").map do |item|
577         case action
578         when :weeklytrackchart, :weeklyalbumchart
579           format = "%{artist} - %{title} (%{bold}%{plays}%{bold})"
580           artist = item.elements["artist"].text
581         when :weeklyartistchart, :topartists
582           format = "%{artist} (%{bold}%{plays}%{bold})"
583           artist = item.elements["name"].text
584         when :toptracks, :topalbums
585           format = "%{artist} - %{title} (%{bold}%{plays}%{bold})"
586           artist = item.elements["artist/name"].text
587         end
588
589         _(format) % {
590           :artist => artist,
591           :title  => item.elements["name"].text,
592           :plays  => item.elements["playcount"].text,
593           :bold   => Bold
594         }
595       end
596       if items.empty?
597         m.reply _("%{user} hasn't played anything in this period of time") % { :user => user }
598       else
599         m.reply items[0, num].join(", ")
600       end
601     end
602   end
603
604   def resolve_username(m, name)
605     name = m.sourcenick if name.nil?
606     @registry[name] or name
607   end
608 end
609
610 plugin = LastFmPlugin.new
611 plugin.map 'lastfm [:num] event[s] in *location', :action => :find_events, :requirements => { :num => /\d+/ }, :thread => true
612 plugin.map 'lastfm [:num] event[s] by *who', :action => :find_events, :requirements => { :num => /\d+/ }, :thread => true
613 plugin.map 'lastfm [:num] event[s] [for] *who', :action => :find_events, :requirements => { :num => /\d+/ }, :thread => true
614 plugin.map 'lastfm artist *artist', :action => :find_artist, :thread => true
615 plugin.map 'lastfm album *album [by *artist]', :action => :find_album
616 plugin.map 'lastfm track *track', :action => :find_track, :thread => true
617 plugin.map 'lastfm set user[name] :who', :action => :set_user, :thread => true
618 plugin.map 'lastfm set verb *present, *past', :action => :set_verb, :thread => true
619 plugin.map 'lastfm who [:who]', :action => :get_user, :thread => true
620 plugin.map 'lastfm compare to :user2', :action => :tasteometer, :thread => true
621 plugin.map 'lastfm compare [:user1] [to] :user2', :action => :tasteometer, :thread => true
622 plugin.map "lastfm [user] [:num] :action [:user]", :thread => true,
623   :requirements => { :action =>
624     /^(?:events|shouts|friends|neighbou?rs|loved(?:tracks)?|recent(?:t?racks)?|top(?:album|artist|track)s?|weekly(?:albums?|artists?|tracks?)(?:chart)?)$/
625 }
626 plugin.map 'lastfm [user] [:num] :action [:user] over [*period]', :thread => true,
627   :requirements => {
628     :action => /^(?:top(?:album|artist|track)s?)$/,
629     :period => /^(?:(?:3|6|12) months)|(?:a\s|1\s)?year$/
630 }
631 plugin.map 'lastfm [now] [:who]', :action => :now_playing, :thread => true
632 plugin.map 'np [:who]', :action => :now_playing, :thread => true