Module: Dickburt::Server

Extended by:
Logger, Retryable
Defined in:
lib/dickburt/server.rb

Class Method Summary collapse

Methods included from Retryable

retryable

Methods included from Logger

logger

Class Method Details

.run(args = {}) ⇒ Object



7
8
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
# File 'lib/dickburt/server.rb', line 7

def self.run(args={})
  logger.info "boom!"
  EventMachine::run do
    retryable(:tries => 5, :on => Patron::TimeoutError) do
      @campfire = Dickburt::Campfire.new(args)
      puts "="*45
      puts "Connected to #{@campfire.host} with token #{@campfire.token}"
      puts "="*45
      @room = @campfire.rooms.detect{|r| r.name.downcase.gsub(/\s/,'_') == args[:room].downcase.gsub(/\s/,'_')}
      raise Dickburt::Error, "Could not find a campfire room that matches \"#{args[:room]}\"" unless @room
      @room.join
      puts "Ready for messages..."
      puts "="*45
    end
    stream = @room.stream
 
    stream.each_item do |item|
      message = Dickburt::Message.new(item)
      puts message.inspect
      Dickburt::Bot.process(message, @room, @campfire)
    end
 
    stream.on_error do |message|
      puts "ERROR: #{message.inspect}"
    end
 
    stream.on_max_reconnects do |timeout, retries|
      puts "Tried #{retries} times to connect."
      exit
    end
  
    trap("INT") do 
      @room.leave if @room
      EM.stop
    end  
  
  end
end