Sha256: ea930971d56df15d416d80a93a2dc691bce338a82dee38bd17e9c3b45df9da35

Contents?: true

Size: 927 Bytes

Versions: 119

Compression:

Stored size: 927 Bytes

Contents

require 'webmachine/resource/authentication'

module PactBroker
  module Api
    module Resources
      module Authentication

        include Webmachine::Resource::Authentication

        def authenticated? resource, authorization_header
          return true unless PactBroker.configuration.authentication_configured?

          if PactBroker.configuration.authenticate
            authorized = PactBroker.configuration.authenticate.call(resource, authorization_header, {})
            return true if authorized
          end

          if PactBroker.configuration.authenticate_with_basic_auth
            basic_auth(authorization_header, "Pact Broker") do |username, password|
              authorized = PactBroker.configuration.authenticate_with_basic_auth.call(resource, username, password, {})
              return true if authorized
            end
          end

          false
        end
      end
    end
  end
end

Version data entries

119 entries across 119 versions & 1 rubygems

Version Path
pact_broker-2.79.1 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.79.0 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.78.1 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.78.0 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.77.0 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.76.2 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.76.1 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.76.0 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.75.0 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.74.1 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.74.0 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.73.0 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.72.0 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.71.0 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.70.0 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.69.0 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.68.1 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.68.0 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.67.0 lib/pact_broker/api/resources/authentication.rb
pact_broker-2.66.0 lib/pact_broker/api/resources/authentication.rb