Module: PactBroker::Api::Resources::Authentication

Includes:
Webmachine::Resource::Authentication
Included in:
BaseResource, Diagnostic::Resources::BaseResource, Rack::PactBroker::UIAuthentication
Defined in:
lib/pact_broker/api/resources/authentication.rb

Instance Method Summary collapse

Instance Method Details

#authenticated?(resource, authorization_header) ⇒ Boolean

Returns:

  • (Boolean)


10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/pact_broker/api/resources/authentication.rb', line 10

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