summaryrefslogtreecommitdiff
path: root/data/rbot/plugins/rot13.rb
blob: 4176772631a1ec674fb7e51c1e16527488713921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#-- vim:sw=2:et
#++
#
# :title: ROT13 plugin
#
class RotPlugin < Plugin
  def initialize
    super
    @bot.register_filter(:rot13) { |s|
      ss = s.dup
      ss[:text] = s[:text].tr("A-Za-z", "N-ZA-Mn-za-m")
      ss
    }
  end

  def help(plugin, topic="")
    "rot13 <string> => encode <string> to rot13 or back"
  end

  def rot13(m, params)
    m.reply @bot.filter(:rot13, params[:string].to_s).to_s
  end
end
plugin = RotPlugin.new
plugin.map 'rot13 *string'