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