Sha256: 565cee4e6f8052403db1e769de58c15029782dc192d95a300f1d12de056c9a50

Contents?: true

Size: 1.59 KB

Versions: 2

Compression:

Stored size: 1.59 KB

Contents

module ExceptionNotifier
  class HipchatNotifier < BaseNotifier

    attr_accessor :from
    attr_accessor :room
    attr_accessor :message_options

    def initialize(options)
      super
      begin
        api_token         = options.delete(:api_token)
        room_name         = options.delete(:room_name)
        opts              = {
                              :api_version => options.delete(:api_version) || 'v1'
                            }
        opts[:server_url] = options.delete(:server_url) if options[:server_url]
        @from             = options.delete(:from) || 'Exception'
        @room             = HipChat::Client.new(api_token, opts)[room_name]
        @message_template = options.delete(:message_template) || ->(exception, errors_count) {
          msg = if errors_count > 1
            "The exception occurred #{errors_count} times: '#{Rack::Utils.escape_html(exception.message)}'"
          else
            "A new exception occurred: '#{Rack::Utils.escape_html(exception.message)}'"
          end
          msg += " on '#{exception.backtrace.first}'" if exception.backtrace
          msg
        }
        @message_options  = options
        @message_options[:color] ||= 'red'
      rescue
        @room = nil
      end
    end

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

      message = @message_template.call(exception, options[:accumulated_errors_count].to_i)
      send_notice(exception, options, message, @message_options) do |msg, message_opts|
        @room.send(@from, msg, message_opts)
      end
    end

    private

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
exception_notification-4.3.0 lib/exception_notifier/hipchat_notifier.rb
exception_notification-4.2.2 lib/exception_notifier/hipchat_notifier.rb