Sha256: 4b5f92df36bfee630978d0ba2549a694bbd72bf47c2fcbf642ae7e895e14b39a

Contents?: true

Size: 973 Bytes

Versions: 1

Compression:

Stored size: 973 Bytes

Contents

module ExceptionNotifier
  class HipchatNotifier

    attr_accessor :from
    attr_accessor :room
    attr_accessor :message_options

    def initialize(options)
      begin
        api_token         = options.delete(:api_token)
        room_name         = options.delete(:room_name)
        @from             = options.delete(:from) || 'Exception'
        @room             = HipChat::Client.new(api_token)[room_name]
        @message_template = options.delete(:message_template) || ->(exception) {
          "A new exception occurred: '#{exception.message}' on '#{exception.backtrace.first}'"
        }
        @message_options  = options
        @message_options[:color] ||= 'red'
      rescue
        @room = nil
      end
    end

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

      message = @message_template.call(exception)
      @room.send(@from, message, @message_options)
    end

    private

    def active?
      !@room.nil?
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
exception_notification-4.1.0.rc1 lib/exception_notifier/hipchat_notifier.rb