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

Instance Attribute Summary

Attributes inherited from AbstractAdapter

#controller

Instance Method Summary collapse

Methods inherited from AbstractAdapter

#initialize, #params, #request, #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



6
7
8
# File 'lib/authlogic/controller_adapters/rails_adapter.rb', line 6

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


14
15
16
17
# File 'lib/authlogic/controller_adapters/rails_adapter.rb', line 14

def cookie_domain
  @cookie_domain_key ||= (Rails::VERSION::MAJOR >= 2 && Rails::VERSION::MINOR >= 3) ? :domain : :session_domain
  ActionController::Base.session_options[@cookie_domain_key]
end

#cookiesObject



10
11
12
# File 'lib/authlogic/controller_adapters/rails_adapter.rb', line 10

def cookies
  controller.send(:cookies)
end

#request_content_typeObject



19
20
21
# File 'lib/authlogic/controller_adapters/rails_adapter.rb', line 19

def request_content_type
  request.format.to_s
end