2014-01-10 16:35:58 +01:00
|
|
|
require 'digest/md5'
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
# Moderators, but using a failed pwd mechanism
|
|
|
|
# TODO, migrate to full active_admin
|
2013-11-14 10:54:09 +01:00
|
|
|
class User < ActiveRecord::Base
|
2014-01-10 16:35:58 +01:00
|
|
|
# Include default devise modules. Others available are:
|
|
|
|
# :confirmable, :lockable, :timeoutable and :omniauthable
|
|
|
|
devise :database_authenticatable, authentication_keys: [:login]
|
2014-08-06 14:47:47 +02:00
|
|
|
# :registerable, :validatable
|
2014-01-10 16:35:58 +01:00
|
|
|
|
2014-01-06 11:22:39 +01:00
|
|
|
has_many :notes
|
2014-01-10 16:35:58 +01:00
|
|
|
|
2014-09-03 02:14:21 +02:00
|
|
|
validates :login, presence: true
|
|
|
|
|
2014-01-10 16:35:58 +01:00
|
|
|
def encrypted_password=(pass)
|
2014-08-06 14:47:47 +02:00
|
|
|
self[:password] = pass
|
2014-01-10 16:35:58 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def encrypted_password
|
2014-08-06 14:47:47 +02:00
|
|
|
self[:password]
|
2014-01-10 16:35:58 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.find_first_by_auth_conditions(warden_conditions)
|
|
|
|
conditions = warden_conditions.dup
|
2014-08-06 14:47:47 +02:00
|
|
|
login = conditions.delete(:login)
|
|
|
|
if login.present?
|
2015-04-18 17:24:15 +02:00
|
|
|
where(conditions).find_by_login login
|
2014-01-10 16:35:58 +01:00
|
|
|
else
|
2015-04-18 17:24:15 +02:00
|
|
|
find_first(conditions)
|
2014-01-10 16:35:58 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid_password?(password)
|
|
|
|
encrypted_password == password_digest(password)
|
|
|
|
end
|
|
|
|
|
2014-06-09 12:18:40 +02:00
|
|
|
def to_s
|
|
|
|
"#{firstname} #{lastname}"
|
|
|
|
end
|
|
|
|
|
2014-01-10 16:35:58 +01:00
|
|
|
protected
|
2014-08-06 14:47:47 +02:00
|
|
|
|
|
|
|
def password_digest(password)
|
|
|
|
Digest::MD5.hexdigest password
|
|
|
|
end
|
2013-11-14 10:54:09 +01:00
|
|
|
end
|