Module: ActionController::HttpAuthentication::Basic::ControllerMethods

Extended by:
ActiveSupport::Concern
Defined in:
lib/action_controller/metal/http_authentication.rb

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#authenticate_or_request_with_http_basic(realm = "Application", message = nil, &login_procedure) ⇒ Object



82
83
84
# File 'lib/action_controller/metal/http_authentication.rb', line 82

def authenticate_or_request_with_http_basic(realm = "Application", message = nil, &)
  authenticate_with_http_basic(&) || request_http_basic_authentication(realm, message)
end

#authenticate_with_http_basic(&login_procedure) ⇒ Object



86
87
88
# File 'lib/action_controller/metal/http_authentication.rb', line 86

def authenticate_with_http_basic(&)
  HttpAuthentication::Basic.authenticate(request, &)
end

#request_http_basic_authentication(realm = "Application", message = nil) ⇒ Object



90
91
92
# File 'lib/action_controller/metal/http_authentication.rb', line 90

def request_http_basic_authentication(realm = "Application", message = nil)
  HttpAuthentication::Basic.authentication_request(self, realm, message)
end