Namespace
Methods
A
H
R
Instance Public methods
authenticate_or_request_with_http_basic(realm = nil, message = nil, &login_procedure)
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 84
def authenticate_or_request_with_http_basic(realm = nil, message = nil, &login_procedure)
  authenticate_with_http_basic(&login_procedure) || request_http_basic_authentication(realm || "Application", message)
end
authenticate_with_http_basic(&login_procedure)
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 88
def authenticate_with_http_basic(&login_procedure)
  HttpAuthentication::Basic.authenticate(request, &login_procedure)
end
http_basic_authenticate_or_request_with(name:, password:, realm: nil, message: nil)
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 77
def http_basic_authenticate_or_request_with(name:, password:, realm: nil, message: nil)
  authenticate_or_request_with_http_basic(realm, message) do |given_name, given_password|
    ActiveSupport::SecurityUtils.secure_compare(given_name, name) &
      ActiveSupport::SecurityUtils.secure_compare(given_password, password)
  end
end
request_http_basic_authentication(realm = "Application", message = nil)
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 92
def request_http_basic_authentication(realm = "Application", message = nil)
  HttpAuthentication::Basic.authentication_request(self, realm, message)
end