Module: Authlogic::ORMAdapters::ActiveRecordAdapter::ActsAsAuthentic::Perishability

Defined in:
lib/authlogic/orm_adapters/active_record_adapter/acts_as_authentic/perishability.rb

Overview

Perishable

Handles all logic the deals with maintaining the perishable token. This token should be used to authenticate a user that is not logged in so that they can change their password, confirm their account, etc. Use it for whatever you want, but keep in mind this token is only temporary. Which is perfect for emailing, etc.

Class Methods

  • find_using_{options[:perishable_token_field]}(token, age = {options[:perishable_token_valid_for]}) - returns the record that matches the pased token. The record’s updated at column must not be older than age ago. Lastly, if a blank token is passed no record will be returned.

Instance Methods

  • reset_#{options[:perishable_token_field]} - resets the perishable token field to a friendly unique token.

  • reset_#{options[:perishable_token_field]}! - same as above but saves the record afterwards.

Instance Method Summary collapse

Instance Method Details

#acts_as_authentic_with_perishability(options = {}) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/authlogic/orm_adapters/active_record_adapter/acts_as_authentic/perishability.rb', line 21

def acts_as_authentic_with_perishability(options = {})
  acts_as_authentic_without_perishability(options)
  
  return if options[:perishable_token_field].blank?
  
  class_eval <<-"end_eval", __FILE__, __LINE__
    validates_uniqueness_of :#{options[:perishable_token_field]}, :if => :#{options[:perishable_token_field]}_changed?
    
    before_validation :reset_#{options[:perishable_token_field]}
    
    def self.find_using_#{options[:perishable_token_field]}(token, age = #{options[:perishable_token_valid_for]})
      return if token.blank?
      age = age.to_i
      
      conditions_sql = "#{options[:perishable_token_field]} = ?"
      conditions_subs = [token]
      
      if column_names.include?("updated_at") && age > 0
        conditions_sql += " and updated_at > ?"
        conditions_subs << age.seconds.ago
      end
      
      find(:first, :conditions => [conditions_sql, *conditions_subs])
    end
    
    def reset_#{options[:perishable_token_field]}
      self.#{options[:perishable_token_field]} = self.class.friendly_unique_token
    end
    
    def reset_#{options[:perishable_token_field]}!
      reset_#{options[:perishable_token_field]}
      save_without_session_maintenance(false)
    end
  end_eval
end