class ExceptionNotifier::SlackNotifier

Attributes

notifier[RW]

Public Class Methods

new(options) click to toggle source
Calls superclass method ExceptionNotifier::BaseNotifier.new
# File lib/exception_notifier/slack_notifier.rb, line 7
def initialize(options)
  super
  begin
    @ignore_data_if = options[:ignore_data_if]

    webhook_url = options.fetch(:webhook_url)
    @message_opts = options.fetch(:additional_parameters, {})
    @notifier = Slack::Notifier.new webhook_url, options
  rescue
    @notifier = nil
  end
end

Public Instance Methods

call(exception, options={}) click to toggle source
# File lib/exception_notifier/slack_notifier.rb, line 20
def call(exception, options={})
  env = options[:env] || {}
  title = "#{env['REQUEST_METHOD']} <#{env['REQUEST_URI']}>"
  data = (env['exception_notifier.exception_data'] || {}).merge(options[:data] || {})
  text = "*An exception occurred while doing*: `#{title}`\n"

  clean_message = exception.message.gsub("`", "'")
  fields = [ { title: 'Exception', value: clean_message} ]

  if exception.backtrace
    formatted_backtrace = "```#{exception.backtrace.first(5).join("\n")}```"
    fields.push({ title: 'Backtrace', value: formatted_backtrace })
  end

  unless data.empty?
    deep_reject(data, @ignore_data_if) if @ignore_data_if.is_a?(Proc)
    data_string = data.map{|k,v| "#{k}: #{v}"}.join("\n")
    fields.push({ title: 'Data', value: "```#{data_string}```" })
  end

  attchs = [color: 'danger', text: text, fields: fields, mrkdwn_in: %w(text fields)]

  if valid?
    send_notice(exception, options, clean_message, @message_opts.merge(attachments: attchs)) do |msg, message_opts| 
      @notifier.ping '', message_opts
    end
  end
end

Protected Instance Methods

deep_reject(hash, block) click to toggle source
# File lib/exception_notifier/slack_notifier.rb, line 55
def deep_reject(hash, block)
  hash.each do |k, v|
    if v.is_a?(Hash)
      deep_reject(v, block)
    end

    if block.call(k, v)
      hash.delete(k)
    end
  end
end
valid?() click to toggle source
# File lib/exception_notifier/slack_notifier.rb, line 51
def valid?
  !@notifier.nil?
end