module AuthlogicConnect::Oauth # This module is responsible for adding oauth # to the Authlogic::Session::Base class. module Session def self.included(base) base.class_eval do include InstanceMethods end end module InstanceMethods include Process def self.included(klass) klass.class_eval do validate :validate_by_oauth, :if => :authenticating_with_oauth? end end # Hooks into credentials so that you can pass a user who has already has an oauth access token. def credentials=(value) super values = value.is_a?(Array) ? value : [value] hash = values.first.is_a?(Hash) ? values.first.with_indifferent_access : nil self.record = hash[:priority_record] if !hash.nil? && hash.key?(:priority_record) end def record=(record) @record = record end private # Clears out the block if we are authenticating with oauth, # so that we can redirect without a DoubleRender error. def save_with_oauth(&block) block = nil if redirecting_to_oauth_server? return block.nil? end def complete_oauth_transaction if @record self.attempted_record = record else # this generated token is always the same for a user! # this is searching with User.find ... # attempted_record is part of AuthLogic hash = oauth_token_and_secret token = token_class.find_by_key_or_token(hash[:key], hash[:token], :include => [:user]) # some weird error if I leave out the include) self.attempted_record = token.user end if !attempted_record errors.add_to_base("Could not find user in our database, have you registered with your oauth account?") end end end end end