Sha256: e5e519fa22e44314be94f8f101e8919d25565bf452dfd45e6e3a0aab61ed30bb

Contents?: true

Size: 1.29 KB

Versions: 18

Compression:

Stored size: 1.29 KB

Contents

require 'better_errors'

module BetterErrors
  class Middleware
    alias_method :orig_show_error_page, :show_error_page

    private

    def show_error_page(*args)
      exception = @error_page.exception

      env = args.first
      exception_data = nil
      begin
        controller = env['action_controller.instance']
        request_data = controller.rollbar_request_data rescue nil
        person_data = controller.rollbar_person_data rescue nil
        exception_data = Rollbar.report_exception(exception, request_data, person_data)
      rescue => e
        Rollbar.log_warning "[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]
        Rollbar.log_info "[Rollbar] Exception uuid saved in env: #{exception_data[:uuid]}"
      elsif exception_data == 'disabled'
        Rollbar.log_info "[Rollbar] Exception not reported because Rollbar is disabled"
      elsif exception_data == 'ignored'
        Rollbar.log_info "[Rollbar] Exception not reported because it was ignored"
      end

      # now continue as normal
      orig_show_error_page(*args)
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
rollbar-1.2.7 lib/rollbar/better_errors.rb
rollbar-1.2.6 lib/rollbar/better_errors.rb
rollbar-1.2.5 lib/rollbar/better_errors.rb
rollbar-1.2.4 lib/rollbar/better_errors.rb
rollbar-1.2.3 lib/rollbar/better_errors.rb
rollbar-1.2.2 lib/rollbar/better_errors.rb
rollbar-1.2.1 lib/rollbar/better_errors.rb
rollbar-1.2.0 lib/rollbar/better_errors.rb
rollbar-1.1.0 lib/rollbar/better_errors.rb
rollbar-1.0.1 lib/rollbar/better_errors.rb
rollbar-1.0.0 lib/rollbar/better_errors.rb
rollbar-0.13.2 lib/rollbar/better_errors.rb
rollbar-0.13.1 lib/rollbar/better_errors.rb
rollbar-0.13.0 lib/rollbar/better_errors.rb
rollbar-0.12.20 lib/rollbar/better_errors.rb
rollbar-0.12.19 lib/rollbar/better_errors.rb
rollbar-0.12.18 lib/rollbar/better_errors.rb
rollbar-0.12.17 lib/rollbar/better_errors.rb