123456789_123456789_123456789_123456789_123456789_

Module: ActionController::HttpAuthentication::Digest::ControllerMethods

Instance Method Summary

Instance Method Details

#authenticate_or_request_with_http_digest(realm = "Application", message = nil, &password_procedure)

Authenticate using an HTTP Digest, or otherwise render an HTTP header requesting the client to send a Digest.

See ::ActionController::HttpAuthentication::Digest for example usage.

[ GitHub ]

  
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 193

def authenticate_or_request_with_http_digest(realm = "Application", message = nil, &password_procedure)
  authenticate_with_http_digest(realm, &password_procedure) || request_http_digest_authentication(realm, message)
end

#authenticate_with_http_digest(realm = "Application", &password_procedure)

Authenticate using an HTTP Digest. Returns true if authentication is successful, false otherwise.

[ GitHub ]

  
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 199

def authenticate_with_http_digest(realm = "Application", &password_procedure)
  HttpAuthentication::Digest.authenticate(request, realm, &password_procedure)
end

#request_http_digest_authentication(realm = "Application", message = nil)

Render an HTTP header requesting the client to send a Digest for authentication.

[ GitHub ]

  
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 205

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