X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Furban.rb;h=a24ac072091f7ed3d4d75031da89460060d94829;hb=26d2e36ff08de4e3bbf510616d4c8dac6da9d6d0;hp=21eb374c7be0776d90ba5552dc092ccc81653a25;hpb=367087a817dd7e7b0c2c03a8172972dbc31bedb2;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/urban.rb b/data/rbot/plugins/urban.rb index 21eb374c..a24ac072 100644 --- a/data/rbot/plugins/urban.rb +++ b/data/rbot/plugins/urban.rb @@ -5,42 +5,44 @@ class UrbanPlugin < Plugin "urban [word] [n]: give the [n]th definition of [word] from urbandictionary.com. urbanday: give the word-of-the-day at urban" end + def format_definition(total, num, word, desc, ex) + "#{Bold}#{word} (#{num}/#{total})#{Bold}: " + + desc.ircify_html(:limit => 300) + " " + + "#{ex}".ircify_html(:limit => 100) + end + def get_def(m, word, n = nil) - n = n.to_i if n - u = URBAN + CGI.escape(word) + n = n ? n.to_i : 1 + u = URBAN + URI.escape(word) u += '&skip=' + n.to_s if n s = @bot.httputil.get(u) notfound = s.match %r{
.*? isn't defined} + total = nil if s.sub!(%r{
(\d+)\s*definition.*$}m, '') total = $1.to_i - else - total = 1 end - n = total if n && n > total - rv = Array.new - s.scan(%r{]*>(\d+)\..*?(?:)?([^>]+)(?:)?.*?
.*?

(.+?)

.*?

300) + " " + - "#{a4}".ircify_html(:limit => 100) - ) unless (n && n != a1.to_i) || rv.size >= 3 + s.scan(%r{]*>.*?(\d+)\..*?.*?(?:)?([^>]+)(?:)?.*?

(.+?)
.*?
(.+?)
}m) do |num, wrd, desc, ex| + rv << [num.to_i, wrd.strip, desc.strip, ex.strip] end + total ||= rv.size + + return m.reply("#{Bold}#{word}#{Bold} not found") if rv.empty? + if notfound - if rv.empty? - m.reply "#{word} not found" - else - m.reply "#{word} not found. maybe you mean:" - rv.each { |s| m.reply s } - end - else - rv.each { |s| m.reply s } + suggestions = rv.map { |s| Underline + s[1] + Underline }.uniq.join ', ' + m.reply "#{Bold}#{word}#{Bold} not found. maybe you mean #{suggestions}?" + return end + + answer = rv.find { |a| a[0] == n } + answer ||= (n > total ? rv.last : rv.first) + m.reply format_definition(total, *answer) end def urban(m, params)