Class: ExceptionNotifier::CampfireNotifier

Inherits:
BaseNotifier show all
Defined in:
lib/exception_notifier/campfire_notifier.rb

Instance Attribute Summary collapse

Attributes inherited from BaseNotifier

#base_options

Instance Method Summary collapse

Methods inherited from BaseNotifier

#_post_callback, #_pre_callback, #send_notice

Constructor Details

#initialize(options) ⇒ CampfireNotifier

Returns a new instance of CampfireNotifier.



9
10
11
12
13
14
15
16
17
18
19
# File 'lib/exception_notifier/campfire_notifier.rb', line 9

def initialize(options)
  super
  begin
    subdomain = options.delete(:subdomain)
    room_name = options.delete(:room_name)
    @campfire = Tinder::Campfire.new subdomain, options
    @room     = @campfire.find_room_by_name room_name
  rescue StandardError
    @campfire = @room = nil
  end
end

Instance Attribute Details

#roomObject

Returns the value of attribute room.



7
8
9
# File 'lib/exception_notifier/campfire_notifier.rb', line 7

def room
  @room
end

#subdomainObject

Returns the value of attribute subdomain.



5
6
7
# File 'lib/exception_notifier/campfire_notifier.rb', line 5

def subdomain
  @subdomain
end

#tokenObject

Returns the value of attribute token.



6
7
8
# File 'lib/exception_notifier/campfire_notifier.rb', line 6

def token
  @token
end

Instance Method Details

#call(exception, options = {}) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/exception_notifier/campfire_notifier.rb', line 21

def call(exception, options = {})
  return unless active?

  message = if options[:accumulated_errors_count].to_i > 1
              "The exception occurred #{options[:accumulated_errors_count]} times: '#{exception.message}'"
            else
              "A new exception occurred: '#{exception.message}'"
            end
  message += " on '#{exception.backtrace.first}'" if exception.backtrace
  send_notice(exception, options, message) do |msg, _|
    @room.paste msg
  end
end