Class: Airbrake::UserInformer

Inherits:
Object
  • Object
show all
Defined in:
lib/airbrake/user_informer.rb

Instance Method Summary collapse

Constructor Details

#initialize(app) ⇒ UserInformer

Returns a new instance of UserInformer.



3
4
5
# File 'lib/airbrake/user_informer.rb', line 3

def initialize(app)
  @app = app
end

Instance Method Details

#_call(env) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/airbrake/user_informer.rb', line 15

def _call(env)
  status, headers, body = @app.call(env)

  if env['airbrake.error_id'] && Airbrake.configuration.user_information
    new_body = []
    replace  = replacement(env['airbrake.error_id'])
    body.each do |chunk|
      new_body << chunk.gsub("<!-- AIRBRAKE ERROR -->", replace)
    end
    body.close if body.respond_to?(:close)
    headers['Content-Length'] = new_body.inject(0){|sum, x| sum + x.bytesize}.to_s
    body = new_body
  end

  [status, headers, body]

ensure
  body.close if body && body.respond_to?(:close) && $!
end

#call(env) ⇒ Object



11
12
13
# File 'lib/airbrake/user_informer.rb', line 11

def call(env)
  dup._call(env)
end

#replacement(with) ⇒ Object



7
8
9
# File 'lib/airbrake/user_informer.rb', line 7

def replacement(with)
  Airbrake.configuration.user_information.gsub(/\{\{\s*error_id\s*\}\}/, with.to_s)
end