Class: SlackRubyBot::Commands::Base
- Inherits:
-
Object
- Object
- SlackRubyBot::Commands::Base
show all
- Defined in:
- lib/slack-ruby-bot/commands/base.rb
Class Method Summary
collapse
-
.command(*values, &block) ⇒ Object
-
.default_command_name ⇒ Object
-
.invoke(client, data) ⇒ Object
-
.logger ⇒ Object
-
.match(match, &block) ⇒ Object
-
.operator(*values, &block) ⇒ Object
-
.send_gif(client, channel, keywords, options = {}) ⇒ Object
-
.send_message(client, channel, text, options = {}) ⇒ Object
-
.send_message_with_gif(client, channel, text, keywords, options = {}) ⇒ Object
Class Method Details
.command(*values, &block) ⇒ Object
48
49
50
51
52
53
54
|
# File 'lib/slack-ruby-bot/commands/base.rb', line 48
def self.command(*values, &block)
values.each do |value|
escaped = Regexp.escape(value)
match Regexp.new("^(?<bot>[[:alnum:][:punct:]@<>]*)[\\s]+(?<command>#{escaped})$", Regexp::IGNORECASE), &block
match Regexp.new("^(?<bot>[[:alnum:][:punct:]@<>]*)[\\s]+(?<command>#{escaped})[\\s]+(?<expression>.*)$", Regexp::IGNORECASE), &block
end
end
|
.default_command_name ⇒ Object
38
39
40
|
# File 'lib/slack-ruby-bot/commands/base.rb', line 38
def self.default_command_name
name && name.split(':').last.downcase
end
|
.invoke(client, data) ⇒ Object
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# File 'lib/slack-ruby-bot/commands/base.rb', line 56
def self.invoke(client, data)
self.finalize_routes!
expression, text = parse(client, data)
called = false
routes.each_pair do |route, method|
match = route.match(expression)
match ||= route.match(text) if text
next unless match
next if match.names.include?('bot') && !client.name?(match['bot'])
called = true
if method
method.call(client, data, match)
elsif self.respond_to?(:call)
send(:call, client, data, match)
else
fail NotImplementedError, data.text
end
break
end
called
end
|
.logger ⇒ Object
31
32
33
34
35
36
|
# File 'lib/slack-ruby-bot/commands/base.rb', line 31
def self.logger
@logger ||= begin
$stdout.sync = true
Logger.new(STDOUT)
end
end
|
.match(match, &block) ⇒ Object
78
79
80
81
|
# File 'lib/slack-ruby-bot/commands/base.rb', line 78
def self.match(match, &block)
self.routes ||= {}
self.routes[match] = block
end
|
.operator(*values, &block) ⇒ Object
42
43
44
45
46
|
# File 'lib/slack-ruby-bot/commands/base.rb', line 42
def self.operator(*values, &block)
values.each do |value|
match Regexp.new("^(?<operator>\\#{value})(?<expression>.*)$", Regexp::IGNORECASE), &block
end
end
|
.send_gif(client, channel, keywords, options = {}) ⇒ Object
23
24
25
26
27
28
29
|
# File 'lib/slack-ruby-bot/commands/base.rb', line 23
def self.send_gif(client, channel, keywords, options = {})
get_gif_and_send({
client: client,
channel: channel,
keywords: keywords
}.merge(options))
end
|
.send_message(client, channel, text, options = {}) ⇒ Object
6
7
8
9
10
11
12
|
# File 'lib/slack-ruby-bot/commands/base.rb', line 6
def self.send_message(client, channel, text, options = {})
if text && text.length > 0
send_client_message(client, { channel: channel, text: text }.merge(options))
else
send_message_with_gif client, channel, 'Nothing to see here.', 'nothing', options
end
end
|
.send_message_with_gif(client, channel, text, keywords, options = {}) ⇒ Object
14
15
16
17
18
19
20
21
|
# File 'lib/slack-ruby-bot/commands/base.rb', line 14
def self.send_message_with_gif(client, channel, text, keywords, options = {})
get_gif_and_send({
client: client,
channel: channel,
text: text,
keywords: keywords
}.merge(options))
end
|