Sha256: 2e0058f264ec0bcd9ad4f87cdb672e7f6cf76c0bc81bd26b84fb83249cfd05e8

Contents?: true

Size: 1.12 KB

Versions: 4

Compression:

Stored size: 1.12 KB

Contents

module Authgasm
  module ControllerAdapters
    # = Rails Adapter
    # Adapts authgasm to work with rails. The point is to close the gap between what authgasm expects and what the rails controller object
    # provides. Similar to how ActiveRecord has an adapter for MySQL, PostgreSQL, SQLite, etc.
    class RailsAdapter < AbstractAdapter
      def authenticate_with_http_basic(*args, &block)
        controller.authenticate_with_http_basic(*args, &block)
      end
      
      def cookies
        controller.send(:cookies)
      end
      
      def request
        controller.request
      end
      
      def session
        controller.session
      end
    end
    
    # = Rails Implementation
    # Lets Authgasm know about the controller object, AKA "activates" authgasm.
    module RailsImplementation
      def self.included(klass) # :nodoc:
        klass.prepend_before_filter :set_controller
      end

      private
        def set_controller
          Authgasm::Session::Base.controller = RailsAdapter.new(self)
        end
    end
  end
end

ActionController::Base.send(:include, Authgasm::ControllerAdapters::RailsImplementation)

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
authgasm-0.10.0 lib/authgasm/controller_adapters/rails_adapter.rb
authgasm-0.10.1 lib/authgasm/controller_adapters/rails_adapter.rb
authgasm-0.10.2 lib/authgasm/controller_adapters/rails_adapter.rb
authgasm-0.10.3 lib/authgasm/controller_adapters/rails_adapter.rb