2018-03-06 13:44:29 +01:00
|
|
|
class Gestionnaire < ApplicationRecord
|
2018-03-14 17:25:43 +01:00
|
|
|
include CredentialsSyncableConcern
|
|
|
|
include EmailSanitizableConcern
|
|
|
|
|
2018-05-26 00:06:40 +02:00
|
|
|
devise :database_authenticatable, :registerable, :async,
|
2017-06-12 13:49:51 +02:00
|
|
|
:recoverable, :rememberable, :trackable, :validatable
|
2015-11-10 10:23:15 +01:00
|
|
|
|
2016-05-20 15:39:17 +02:00
|
|
|
has_and_belongs_to_many :administrateurs
|
2015-11-16 18:08:19 +01:00
|
|
|
|
2018-03-14 17:25:43 +01:00
|
|
|
before_validation -> { sanitize_email(:email) }
|
|
|
|
|
2016-06-20 17:37:04 +02:00
|
|
|
has_many :assign_to, dependent: :destroy
|
2018-02-19 19:25:34 +01:00
|
|
|
has_many :procedures, through: :assign_to
|
2017-07-10 16:11:12 +02:00
|
|
|
has_many :dossiers, -> { state_not_brouillon }, through: :procedures
|
2016-07-18 18:24:29 +02:00
|
|
|
has_many :follows
|
2018-01-23 18:23:07 +01:00
|
|
|
has_many :followed_dossiers, through: :follows, source: :dossier
|
2017-04-25 12:09:11 +02:00
|
|
|
has_many :avis
|
2018-01-16 09:23:20 +01:00
|
|
|
has_many :dossiers_from_avis, through: :avis, source: :dossier
|
2016-03-14 16:49:12 +01:00
|
|
|
|
2018-02-19 19:25:34 +01:00
|
|
|
def visible_procedures
|
|
|
|
procedures.publiees_ou_archivees
|
|
|
|
end
|
2017-01-05 12:44:15 +01:00
|
|
|
|
2017-05-16 15:20:38 +02:00
|
|
|
def can_view_dossier?(dossier_id)
|
|
|
|
avis.where(dossier_id: dossier_id).any? ||
|
|
|
|
dossiers.where(id: dossier_id).any?
|
|
|
|
end
|
|
|
|
|
2017-07-17 11:28:14 +02:00
|
|
|
def follow(dossier)
|
|
|
|
return if follow?(dossier)
|
|
|
|
|
|
|
|
followed_dossiers << dossier
|
|
|
|
end
|
|
|
|
|
2017-10-05 14:10:49 +02:00
|
|
|
def unfollow(dossier)
|
|
|
|
followed_dossiers.delete(dossier)
|
|
|
|
end
|
|
|
|
|
2017-07-17 13:13:20 +02:00
|
|
|
def follow?(dossier)
|
|
|
|
followed_dossiers.include?(dossier)
|
2016-07-18 18:24:29 +02:00
|
|
|
end
|
2016-08-02 14:49:41 +02:00
|
|
|
|
2017-04-27 16:29:04 +02:00
|
|
|
def assigned_on_procedure?(procedure_id)
|
|
|
|
procedures.find_by(id: procedure_id).present?
|
|
|
|
end
|
|
|
|
|
2018-02-19 11:20:57 +01:00
|
|
|
def assign_to_procedure(procedure)
|
2018-02-20 11:24:32 +01:00
|
|
|
begin
|
|
|
|
procedures << procedure
|
|
|
|
true
|
|
|
|
rescue ActiveRecord::RecordNotUnique
|
|
|
|
false
|
|
|
|
end
|
2018-02-19 11:20:57 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_procedure(procedure)
|
2018-02-20 11:24:32 +01:00
|
|
|
!!(procedure.in?(procedures) && procedures.destroy(procedure))
|
2018-02-19 11:20:57 +01:00
|
|
|
end
|
|
|
|
|
2017-05-12 16:47:18 +02:00
|
|
|
def last_week_overview
|
|
|
|
start_date = DateTime.now.beginning_of_week
|
|
|
|
|
|
|
|
active_procedure_overviews = procedures
|
2018-01-15 19:34:08 +01:00
|
|
|
.publiees
|
|
|
|
.map { |procedure| procedure.procedure_overview(start_date) }
|
|
|
|
.select(&:had_some_activities?)
|
2017-05-12 16:47:18 +02:00
|
|
|
|
2017-06-27 18:00:05 +02:00
|
|
|
if active_procedure_overviews.count == 0
|
2017-05-12 16:47:18 +02:00
|
|
|
nil
|
|
|
|
else
|
|
|
|
{
|
|
|
|
start_date: start_date,
|
|
|
|
procedure_overviews: active_procedure_overviews,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-02 17:03:38 +02:00
|
|
|
def procedure_presentation_for_procedure_id(procedure_id)
|
|
|
|
assign_to.find_by(procedure_id: procedure_id).procedure_presentation_or_default
|
|
|
|
end
|
|
|
|
|
2017-10-05 16:10:00 +02:00
|
|
|
def notifications_for_dossier(dossier)
|
|
|
|
follow = Follow
|
|
|
|
.includes(dossier: [:champs, :avis, :commentaires])
|
|
|
|
.find_by(gestionnaire: self, dossier: dossier)
|
|
|
|
|
|
|
|
if follow.present?
|
2018-01-15 19:14:09 +01:00
|
|
|
# retirer le seen_at.present? une fois la contrainte de presence en base (et les migrations ad hoc)
|
2017-10-05 16:10:00 +02:00
|
|
|
champs_publiques = follow.demande_seen_at.present? &&
|
|
|
|
follow.dossier.champs.updated_since?(follow.demande_seen_at).any?
|
|
|
|
|
|
|
|
pieces_justificatives = follow.demande_seen_at.present? &&
|
|
|
|
follow.dossier.pieces_justificatives.updated_since?(follow.demande_seen_at).any?
|
|
|
|
|
|
|
|
demande = champs_publiques || pieces_justificatives
|
|
|
|
|
|
|
|
annotations_privees = follow.annotations_privees_seen_at.present? &&
|
|
|
|
follow.dossier.champs_private.updated_since?(follow.annotations_privees_seen_at).any?
|
|
|
|
|
|
|
|
avis_notif = follow.avis_seen_at.present? &&
|
|
|
|
follow.dossier.avis.updated_since?(follow.avis_seen_at).any?
|
|
|
|
|
|
|
|
messagerie = follow.messagerie_seen_at.present? &&
|
|
|
|
dossier.commentaires
|
2018-01-15 19:34:08 +01:00
|
|
|
.where.not(email: 'contact@tps.apientreprise.fr')
|
2018-02-28 17:37:44 +01:00
|
|
|
.where.not(email: 'contact@demarches-simplifiees.fr')
|
2018-01-15 19:34:08 +01:00
|
|
|
.updated_since?(follow.messagerie_seen_at).any?
|
2017-10-05 16:10:00 +02:00
|
|
|
|
|
|
|
annotations_hash(demande, annotations_privees, avis_notif, messagerie)
|
|
|
|
else
|
|
|
|
annotations_hash(false, false, false, false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-20 12:09:25 +01:00
|
|
|
def notifications_for_procedure(procedure, state = :en_cours)
|
|
|
|
dossiers = case state
|
|
|
|
when :termine
|
|
|
|
procedure.dossiers.termine
|
|
|
|
when :not_archived
|
|
|
|
procedure.dossiers.not_archived
|
|
|
|
else
|
|
|
|
procedure.dossiers.en_cours
|
|
|
|
end.followed_by(self)
|
2017-10-05 16:10:00 +02:00
|
|
|
|
|
|
|
dossiers_id_with_notifications(dossiers)
|
|
|
|
end
|
|
|
|
|
2018-02-20 12:09:25 +01:00
|
|
|
def notifications_per_procedure(state = :en_cours)
|
|
|
|
dossiers = case state
|
|
|
|
when :termine
|
|
|
|
Dossier.termine
|
|
|
|
when :not_archived
|
|
|
|
Dossier.not_archived
|
|
|
|
else
|
|
|
|
Dossier.en_cours
|
|
|
|
end.followed_by(self)
|
2017-10-05 16:10:00 +02:00
|
|
|
|
|
|
|
Dossier.where(id: dossiers_id_with_notifications(dossiers)).group(:procedure_id).count
|
|
|
|
end
|
|
|
|
|
2017-10-24 11:41:22 +02:00
|
|
|
def mark_tab_as_seen(dossier, tab)
|
|
|
|
attributes = {}
|
|
|
|
attributes["#{tab}_seen_at"] = DateTime.now
|
|
|
|
Follow.where(gestionnaire: self, dossier: dossier).update_all(attributes)
|
|
|
|
end
|
|
|
|
|
2018-04-27 12:29:01 +02:00
|
|
|
def invite!
|
|
|
|
reset_password_token = set_reset_password_token
|
|
|
|
|
2018-05-25 18:05:28 +02:00
|
|
|
GestionnaireMailer.invite_gestionnaire(self, reset_password_token).deliver_later
|
2018-04-27 12:29:01 +02:00
|
|
|
end
|
|
|
|
|
2016-08-02 14:49:41 +02:00
|
|
|
private
|
|
|
|
|
2018-03-20 17:47:37 +01:00
|
|
|
def valid_couple_table_attr?(table, column)
|
2018-01-15 14:42:48 +01:00
|
|
|
couples = [
|
|
|
|
{
|
|
|
|
table: :dossier,
|
|
|
|
column: :dossier_id
|
|
|
|
},
|
|
|
|
{
|
|
|
|
table: :procedure,
|
|
|
|
column: :libelle
|
|
|
|
},
|
|
|
|
{
|
|
|
|
table: :etablissement,
|
|
|
|
column: :siret
|
|
|
|
},
|
|
|
|
{
|
|
|
|
table: :entreprise,
|
|
|
|
column: :raison_sociale
|
|
|
|
},
|
|
|
|
{
|
|
|
|
table: :dossier,
|
|
|
|
column: :state
|
|
|
|
}
|
|
|
|
]
|
2016-08-02 14:49:41 +02:00
|
|
|
|
2018-01-16 13:34:24 +01:00
|
|
|
couples.include?({ table: table, column: column })
|
2016-08-02 14:49:41 +02:00
|
|
|
end
|
2017-10-05 16:10:00 +02:00
|
|
|
|
|
|
|
def annotations_hash(demande, annotations_privees, avis, messagerie)
|
|
|
|
{
|
|
|
|
demande: demande,
|
|
|
|
annotations_privees: annotations_privees,
|
|
|
|
avis: avis,
|
|
|
|
messagerie: messagerie
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def dossiers_id_with_notifications(dossiers)
|
|
|
|
updated_demandes = dossiers
|
|
|
|
.joins(:champs)
|
|
|
|
.where('champs.updated_at > follows.demande_seen_at')
|
|
|
|
|
|
|
|
updated_pieces_justificatives = dossiers
|
|
|
|
.joins(:pieces_justificatives)
|
|
|
|
.where('pieces_justificatives.updated_at > follows.demande_seen_at')
|
|
|
|
|
|
|
|
updated_annotations = dossiers
|
|
|
|
.joins(:champs_private)
|
|
|
|
.where('champs.updated_at > follows.annotations_privees_seen_at')
|
|
|
|
|
|
|
|
updated_avis = dossiers
|
|
|
|
.joins(:avis)
|
|
|
|
.where('avis.updated_at > follows.avis_seen_at')
|
|
|
|
|
|
|
|
updated_messagerie = dossiers
|
|
|
|
.joins(:commentaires)
|
|
|
|
.where('commentaires.updated_at > follows.messagerie_seen_at')
|
|
|
|
.where.not(commentaires: { email: 'contact@tps.apientreprise.fr' })
|
2018-02-28 17:37:44 +01:00
|
|
|
.where.not(commentaires: { email: 'contact@demarches-simplifiees.fr' })
|
2017-10-05 16:10:00 +02:00
|
|
|
|
2018-01-15 14:42:48 +01:00
|
|
|
[
|
|
|
|
updated_demandes,
|
|
|
|
updated_pieces_justificatives,
|
|
|
|
updated_annotations,
|
|
|
|
updated_avis,
|
|
|
|
updated_messagerie
|
2018-01-15 21:34:32 +01:00
|
|
|
].flat_map { |query| query.distinct.ids }.uniq
|
2017-10-05 16:10:00 +02:00
|
|
|
end
|
2015-09-22 10:15:12 +02:00
|
|
|
end
|