Class: ExceptionNotifier::SlackNotifier

Inherits:
Object
  • Object
show all
Includes:
BacktraceCleaner
Defined in:
lib/exception_notifier/slack_notifier.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from BacktraceCleaner

#clean_backtrace

Constructor Details

#initialize(options) ⇒ SlackNotifier

Returns a new instance of SlackNotifier.



7
8
9
10
11
12
13
14
15
16
17
# File 'lib/exception_notifier/slack_notifier.rb', line 7

def initialize(options)
  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

Instance Attribute Details

#notifierObject

Returns the value of attribute notifier.



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

def notifier
  @notifier
end

Instance Method Details

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



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/exception_notifier/slack_notifier.rb', line 19

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)]

  @notifier.ping '', @message_opts.merge(attachments: attchs) if valid?
end