Class: Jabber::Bot
- Inherits:
-
Object
- Object
- Jabber::Bot
- Defined in:
- lib/jabber/bot.rb
Instance Attribute Summary collapse
-
#jabber ⇒ Object
readonly
Direct access to the underlying Jabber::Simple object.
Instance Method Summary collapse
-
#add_command(command, &callback) ⇒ Object
Add a command to the bot’s repertoire.
-
#connect ⇒ Object
Connect the bot, making it available to accept commands.
-
#deliver(to, message) ⇒ Object
Deliver a message to the specified recipient(s).
-
#disconnect ⇒ Object
Disconnect the bot.
-
#initialize(config) ⇒ Bot
constructor
Creates a new Jabber::Bot object with the specified
config
Hash, which must containjabber_id
,password
, andmaster
at a minimum. -
#master ⇒ Object
Returns an Array of masters.
-
#master?(jabber_id) ⇒ Boolean
Returns
true
if the given Jabber id is a master,false
otherwise. -
#presence(presence = nil, status = nil, priority = nil) ⇒ Object
Sets the bot presence, status message and priority.
-
#presence=(presence) ⇒ Object
Sets the bot presence.
-
#priority=(priority) ⇒ Object
Set the bot priority.
-
#status=(status) ⇒ Object
Set the status message.
Constructor Details
#initialize(config) ⇒ Bot
Creates a new Jabber::Bot object with the specified config
Hash, which must contain jabber_id
, password
, and master
at a minimum.
You may optionally give your bot a custom name
. If name
is omitted, the username portion of jabber_id
is used instead.
You may choose to restrict a Jabber::Bot to listen only to its master(s), or make it public
.
You may optionally specify a Jabber presence
, status
, and priority
. If omitted, they each default to nil
.
By default, a Jabber::Bot has only a single command, ‘help [<command>]’, which displays a help message for the specified command, or all commands if <command> is omitted.
If you choose to make a public bot, only the commands you specify as public, as well as the default ‘help’ command, will be public.
# A minimally confiugured private bot with a single master.
bot = Jabber::Bot.new(
:jabber_id => '[email protected]',
:password => 'secret',
:master => '[email protected]'
)
# A highly configured public bot with a custom name, mutliple masters,
# Jabber presence, status, and priority.
masters = ['[email protected]', '[email protected]']
bot = Jabber::Bot.new(
:name => 'PublicBot',
:jabber_id => '[email protected]',
:password => 'secret',
:master => masters,
:is_public => true,
:presence => :chat,
:priority => 5,
:status => 'Hello, I am PublicBot.'
)
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'lib/jabber/bot.rb', line 80 def initialize(config) @config = config @config[:is_public] ||= false if @config[:name].nil? || @config[:name].length == 0 @config[:name] = @config[:jabber_id].sub(/@.+$/, '') end unless @config[:master].is_a?(Array) @config[:master] = [@config[:master]] end @commands = { :spec => [], :meta => {} } # Default to asking about unknown commands. @config[:misunderstood_message] = @config[:misunderstood_message].nil? ? true : @config[:misunderstood_message] # Add the help command add_command( :syntax => 'help [<command>]', :description => 'Display help for the given command, or all commands' + ' if no command is specified', :regex => /^help(\s+?.+?)?$/, :alias => [ :syntax => '? [<command>]', :regex => /^\?(\s+?.+?)?$/ ], :is_public => @config[:is_public] ) { |sender, | (sender, ) } end |
Instance Attribute Details
#jabber ⇒ Object (readonly)
Direct access to the underlying Jabber::Simple object.
37 38 39 |
# File 'lib/jabber/bot.rb', line 37 def jabber @jabber end |
Instance Method Details
#add_command(command, &callback) ⇒ Object
Add a command to the bot’s repertoire.
Commands consist of a metadata Hash and a callback block. The metadata Hash must contain the command syntax
, a description
for display with the builtin ‘help’ command, and a regular expression (regex
) to detect the presence of the command in an incoming message.
The command parameter(s) will be parsed from group(s) (text between parenthesis) in the regex
. If there’s none, one, or more than one occurrence, the callback block will receive respectively nil, a String, or an Array. e.g. With a command defined like this: /^cmds+(.+)s+(.+)s+(.+)$/, writing “cmd foo bar 42” will send [“foo”, “bar”, “42”] to the callback block.
The metadata Hash may optionally contain an array of command aliases. An alias
consists of an alias syntax
and regex
. Aliases allow the bot to understand command shorthands. For example, the default ‘help’ command has an alias ‘?’. Saying either ‘help’ or ‘?’ will trigger the same command callback block.
The metadata Hash may optionally contain a is_public
flag, indicating the bot should respond to anyone issuing the command, not just the bot master(s). Public commands are only truly public if the bot itself has been made public.
The specified callback block will be triggered when the bot receives a message that matches the given command regex (or an alias regex). The callback block will have access to the sender and the parameter(s) (not including the command itself), and should either return a String response or nil
. If a callback block returns a String response, the response will be delivered to the Jabber id that issued the command.
Examples:
# Say 'puts foo' or 'p foo' and 'foo' will be written to $stdout.
# The bot will also respond with "'foo' written to $stdout."
add_command(
:syntax => 'puts <string>',
:description => 'Write something to $stdout',
:regex => /^puts\s+(.+)$/,
:alias => [ :syntax => 'p <string>', :regex => /^p\s+(.+)$/ ]
) do |sender, |
puts "#{sender} says #{}."
"'#{}' written to $stdout."
end
# 'puts!' is a non-responding version of 'puts', and has two aliases,
# 'p!' and '!'
add_command(
:syntax => 'puts! <string>',
:description => 'Write something to $stdout (without response)',
:regex => /^puts!\s+(.+)$/,
:alias => [
{ :syntax => 'p! <string>', :regex => /^p!\s+(.+)$/ },
{ :syntax => '! <string>', :regex => /^!\s+(.+)$/ }
]
) do |sender, |
puts "#{sender} says #{}."
nil
end
# 'rand' is a public command that produces a random number from 0 to 10
add_command(
:syntax => 'rand',
:description => 'Produce a random number from 0 to 10',
:regex => /^rand$/,
:is_public => true
) { rand(10).to_s }
179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'lib/jabber/bot.rb', line 179 def add_command(command, &callback) name = command_name(command[:syntax]) # Add the command meta - used in the 'help' command response. (name, command) # Add the command spec - used for parsing incoming commands. add_command_spec(command, callback) # Add any command aliases to the command meta and spec unless command[:alias].nil? command[:alias].each { |a| add_command_alias(name, a, callback) } end end |
#connect ⇒ Object
Connect the bot, making it available to accept commands. You can specify a custom startup message with the ‘:startup_message’ configuration setting.
197 198 199 200 201 202 203 204 205 |
# File 'lib/jabber/bot.rb', line 197 def connect @jabber = Jabber::Simple.new(@config[:jabber_id], @config[:password]) presence(@config[:presence], @config[:status], @config[:priority]) deliver(@config[:master], (@config[:startup_message] || "NAME reporting for duty.").gsub("NAME", @config[:name])) start_listener_thread end |
#deliver(to, message) ⇒ Object
Deliver a message to the specified recipient(s). Accepts a single recipient or an Array of recipients.
209 210 211 212 213 214 215 |
# File 'lib/jabber/bot.rb', line 209 def deliver(to, ) if to.is_a?(Array) to.each { |t| @jabber.deliver(t, ) } else @jabber.deliver(to, ) end end |
#disconnect ⇒ Object
Disconnect the bot. Once the bot has been disconnected, there is no way to restart it by issuing a command.
219 220 221 222 223 224 |
# File 'lib/jabber/bot.rb', line 219 def disconnect if @jabber.connected? deliver(@config[:master], "#{@config[:name]} disconnecting...") @jabber.disconnect end end |
#master ⇒ Object
Returns an Array of masters
227 228 229 |
# File 'lib/jabber/bot.rb', line 227 def master @config[:master] end |
#master?(jabber_id) ⇒ Boolean
Returns true
if the given Jabber id is a master, false
otherwise.
232 233 234 |
# File 'lib/jabber/bot.rb', line 232 def master?(jabber_id) @config[:master].include? jabber_id end |
#presence(presence = nil, status = nil, priority = nil) ⇒ Object
Sets the bot presence, status message and priority.
237 238 239 240 241 242 243 244 |
# File 'lib/jabber/bot.rb', line 237 def presence(presence=nil, status=nil, priority=nil) @config[:presence] = presence @config[:status] = status @config[:priority] = priority = Presence.new(presence, status, priority) @jabber.send!() if @jabber.connected? end |
#presence=(presence) ⇒ Object
Sets the bot presence. If you need to set more than just the presence, use presence() instead.
Available values for presence are:
* nil : online
* :chat : free for chat
* :away : away from the computer
* :dnd : do not disturb
* :xa : extended away
257 258 259 |
# File 'lib/jabber/bot.rb', line 257 def presence=(presence) presence(presence, @config[:status], @config[:priority]) end |
#priority=(priority) ⇒ Object
Set the bot priority. Priority is an integer from -127 to 127. If you need to set more than just the priority, use presence() instead.
263 264 265 |
# File 'lib/jabber/bot.rb', line 263 def priority=(priority) presence(@config[:presence], @config[:status], priority) end |
#status=(status) ⇒ Object
Set the status message. A status message is just a String, e.g. ‘I am here.’ or ‘Out to lunch.’ If you need to set more than just the status message, use presence() instead.
270 271 272 |
# File 'lib/jabber/bot.rb', line 270 def status=(status) presence(@config[:presence], status, @config[:priority]) end |