Class: Authlogic::ControllerAdapters::RailsAdapter

Inherits:
AbstractAdapter show all
Defined in:
lib/authlogic/controller_adapters/rails_adapter.rb

Overview

Adapts authlogic to work with rails. The point is to close the gap between what authlogic expects and what the rails controller object provides. Similar to how ActiveRecord has an adapter for MySQL, PostgreSQL, SQLite, etc.

Defined Under Namespace

Modules: RailsImplementation Classes: AuthlogicLoadedTooLateError

Constant Summary

Constants inherited from AbstractAdapter

AbstractAdapter::E_COOKIE_DOMAIN_ADAPTER

Instance Attribute Summary

Attributes inherited from AbstractAdapter

#controller

Instance Method Summary collapse

Methods inherited from AbstractAdapter

#initialize, #last_request_update_allowed?, #params, #request, #respond_to_missing?, #responds_to_single_access_allowed?, #session, #single_access_allowed?

Constructor Details

This class inherits a constructor from Authlogic::ControllerAdapters::AbstractAdapter

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Authlogic::ControllerAdapters::AbstractAdapter

Instance Method Details

#authenticate_with_http_basic(&block) ⇒ Object



24
25
26
# File 'lib/authlogic/controller_adapters/rails_adapter.rb', line 24

def authenticate_with_http_basic(&block)
  controller.authenticate_with_http_basic(&block)
end


34
35
36
# File 'lib/authlogic/controller_adapters/rails_adapter.rb', line 34

def cookie_domain
  controller.request.session_options[:domain]
end

#cookiesObject

Returns a ‘ActionDispatch::Cookies::CookieJar`. See the AC guide guides.rubyonrails.org/action_controller_overview.html#cookies



30
31
32
# File 'lib/authlogic/controller_adapters/rails_adapter.rb', line 30

def cookies
  controller.send(:cookies)
end

#request_content_typeObject



38
39
40
# File 'lib/authlogic/controller_adapters/rails_adapter.rb', line 38

def request_content_type
  request.format.to_s
end