Class: SlackRubyBot::Commands::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/slack-ruby-bot/commands/base.rb

Direct Known Subclasses

Bot, Default, Help, Hi, Unknown

Class Method Summary collapse

Class Method Details

.command(*values, &block) ⇒ Object



42
43
44
45
46
47
48
# File 'lib/slack-ruby-bot/commands/base.rb', line 42

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_nameObject



32
33
34
# File 'lib/slack-ruby-bot/commands/base.rb', line 32

def self.default_command_name
  name && name.split(':').last.downcase
end

.invoke(client, data) ⇒ Object



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/slack-ruby-bot/commands/base.rb', line 50

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

.loggerObject



25
26
27
28
29
30
# File 'lib/slack-ruby-bot/commands/base.rb', line 25

def self.logger
  @logger ||= begin
    $stdout.sync = true
    Logger.new(STDOUT)
  end
end

.match(match, &block) ⇒ Object



72
73
74
75
# File 'lib/slack-ruby-bot/commands/base.rb', line 72

def self.match(match, &block)
  self.routes ||= {}
  self.routes[match] = block
end

.operator(*values, &block) ⇒ Object



36
37
38
39
40
# File 'lib/slack-ruby-bot/commands/base.rb', line 36

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



20
21
22
23
# File 'lib/slack-ruby-bot/commands/base.rb', line 20

def self.send_gif(client, channel, keywords, options = {})
  logger.warn '[DEPRECATION] `send_gif` is deprecated.  Please use `client.say` instead.'
  client.say(options.merge(channel: channel, text: '', gif: keywords))
end

.send_message(client, channel, text, options = {}) ⇒ Object



6
7
8
9
10
11
12
13
# File 'lib/slack-ruby-bot/commands/base.rb', line 6

def self.send_message(client, channel, text, options = {})
  logger.warn '[DEPRECATION] `send_message` is deprecated.  Please use `client.say` instead.'
  if text && text.length > 0
    client.say(options.merge(channel: channel, text: text))
  else
    client.say(options.merge(channel: channel, text: 'Nothing to see here.', gif: 'nothing'))
  end
end

.send_message_with_gif(client, channel, text, keywords, options = {}) ⇒ Object



15
16
17
18
# File 'lib/slack-ruby-bot/commands/base.rb', line 15

def self.send_message_with_gif(client, channel, text, keywords, options = {})
  logger.warn '[DEPRECATION] `send_message_with_gif` is deprecated.  Please use `client.say` instead.'
  client.say(options.merge(channel: channel, text: text, gif: keywords))
end