X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Furban.rb;h=d66883060ea823dcaa394a4362dff6cef53c5460;hb=fc0c682cbf7a68b8ccd458ac776770fccf9e59f4;hp=a24ac072091f7ed3d4d75031da89460060d94829;hpb=3b83d8870cc04a2b0eff4250dd8deef9ea1d697b;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/urban.rb b/data/rbot/plugins/urban.rb index a24ac072..d6688306 100644 --- a/data/rbot/plugins/urban.rb +++ b/data/rbot/plugins/urban.rb @@ -13,36 +13,35 @@ class UrbanPlugin < Plugin def get_def(m, word, n = nil) n = n ? n.to_i : 1 + p = (n-1)/7 + 1 u = URBAN + URI.escape(word) - u += '&skip=' + n.to_s if n + u += '&page=' + p.to_s if p > 1 s = @bot.httputil.get(u) + return m.reply("Couldn't get the urban dictionary definition for #{word}") if s.nil? - notfound = s.match %r{
.*? isn't defined} + notfound = s.match %r{.*? isn't defined} - total = nil - if s.sub!(%r{
(\d+)\s*definition.*$}m, '') - total = $1.to_i - end + numpages = if s[%r{
.*?
}m] + $&.scan(/\d+/).collect {|x| x.to_i}.max || 1 + else 1 end rv = Array.new - - s.scan(%r{]*>.*?(\d+)\..*?.*?(?:)?([^>]+)(?:)?.*?
(.+?)
.*?
(.+?)
}m) do |num, wrd, desc, ex| + s.scan(%r{]*>.*?(\d+)\..*?.*?(?:)?([^>]+)(?:)?.*?
(.+?)
.*?
(.+?)
}m) do |num, wrd, desc, ex| rv << [num.to_i, wrd.strip, desc.strip, ex.strip] end - total ||= rv.size - + maxnum = rv.collect {|x| x[0]}.max || 0 return m.reply("#{Bold}#{word}#{Bold} not found") if rv.empty? if notfound - suggestions = rv.map { |s| Underline + s[1] + Underline }.uniq.join ', ' + suggestions = rv.map { |str| Underline + str[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) + answer ||= (n > maxnum ? rv.last : rv.first) + m.reply format_definition((p == numpages ? maxnum : "#{(numpages-1)*7 + 1}+"), *answer) end def urban(m, params) @@ -51,6 +50,7 @@ class UrbanPlugin < Plugin resp = @bot.httputil.head('http://www.urbandictionary.com/random.php', :max_redir => -1, :cache => false) + return m.reply("Couldn't get a random urban dictionary word") if resp.nil? if resp.code == "302" && (loc = resp['location']) words = URI.unescape(loc.match(/define.php\?term=(.*)$/)[1]) rescue nil end