2020-08-06 16:35:45 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: groupe_instructeurs
|
|
|
|
#
|
|
|
|
# id :bigint not null, primary key
|
2022-06-20 16:14:27 +02:00
|
|
|
# closed :boolean default(FALSE)
|
2020-08-06 16:35:45 +02:00
|
|
|
# label :text not null
|
2023-02-28 08:39:37 +01:00
|
|
|
# routing_rule :jsonb
|
2020-08-06 16:35:45 +02:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# procedure_id :bigint not null
|
|
|
|
#
|
2019-08-19 16:12:30 +02:00
|
|
|
class GroupeInstructeur < ApplicationRecord
|
2021-03-03 11:33:10 +01:00
|
|
|
DEFAUT_LABEL = 'défaut'
|
2020-07-20 17:22:44 +02:00
|
|
|
belongs_to :procedure, -> { with_discarded }, inverse_of: :groupe_instructeurs, optional: false
|
2020-06-11 10:08:04 +02:00
|
|
|
has_many :assign_tos, dependent: :destroy
|
|
|
|
has_many :instructeurs, through: :assign_tos
|
2019-08-22 17:58:31 +02:00
|
|
|
has_many :dossiers
|
2022-11-04 10:07:56 +01:00
|
|
|
has_many :deleted_dossiers
|
2022-12-22 22:23:47 +01:00
|
|
|
has_many :batch_operations, through: :dossiers, source: :batch_operations
|
2020-06-11 12:33:29 +02:00
|
|
|
has_and_belongs_to_many :exports, dependent: :destroy
|
2021-12-09 12:20:22 +01:00
|
|
|
has_and_belongs_to_many :bulk_messages, dependent: :destroy
|
2019-10-09 18:05:43 +02:00
|
|
|
|
2022-11-23 09:10:39 +01:00
|
|
|
validates :label, presence: true, allow_nil: false
|
|
|
|
validates :label, uniqueness: { scope: :procedure }
|
2023-03-02 15:52:50 +01:00
|
|
|
validates :closed, acceptance: { accept: [false] }, if: -> { closed_changed? && self.procedure.groupe_instructeurs.active.one? }
|
2019-10-09 18:05:43 +02:00
|
|
|
|
|
|
|
before_validation -> { label&.strip! }
|
2022-10-25 14:27:51 +02:00
|
|
|
after_save :toggle_routing
|
2020-01-07 17:39:50 +01:00
|
|
|
|
|
|
|
scope :without_group, -> (group) { where.not(id: group) }
|
2020-04-08 19:30:16 +02:00
|
|
|
scope :for_api_v2, -> { includes(procedure: [:administrateurs]) }
|
2022-11-23 09:10:39 +01:00
|
|
|
scope :active, -> { where(closed: false) }
|
|
|
|
scope :closed, -> { where(closed: true) }
|
2022-10-14 17:10:42 +02:00
|
|
|
|
2021-12-21 19:06:38 +01:00
|
|
|
def add(instructeur)
|
2022-12-01 18:14:08 +01:00
|
|
|
return if instructeur.nil?
|
2021-12-21 19:06:38 +01:00
|
|
|
return if in?(instructeur.groupe_instructeurs)
|
|
|
|
|
|
|
|
default_notification_settings = instructeur.notification_settings(procedure_id)
|
|
|
|
instructeur.assign_to.create(groupe_instructeur: self, **default_notification_settings)
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove(instructeur)
|
2022-12-01 18:14:08 +01:00
|
|
|
return if instructeur.nil?
|
2021-12-21 19:06:38 +01:00
|
|
|
return if !in?(instructeur.groupe_instructeurs)
|
|
|
|
|
|
|
|
instructeur.groupe_instructeurs.destroy(self)
|
|
|
|
instructeur.follows
|
|
|
|
.joins(:dossier)
|
|
|
|
.where(dossiers: { groupe_instructeur: self })
|
|
|
|
.update_all(unfollowed_at: Time.zone.now)
|
|
|
|
end
|
2022-10-20 18:24:27 +02:00
|
|
|
|
2023-02-21 16:37:26 +01:00
|
|
|
def add_instructeurs(ids: [], emails: [])
|
|
|
|
instructeurs_to_add, valid_emails, invalid_emails = Instructeur.find_all_by_identifier_with_emails(ids:, emails:)
|
|
|
|
not_found_emails = valid_emails - instructeurs_to_add.map(&:email)
|
|
|
|
|
|
|
|
# Send invitations to users without account
|
|
|
|
if not_found_emails.present?
|
|
|
|
instructeurs_to_add += not_found_emails.map do |email|
|
|
|
|
user = User.create_or_promote_to_instructeur(email, SecureRandom.hex, administrateurs: procedure.administrateurs)
|
|
|
|
user.invite!
|
|
|
|
user.instructeur
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# We dont't want to assign a user to a groupe_instructeur if they are already assigned to it
|
|
|
|
instructeurs_to_add -= instructeurs
|
2023-02-21 17:36:34 +01:00
|
|
|
instructeurs_to_add.each { add(_1) }
|
2023-02-21 16:37:26 +01:00
|
|
|
|
|
|
|
[instructeurs_to_add, invalid_emails]
|
|
|
|
end
|
|
|
|
|
2022-10-20 18:24:27 +02:00
|
|
|
def can_delete?
|
2022-11-23 09:10:39 +01:00
|
|
|
dossiers.empty? && (procedure.groupe_instructeurs.active.many? || (procedure.groupe_instructeurs.active.one? && closed))
|
2022-10-20 18:24:27 +02:00
|
|
|
end
|
2022-10-25 14:27:51 +02:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def toggle_routing
|
2022-11-23 09:10:39 +01:00
|
|
|
procedure.update!(routing_enabled: procedure.groupe_instructeurs.active.many?)
|
2022-10-25 14:27:51 +02:00
|
|
|
end
|
2023-03-24 10:27:53 +01:00
|
|
|
|
|
|
|
class RoutingSerializer
|
|
|
|
def self.load(routing)
|
|
|
|
if routing.present?
|
|
|
|
Logic.from_h(routing)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.dump(routing)
|
|
|
|
if routing.present?
|
|
|
|
routing.to_h
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
serialize :routing, RoutingSerializer
|
2019-08-19 16:12:30 +02:00
|
|
|
end
|