summaryrefslogtreecommitdiff
path: root/data/rbot
diff options
context:
space:
mode:
Diffstat (limited to 'data/rbot')
-rw-r--r--data/rbot/plugins/demauro.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/data/rbot/plugins/demauro.rb b/data/rbot/plugins/demauro.rb
index 9f5fc218..85f1f417 100644
--- a/data/rbot/plugins/demauro.rb
+++ b/data/rbot/plugins/demauro.rb
@@ -14,30 +14,41 @@ class DeMauroPlugin < Plugin
end
def demauro(m, params)
+ justcheck = params[:justcheck]
+
parola = params[:parola].downcase
url = @wapurl + "index.php?lemma=#{URI.escape(parola)}"
xml = @bot.httputil.get_cached(url)
if xml.nil?
info = @bot.httputil.last_response
info = info ? "(#{info.code} - #{info.message})" : ""
+ return false if justcheck
m.reply "An error occurred while looking for #{parola}#{info}"
return
end
if xml=~ /Non ho trovato occorrenze per/
+ return false if justcheck
m.reply "Nothing found for #{parola}"
return
end
entries = xml.scan(DEMAURO_LEMMA)
text = parola
if !entries.assoc(parola) and !entries.assoc(parola.upcase)
+ return false if justcheck
text += " not found. Similar words"
end
+ return true if justcheck
text += ": "
text += entries[0...5].map { |ar|
"#{ar[0]} - #{ar[1].gsub(/<\/?em>/,'')}: #{@dmurl}#{ar[2]}"
}.join(" | ")
m.reply text
end
+
+ def is_italian?(word)
+ return demauro(nil, :parola => word, :justcheck => true)
+ end
+
end
plugin = DeMauroPlugin.new