Sha256: 1ceb2f18e9db82a7bf71c089532201b5e572d049dd029df01c3a15d48f2794ca

Contents?: true

Size: 1.91 KB

Versions: 6

Compression:

Stored size: 1.91 KB

Contents

module Bugsnag
  class Rack
    def initialize(app)
      @app = app

      # Configure bugsnag rack defaults
      Bugsnag.configure do |config|
        # Try to set the release_stage automatically if it hasn't already been set
        config.release_stage ||= release_stage

        # Try to set the project_root if it hasn't already been set, or show a warning if we can't
        unless config.project_root && !config.project_root.to_s.empty?
          if defined?(settings)
            config.project_root = settings.root
          else
            Bugsnag.warn("You should set your app's project_root (see https://bugsnag.com/docs/notifiers/ruby#project_root).")
          end
        end

        # Hook up rack-based notification middlewares
        config.middleware.insert_before([Bugsnag::Middleware::Rails3Request,Bugsnag::Middleware::Callbacks], Bugsnag::Middleware::RackRequest) if defined?(::Rack)
        config.middleware.insert_before(Bugsnag::Middleware::Callbacks, Bugsnag::Middleware::WardenUser) if defined?(Warden)
        config.middleware.insert_before(Bugsnag::Middleware::Callbacks, Bugsnag::Middleware::ClearanceUser) if defined?(Clearance)

        Bugsnag.configuration.app_type ||= "rack"
      end
    end

    def call(env)
      # Set the request data for bugsnag middleware to use
      Bugsnag.set_request_data(:rack_env, env)

      begin
        response = @app.call(env)
      rescue Exception => raised
        # Notify bugsnag of rack exceptions
        Bugsnag.auto_notify(raised)

        # Re-raise the exception
        raise
      end

      # Notify bugsnag of rack exceptions
      if env["rack.exception"]
        Bugsnag.auto_notify(env["rack.exception"])
      end

      response
    ensure
      # Clear per-request data after processing the each request
      Bugsnag.clear_request_data
    end

    private

    def release_stage
      ENV["BUGSNAG_RELEASE_STAGE"] || ENV["RACK_ENV"]
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bugsnag-5.3.3 lib/bugsnag/rack.rb
bugsnag-5.3.2 lib/bugsnag/rack.rb
bugsnag-5.3.1 lib/bugsnag/rack.rb
bugsnag-5.3.0 lib/bugsnag/rack.rb
bugsnag-5.2.0 lib/bugsnag/rack.rb
bugsnag-5.1.0 lib/bugsnag/rack.rb