demarches-normaliennes/app/models/administrateur.rb

88 lines
2.5 KiB
Ruby
Raw Normal View History

2018-03-06 13:44:29 +01:00
class Administrateur < ApplicationRecord
2019-09-17 10:16:52 +02:00
self.ignored_columns = ['features', 'encrypted_password', 'reset_password_token', 'reset_password_sent_at', 'remember_created_at', 'sign_in_count', 'current_sign_in_at', 'last_sign_in_at', 'current_sign_in_ip', 'last_sign_in_ip', 'failed_attempts', 'unlock_token', 'locked_at']
include EmailSanitizableConcern
include ActiveRecord::SecureToken
has_and_belongs_to_many :instructeurs
has_many :administrateurs_procedures
has_many :procedures, through: :administrateurs_procedures
2018-04-17 16:11:49 +02:00
has_many :services
has_many :dossiers, -> { state_not_brouillon }, through: :procedures
2015-12-14 17:28:36 +01:00
has_one :user, dependent: :nullify
2019-08-09 09:45:11 +02:00
before_validation -> { sanitize_email(:email) }
2017-02-07 16:56:21 +01:00
scope :inactive, -> { joins(:user).where(users: { last_sign_in_at: nil }) }
2019-03-12 15:34:30 +01:00
scope :with_publiees_ou_archivees, -> { joins(:procedures).where(procedures: { aasm_state: [:publiee, :archivee] }) }
# validate :password_complexity, if: Proc.new { |a| Devise.password_length.include?(a.password.try(:size)) }
def password_complexity
if password.present? && ZxcvbnService.new(password).score < PASSWORD_COMPLEXITY_FOR_ADMIN
errors.add(:password, :not_strong)
end
end
def self.find_inactive_by_token(reset_password_token)
self.inactive.with_reset_password_token(reset_password_token)
end
def self.find_inactive_by_id(id)
self.inactive.find(id)
end
2015-12-14 17:28:36 +01:00
def renew_api_token
api_token = Administrateur.generate_unique_secure_token
encrypted_token = BCrypt::Password.create(api_token)
update(encrypted_token: encrypted_token)
api_token
2015-12-14 17:28:36 +01:00
end
def valid_api_token?(api_token)
BCrypt::Password.new(encrypted_token) == api_token
rescue BCrypt::Errors::InvalidHash
false
end
def registration_state
if active?
'Actif'
2019-08-19 09:48:55 +02:00
elsif user.reset_password_period_valid?
'En attente'
else
'Expiré'
end
end
def invitation_expired?
2019-10-24 11:21:12 +02:00
!active? && !user.reset_password_period_valid?
end
def self.reset_password(reset_password_token, password)
administrateur = self.reset_password_by_token({
password: password,
password_confirmation: password,
reset_password_token: reset_password_token
})
administrateur
end
2018-05-17 15:39:37 +02:00
def owns?(procedure)
procedure.administrateurs.include?(self)
2018-05-17 15:39:37 +02:00
end
def instructeur
user.instructeur
end
def can_be_deleted?
dossiers.state_instruction_commencee.none? && procedures.none?
end
2019-10-24 11:21:12 +02:00
def active?
user.last_sign_in_at.present?
end
end