Sha256: b54177e5859996bca873d70fea7f009c48c93cc80c210dccb4df5c5ab54b96d8

Contents?: true

Size: 1.26 KB

Versions: 9

Compression:

Stored size: 1.26 KB

Contents

require 'better_errors'

module BetterErrors
  class Middleware
    alias_method :orig_show_error_page, :show_error_page
    
    private

    def show_error_page(env)
      exception = @error_page.exception
      
      exception_data = nil
      begin
        controller = env['action_controller.instance']
        request_data = controller.try(:rollbar_request_data)
        person_data = controller.try(:rollbar_person_data)
        exception_data = Rollbar.report_exception(exception, request_data, person_data)
      rescue => e
        # TODO use logger here?
        puts "[Rollbar] Exception while reporting exception to Rollbar: #{e}" 
      end
      
      # if an exception was reported, save uuid in the env
      # so it can be displayed to the user on the error page
      if exception_data.is_a?(Hash)
        env['rollbar.exception_uuid'] = exception_data[:uuid]
        puts "[Rollbar] Exception uuid saved in env: #{exception_data[:uuid]}"
      elsif exception_data == 'disabled'
        puts "[Rollbar] Exception not reported because Rollbar is disabled"
      elsif exception_data == 'ignored'
        puts "[Rollbar] Exception not reported because it was ignored"
      end
      
      # now continue as normal
      orig_show_error_page(env)
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rollbar-0.10.12 lib/rollbar/better_errors.rb
rollbar-0.10.11 lib/rollbar/better_errors.rb
rollbar-0.10.10 lib/rollbar/better_errors.rb
rollbar-0.10.9 lib/rollbar/better_errors.rb
rollbar-0.10.8 lib/rollbar/better_errors.rb
rollbar-0.10.7 lib/rollbar/better_errors.rb
rollbar-0.10.6 lib/rollbar/better_errors.rb
rollbar-0.10.5 lib/rollbar/better_errors.rb
rollbar-0.10.4 lib/rollbar/better_errors.rb