Class: Slacky::Bot

Inherits:
Object
  • Object
show all
Defined in:
lib/slacky/bot.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(config) ⇒ Bot

Returns a new instance of Bot.



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/slacky/bot.rb', line 9

def initialize(config)
  @config = config
  @command_handlers = []
  @channel_handlers = []
  @im_handlers = []
  @raw_handlers = []
  @cron_handlers = []

  unless @config.slack_api_token
    raise "No Slack API token found.  Use environment variable SLACK_API_TOKEN."
  end

  Slack.configure do |cfg|
    cfg.token = @config.slack_api_token
  end

  Slack::RealTime.configure do |cfg|
    cfg.concurrency = Slack::RealTime::Concurrency::Async
  end

  @client = Slack::RealTime::Client.new

  auth = web_client.auth_test
  @slack_id = auth.user_id
  puts "Slackbot is active!"

  @bookkeeper = Bookkeeper.new @client

  Channel.bot = self
  Message.bot = self

  populate_users
  populate_channels
  stay_alive

  on_command 'blowup', &(method :blowup)
end

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



7
8
9
# File 'lib/slacky/bot.rb', line 7

def client
  @client
end

#configObject (readonly)

Returns the value of attribute config.



7
8
9
# File 'lib/slacky/bot.rb', line 7

def config
  @config
end

#slack_idObject (readonly)

Returns the value of attribute slack_id.



7
8
9
# File 'lib/slacky/bot.rb', line 7

def slack_id
  @slack_id
end

Instance Method Details

#at(cron, &block) ⇒ Object



77
78
79
# File 'lib/slacky/bot.rb', line 77

def at(cron, &block)
  @cron_handlers << { cron: cron, handler: block }
end

#blowup(message) ⇒ Object



223
224
225
226
227
228
# File 'lib/slacky/bot.rb', line 223

def blowup(message)
  message.reply "Tick... tick... tick... BOOM!   Goodbye."
  EM.next_tick do
    raise Exception.new("kablammo!")
  end
end

#handle_channel(message) ⇒ Object



81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/slacky/bot.rb', line 81

def handle_channel(message)
  handled = false

  if message.command?
    @command_handlers.each do |h|
      command, handler = h.values_at :command, :handler
      next unless command == message.command
      handler.call message
      handled = true
    end
  end

  return if handled

  @channel_handlers.each do |h|
    match, channels, handler = h.values_at :match, :channels, :handler
    accept = Channel.find channels
    next if accept && ! accept.include?(message.channel)
    next if match && ! match === message
    handler.call message
  end
end

#handle_im(message) ⇒ Object



104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'lib/slacky/bot.rb', line 104

def handle_im(message)
  unless message.user.slack_im_id == message.channel.slack_id
    message.user.slack_im_id = message.channel.slack_id
    message.user.save
  end

  handled = false

  @command_handlers.each do |h|
    command, handler = h.values_at :command, :handler
    next unless command == message.command
    handler.call message
    handled = true
  end

  return if handled

  @im_handlers.each do |h|
    match, handler = h.values_at :match, :handler
    next if match && ! match === message
    handler.call message
  end
end

#known_commandsObject



55
56
57
# File 'lib/slacky/bot.rb', line 55

def known_commands
  @command_handlers.map { |ch| ch[:command] }
end

#nameObject



51
52
53
# File 'lib/slacky/bot.rb', line 51

def name
  @config.down_name
end

#on(type, &block) ⇒ Object



59
60
61
# File 'lib/slacky/bot.rb', line 59

def on(type, &block)
  @raw_handlers << { type: type, handler: block }
end

#on_command(command, &block) ⇒ Object



63
64
65
# File 'lib/slacky/bot.rb', line 63

def on_command(command, &block)
  @command_handlers << { command: command.downcase, handler: block }
end

#on_im(attrs, &block) ⇒ Object



72
73
74
75
# File 'lib/slacky/bot.rb', line 72

def on_im(attrs, &block)
  attrs ||= {}
  @im_handlers << { match: attrs[:match], handler: block }
end

#on_message(attrs, &block) ⇒ Object



67
68
69
70
# File 'lib/slacky/bot.rb', line 67

def on_message(attrs, &block)
  attrs ||= {}
  @channel_handlers << { match: attrs[:match], channels: attrs[:channels], handler: block }
end

#populate_channelsObject



192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# File 'lib/slacky/bot.rb', line 192

def populate_channels
  print "Getting channels from Slack..."
  resp = web_client.channels_list
  resp.channels.map do |channel|
    Channel.channel channel
  end

  resp = web_client.groups_list
  resp.groups.map do |group|
    Channel.group group
  end
  puts " done!"
rescue => e
  puts " error: #{e.message}"
  raise e
end

#populate_usersObject



171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# File 'lib/slacky/bot.rb', line 171

def populate_users
  print "Getting users from Slack..."
  resp = web_client.users_list
  User.invalidate_all_users
  whitelist = @config.whitelist_users || []
  resp.members.map do |member|
    next unless member.profile.email # no bots
    next if member.deleted # no ghosts
    unless whitelist.include?(member.id) || whitelist.include?(member.name) || whitelist.include?("@#{member.name}")
      next if member.is_ultra_restricted # no single channel guests
      next if member.is_restricted # no multi channel guests either
    end
    user = User.find(member.id) || User.new(slack_id: member.id)
    user.populate(member).validate.save
  end
  puts " done!"
rescue => e
  puts " error: #{e.message}"
  raise e
end

#runObject



128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# File 'lib/slacky/bot.rb', line 128

def run
  @bookkeeper.keep_the_books

  @client.on :message do |data|
    next unless ( user = User.find data.user )
    next unless user.valid?

    channel = Channel.find data.channel
    channel = Channel.im data.channel, user if data.channel =~ /^D/ && ! channel
    next unless channel

    reject = Channel.find @config.slack_reject_channels
    next if reject && reject.find { |c| c.slack_id == data.channel }

    accept = Channel.find @config.slack_accept_channels
    next if accept && ! accept.find { |c| c.slack_id == data.channel }

    message = Message.new(user, channel, data)
    handle_channel message if [ :group, :channel ].include? channel.type
    handle_im      message if [ :im              ].include? channel.type
  end

  @raw_handlers.each do |h|
    type, handler = h.values_at :type, :handler
    @client.on type do |data|
      handler.call data
    end
  end

  puts "#{@config.name} is listening to: #{@config.slack_accept_channels}"

  Thread.report_on_exception = false if defined? Thread.report_on_exception

  @client.start! do |driver|
    @cron_handlers.each do |h|
      cron, handler = h.values_at :cron, :handler
      Cronner.schedule cron do |time|
        handler.call
      end
    end
  end
end

#stay_aliveObject



209
210
211
212
213
214
215
216
217
218
219
220
221
# File 'lib/slacky/bot.rb', line 209

def stay_alive
  at '* * * * *' do
    @client.ping stamp: Time.now.to_f
  end

  on :pong do |data|
    if data.stamp
      now = Time.now.to_f
      delta = now - data.stamp
      raise Exception.new("Slow ping pong response: #{delta}s") if delta > 5
    end
  end
end

#web_clientObject



47
48
49
# File 'lib/slacky/bot.rb', line 47

def web_client
  @client.web_client
end