Class: Airbrake::UserInformer
- Inherits:
-
Object
- Object
- Airbrake::UserInformer
- Defined in:
- lib/airbrake/user_informer.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app) ⇒ UserInformer
constructor
A new instance of UserInformer.
- #replacement(with) ⇒ Object
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
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/airbrake/user_informer.rb', line 11 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.sum(&:length).to_s body = new_body end [status, headers, body] 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 |