Class: User

Inherits:
Object
  • Object
show all
Includes:
DmAdapter, MmAdapter, TcAdapter
Defined in:
lib/models/abstract_user.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from MmAdapter

included

Methods included from TcAdapter

included

Methods included from DmAdapter

included

Constructor Details

#initialize(interfacing_class_instance) ⇒ User

Returns a new instance of User.



26
27
28
# File 'lib/models/abstract_user.rb', line 26

def initialize(interfacing_class_instance)
  @instance = interfacing_class_instance
end

Class Method Details

.authenticate(email, pass) ⇒ Object



34
35
36
37
38
39
# File 'lib/models/abstract_user.rb', line 34

def self.authenticate(email, pass)
  current_user = get(:email => email)
  return nil if current_user.nil?
  return current_user if User.encrypt(pass, current_user.salt) == current_user.hashed_password
  nil
end

Instance Method Details

#idObject



30
31
32
# File 'lib/models/abstract_user.rb', line 30

def id
  @instance.id
end