Namespace
Module
Methods
- authenticate_or_request_with_http_basic
- authenticate_with_http_basic
- http_basic_authenticate_or_request_with
- request_http_basic_authentication
Instance Public methods
authenticate_or_request_with_http_basic(realm = nil, message = nil, &login_procedure)
📝 Source code
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 92
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
🔎 See on GitHub
authenticate_with_http_basic(&login_procedure)
📝 Source code
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 96
def authenticate_with_http_basic(&login_procedure)
HttpAuthentication::Basic.authenticate(request, &login_procedure)
end
🔎 See on GitHub
http_basic_authenticate_or_request_with(name:, password:, realm: nil, message: nil)
📝 Source code
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 83
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|
# This comparison uses & so that it doesn't short circuit and
# uses `secure_compare` so that length information isn't leaked.
ActiveSupport::SecurityUtils.secure_compare(given_name.to_s, name) &
ActiveSupport::SecurityUtils.secure_compare(given_password.to_s, password)
end
end
🔎 See on GitHub
request_http_basic_authentication(realm = "Application", message = nil)
📝 Source code
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 100
def request_http_basic_authentication(realm = "Application", message = nil)
HttpAuthentication::Basic.authentication_request(self, realm, message)
end
🔎 See on GitHub