2019-01-14 12:57:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# User is a physical or moral person with its authentication parameters
|
2020-03-30 11:33:12 +02:00
|
|
|
# It is linked to the Profile model with hold information about this person (like address, name, etc.)
|
2020-03-25 10:16:47 +01:00
|
|
|
class User < ApplicationRecord
|
2023-01-27 13:53:23 +01:00
|
|
|
include NotificationAttachedObject
|
2022-04-20 14:12:22 +02:00
|
|
|
include SingleSignOnConcern
|
2022-12-06 16:08:38 +01:00
|
|
|
include UserRoleConcern
|
|
|
|
include UserRessourcesConcern
|
2015-05-05 03:10:25 +02:00
|
|
|
# Include default devise modules. Others available are:
|
2019-01-14 12:57:31 +01:00
|
|
|
# :lockable, :timeoutable and :omniauthable
|
2018-12-03 15:10:04 +01:00
|
|
|
devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable,
|
2019-03-25 14:57:48 +01:00
|
|
|
:confirmable
|
2020-05-19 11:45:51 +02:00
|
|
|
rolify
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
extend FriendlyId
|
|
|
|
friendly_id :username, use: :slugged
|
|
|
|
|
|
|
|
has_one :profile, dependent: :destroy
|
|
|
|
accepts_nested_attributes_for :profile
|
|
|
|
|
2019-05-22 17:49:22 +02:00
|
|
|
has_one :invoicing_profile, dependent: :nullify
|
2019-05-29 14:28:14 +02:00
|
|
|
accepts_nested_attributes_for :invoicing_profile
|
2019-05-22 17:49:22 +02:00
|
|
|
|
2019-06-03 17:25:04 +02:00
|
|
|
has_one :statistic_profile, dependent: :nullify
|
|
|
|
accepts_nested_attributes_for :statistic_profile
|
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
has_many :project_users, dependent: :destroy
|
|
|
|
has_many :projects, through: :project_users
|
|
|
|
|
|
|
|
belongs_to :group
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
has_many :users_credits, dependent: :destroy
|
|
|
|
has_many :credits, through: :users_credits
|
|
|
|
|
|
|
|
has_many :training_credits, through: :users_credits, source: :training_credit
|
|
|
|
has_many :machine_credits, through: :users_credits, source: :machine_credit
|
|
|
|
|
|
|
|
has_many :user_tags, dependent: :destroy
|
|
|
|
has_many :tags, through: :user_tags
|
|
|
|
accepts_nested_attributes_for :tags, allow_destroy: true
|
|
|
|
|
2016-07-27 11:28:54 +02:00
|
|
|
has_many :exports, dependent: :destroy
|
2019-09-25 16:37:42 +02:00
|
|
|
has_many :imports, dependent: :nullify
|
2016-07-27 11:28:54 +02:00
|
|
|
|
2022-10-24 17:39:16 +02:00
|
|
|
has_one :payment_gateway_object, as: :item, dependent: :nullify
|
2021-04-23 17:54:59 +02:00
|
|
|
|
2022-10-24 17:39:16 +02:00
|
|
|
has_many :accounting_periods, foreign_key: 'closed_by', dependent: :nullify, inverse_of: :user
|
2022-03-16 17:10:27 +01:00
|
|
|
|
2022-03-18 19:44:30 +01:00
|
|
|
has_many :proof_of_identity_files, dependent: :destroy
|
|
|
|
has_many :proof_of_identity_refusals, dependent: :destroy
|
|
|
|
|
2023-01-27 13:53:23 +01:00
|
|
|
has_many :notifications, as: :receiver, dependent: :destroy
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
# fix for create admin user
|
|
|
|
before_save do
|
2018-12-03 15:10:04 +01:00
|
|
|
email&.downcase!
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
before_create :assign_default_role
|
2019-06-04 16:50:23 +02:00
|
|
|
after_create :init_dependencies
|
2019-06-05 12:11:51 +02:00
|
|
|
after_update :update_invoicing_profile, if: :invoicing_data_was_modified?
|
|
|
|
after_update :update_statistic_profile, if: :statistic_data_was_modified?
|
2019-06-12 12:22:38 +02:00
|
|
|
before_destroy :remove_orphan_drafts
|
2022-10-24 17:39:16 +02:00
|
|
|
after_commit :create_gateway_customer, on: [:create]
|
|
|
|
after_commit :notify_admin_when_user_is_created, on: :create
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
attr_accessor :cgu
|
2022-10-24 17:39:16 +02:00
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
delegate :first_name, to: :profile
|
|
|
|
delegate :last_name, to: :profile
|
2019-06-04 16:50:23 +02:00
|
|
|
delegate :subscriptions, to: :statistic_profile
|
|
|
|
delegate :reservations, to: :statistic_profile
|
2019-06-06 12:00:21 +02:00
|
|
|
delegate :trainings, to: :statistic_profile
|
2019-06-06 16:34:53 +02:00
|
|
|
delegate :my_projects, to: :statistic_profile
|
2021-06-21 17:39:48 +02:00
|
|
|
delegate :prepaid_packs, to: :statistic_profile
|
2019-06-04 16:50:23 +02:00
|
|
|
delegate :wallet, to: :invoicing_profile
|
|
|
|
delegate :wallet_transactions, to: :invoicing_profile
|
|
|
|
delegate :invoices, to: :invoicing_profile
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
validate :cgu_must_accept, if: :new_record?
|
|
|
|
|
|
|
|
validates :username, presence: true, uniqueness: true, length: { maximum: 30 }
|
2022-07-29 17:37:42 +02:00
|
|
|
validate :password_complexity
|
2015-05-05 03:10:25 +02:00
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
scope :active, -> { where(is_active: true) }
|
2019-06-04 16:50:23 +02:00
|
|
|
scope :without_subscription, -> { includes(statistic_profile: [:subscriptions]).where(subscriptions: { statistic_profile_id: nil }) }
|
|
|
|
scope :with_subscription, -> { joins(statistic_profile: [:subscriptions]) }
|
2019-12-20 15:47:42 +01:00
|
|
|
scope :not_confirmed, -> { where(confirmed_at: nil) }
|
2020-01-07 10:44:29 +01:00
|
|
|
scope :inactive_for_3_years, -> { where('users.last_sign_in_at < ?', 3.years.ago) }
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2019-01-14 12:57:31 +01:00
|
|
|
def to_json(*)
|
2018-07-04 14:05:44 +02:00
|
|
|
ApplicationController.new.view_context.render(
|
2018-12-03 15:10:04 +01:00
|
|
|
partial: 'api/members/member',
|
|
|
|
locals: { member: self },
|
|
|
|
formats: [:json],
|
|
|
|
handlers: [:jbuilder]
|
2018-07-04 14:05:44 +02:00
|
|
|
)
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
|
|
|
|
2019-06-12 12:22:38 +02:00
|
|
|
def generate_subscription_invoice(operator_profile_id)
|
2018-12-03 15:10:04 +01:00
|
|
|
return unless subscription
|
|
|
|
|
2019-06-12 12:22:38 +02:00
|
|
|
subscription.generate_and_save_invoice(operator_profile_id)
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def active_for_authentication?
|
2018-12-03 15:10:04 +01:00
|
|
|
super && is_active?
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def need_completion?
|
2019-06-04 13:33:00 +02:00
|
|
|
statistic_profile.gender.nil? || profile.first_name.blank? || profile.last_name.blank? || username.blank? ||
|
2019-11-19 11:44:32 +01:00
|
|
|
email.blank? || encrypted_password.blank? || group_id.nil? || statistic_profile.birthday.blank? ||
|
2021-03-22 18:02:56 +01:00
|
|
|
(Setting.get('phone_required') && profile.phone.blank?) ||
|
|
|
|
(Setting.get('address_required') && invoicing_profile.address&.address&.blank?)
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
2016-09-14 16:41:45 +02:00
|
|
|
def self.mapping
|
|
|
|
# we protect some fields as they are designed to be managed by the system and must not be updated externally
|
2018-12-03 15:10:04 +01:00
|
|
|
blacklist = %w[id 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 confirmation_token
|
|
|
|
confirmed_at confirmation_sent_at unconfirmed_email failed_attempts unlock_token locked_at created_at
|
2021-04-23 17:54:59 +02:00
|
|
|
updated_at slug provider auth_token merged_at]
|
2020-03-30 16:17:32 +02:00
|
|
|
User.columns_hash
|
2018-12-03 15:10:04 +01:00
|
|
|
.map { |k, v| [k, v.type.to_s] }
|
2016-09-14 16:41:45 +02:00
|
|
|
.delete_if { |col| blacklist.include?(col[0]) }
|
|
|
|
end
|
|
|
|
|
2020-05-19 11:45:51 +02:00
|
|
|
# will update the statistic_profile after a group switch or a role update
|
|
|
|
def update_statistic_profile
|
|
|
|
raise NoProfileError if statistic_profile.nil? || statistic_profile.id.nil?
|
|
|
|
|
2022-10-24 17:39:16 +02:00
|
|
|
statistic_profile.update(
|
2020-05-19 11:45:51 +02:00
|
|
|
group_id: group_id,
|
|
|
|
role_id: roles.first.id
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2021-04-13 17:16:05 +02:00
|
|
|
def organization?
|
|
|
|
!invoicing_profile.organization.nil?
|
|
|
|
end
|
|
|
|
|
2022-03-18 19:44:30 +01:00
|
|
|
def notify_group_changed(ex_group, user_invalidated)
|
|
|
|
meta_data = { ex_group_name: ex_group.name, user_invalidated: user_invalidated }
|
|
|
|
|
|
|
|
NotificationCenter.call type: :notify_admin_user_group_changed,
|
|
|
|
receiver: User.admins_and_managers,
|
|
|
|
attached_object: self,
|
|
|
|
meta_data: meta_data
|
|
|
|
|
|
|
|
NotificationCenter.call type: :notify_user_user_group_changed,
|
|
|
|
receiver: self,
|
|
|
|
attached_object: self,
|
|
|
|
meta_data: meta_data
|
|
|
|
end
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
protected
|
2018-12-03 15:10:04 +01:00
|
|
|
|
2020-04-28 12:48:03 +02:00
|
|
|
# remove projects drafts that are not linked to another user
|
2019-06-12 12:22:38 +02:00
|
|
|
def remove_orphan_drafts
|
|
|
|
orphans = my_projects
|
|
|
|
.joins('LEFT JOIN project_users ON projects.id = project_users.project_id')
|
2022-10-24 17:39:16 +02:00
|
|
|
.where(project_users: { project_id: nil })
|
2019-06-12 12:22:38 +02:00
|
|
|
.where(state: 'draft')
|
|
|
|
orphans.map(&:destroy!)
|
|
|
|
end
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
def confirmation_required?
|
2020-06-15 11:57:13 +02:00
|
|
|
Setting.get('confirmation_required') ? super : false
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
private
|
2018-12-03 15:10:04 +01:00
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
def assign_default_role
|
2018-12-03 15:10:04 +01:00
|
|
|
add_role(:member) if roles.blank?
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
def cached_has_role?(role)
|
2018-12-03 15:10:04 +01:00
|
|
|
roles = Rails.cache.fetch(
|
|
|
|
roles_for: { object_id: object_id },
|
|
|
|
expires_in: 1.day,
|
|
|
|
race_condition_ttl: 2.seconds
|
|
|
|
) { roles.map(&:name) }
|
2016-03-23 18:39:41 +01:00
|
|
|
roles.include?(role.to_s)
|
|
|
|
end
|
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
def cgu_must_accept
|
|
|
|
errors.add(:cgu, I18n.t('activerecord.errors.messages.empty')) if cgu == '0'
|
|
|
|
end
|
|
|
|
|
2021-06-14 15:14:14 +02:00
|
|
|
def create_gateway_customer
|
|
|
|
PaymentGatewayService.new.create_user(id)
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
2019-03-25 14:57:48 +01:00
|
|
|
def send_devise_notification(notification, *args)
|
|
|
|
devise_mailer.send(notification, self, *args).deliver_later
|
|
|
|
end
|
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
def notify_admin_when_user_is_created
|
2018-12-06 18:26:01 +01:00
|
|
|
if need_completion? && !provider.nil?
|
2016-03-23 18:39:41 +01:00
|
|
|
NotificationCenter.call type: 'notify_admin_when_user_is_imported',
|
|
|
|
receiver: User.admins,
|
|
|
|
attached_object: self
|
|
|
|
else
|
|
|
|
NotificationCenter.call type: 'notify_admin_when_user_is_created',
|
2020-04-29 15:34:30 +02:00
|
|
|
receiver: User.admins_and_managers,
|
2016-03-23 18:39:41 +01:00
|
|
|
attached_object: self
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-03 17:25:04 +02:00
|
|
|
def invoicing_data_was_modified?
|
2020-03-24 16:45:27 +01:00
|
|
|
saved_change_to_email?
|
2019-06-03 17:25:04 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def statistic_data_was_modified?
|
2020-03-24 16:45:27 +01:00
|
|
|
saved_change_to_group_id?
|
2019-06-04 16:50:23 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def init_dependencies
|
2019-06-05 12:11:51 +02:00
|
|
|
if invoicing_profile.nil?
|
|
|
|
ip = InvoicingProfile.create!(
|
|
|
|
user: self,
|
|
|
|
email: email,
|
|
|
|
first_name: first_name,
|
|
|
|
last_name: last_name
|
|
|
|
)
|
2022-03-29 17:08:35 +02:00
|
|
|
else
|
|
|
|
update_invoicing_profile
|
2019-06-05 12:11:51 +02:00
|
|
|
end
|
|
|
|
if wallet.nil?
|
|
|
|
ip ||= invoicing_profile
|
|
|
|
Wallet.create!(
|
|
|
|
invoicing_profile: ip
|
|
|
|
)
|
|
|
|
end
|
2019-06-05 16:09:11 +02:00
|
|
|
if statistic_profile.nil?
|
|
|
|
StatisticProfile.create!(
|
|
|
|
user: self,
|
2019-06-06 13:58:49 +02:00
|
|
|
group_id: group_id,
|
|
|
|
role_id: roles.first.id
|
2019-06-05 16:09:11 +02:00
|
|
|
)
|
|
|
|
else
|
|
|
|
update_statistic_profile
|
|
|
|
end
|
2019-06-03 17:25:04 +02:00
|
|
|
end
|
|
|
|
|
2019-06-03 12:06:01 +02:00
|
|
|
def update_invoicing_profile
|
2019-06-05 12:11:51 +02:00
|
|
|
raise NoProfileError if invoicing_profile.nil?
|
2019-06-04 16:50:23 +02:00
|
|
|
|
2022-10-24 17:39:16 +02:00
|
|
|
invoicing_profile.update(
|
2021-05-14 17:07:38 +02:00
|
|
|
email: email,
|
|
|
|
first_name: first_name,
|
|
|
|
last_name: last_name
|
2019-06-04 16:50:23 +02:00
|
|
|
)
|
2019-06-03 12:06:01 +02:00
|
|
|
end
|
2022-07-29 17:37:42 +02:00
|
|
|
|
|
|
|
def password_complexity
|
2022-12-21 19:24:54 +01:00
|
|
|
return if password.blank? || SecurePassword.secured?(password)
|
2022-10-24 17:39:16 +02:00
|
|
|
|
2022-12-06 16:08:38 +01:00
|
|
|
errors.add I18n.t('app.public.common.password_is_too_weak'), I18n.t('app.public.common.password_is_too_weak_explanations')
|
2022-07-29 17:37:42 +02:00
|
|
|
end
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|