Sha256: 7520de755d45b009e1e5435be6ea62eb776a2d9fcc5d0afc4d0abebc7251b6dd
Contents?: true
Size: 1.39 KB
Versions: 4
Compression:
Stored size: 1.39 KB
Contents
module Authlogic module ControllerAdapters # :nodoc: # = Abstract Adapter # # Allows you to use Authlogic in any framework you want, not just rails. See the RailsAdapter or MerbAdapter for an example of how to adapt Authlogic to work with your framework. class AbstractAdapter attr_accessor :controller def initialize(controller) self.controller = controller end def authenticate_with_http_basic(&block) @auth = Rack::Auth::Basic::Request.new(controller.request.env) if @auth.provided? and @auth.basic? block.call(*@auth.credentials) else false end end def cookies controller.cookies end def cookie_domain raise NotImplementedError.new("The cookie_domain method has not been implemented by the controller adapter") end def params controller.params end def request controller.request end def request_content_type request.content_type end def session controller.session end def single_access_allowed? controller.respond_to?(:single_access_allowed?, true) && controller.send(:single_access_allowed?) end private def method_missing(id, *args, &block) controller.send(id, *args, &block) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems