From d7893b9102326aa3aa2226fbfa4652d590e4a25f Mon Sep 17 00:00:00 2001 From: Lisa Durand Date: Tue, 25 Jun 2024 15:14:26 +0200 Subject: [PATCH] instructeur need to confirm mail after invitation --- .../groupe_instructeurs_controller.rb | 12 ++++++-- .../agent_connect/agent_controller.rb | 2 +- .../groupe_instructeurs_controller.rb | 1 - app/mailers/instructeur_mailer.rb | 17 +++++++++++ app/models/groupe_instructeur.rb | 1 - app/models/user.rb | 14 +++++++--- ...irm_and_notify_added_instructeur.html.haml | 28 +++++++++++++++++++ .../en.yml | 6 ++++ .../fr.yml | 6 ++++ spec/models/user_spec.rb | 4 +-- 10 files changed, 79 insertions(+), 12 deletions(-) create mode 100644 app/views/instructeur_mailer/confirm_and_notify_added_instructeur.html.haml create mode 100644 config/locales/views/instructeur_mailer/confirm_and_notify_added_instructeur/en.yml create mode 100644 config/locales/views/instructeur_mailer/confirm_and_notify_added_instructeur/fr.yml diff --git a/app/controllers/administrateurs/groupe_instructeurs_controller.rb b/app/controllers/administrateurs/groupe_instructeurs_controller.rb index 318e502a6..50a940690 100644 --- a/app/controllers/administrateurs/groupe_instructeurs_controller.rb +++ b/app/controllers/administrateurs/groupe_instructeurs_controller.rb @@ -239,9 +239,15 @@ module Administrateurs "Les instructeurs ont bien été affectés à la démarche" end - GroupeInstructeurMailer - .notify_added_instructeurs(groupe_instructeur, instructeurs, current_administrateur.email) - .deliver_later + known_instructeurs, new_instructeurs = instructeurs.partition { |instructeur| instructeur.user.email_verified_at } + + new_instructeurs.each { InstructeurMailer.confirm_and_notify_added_instructeur(_1, groupe_instructeur, current_administrateur.email).deliver_later } + + if known_instructeurs.present? + GroupeInstructeurMailer + .notify_added_instructeurs(groupe_instructeur, known_instructeurs, current_administrateur.email) + .deliver_later + end end if procedure.routing_enabled? diff --git a/app/controllers/agent_connect/agent_controller.rb b/app/controllers/agent_connect/agent_controller.rb index fa520652f..6116b1f2b 100644 --- a/app/controllers/agent_connect/agent_controller.rb +++ b/app/controllers/agent_connect/agent_controller.rb @@ -25,7 +25,7 @@ class AgentConnect::AgentController < ApplicationController instructeur = Instructeur.find_by(users: { email: santized_email(user_info) }) if instructeur.nil? - user = User.create_or_promote_to_instructeur(santized_email(user_info), Devise.friendly_token[0, 20]) + user = User.create_or_promote_to_instructeur(santized_email(user_info), Devise.friendly_token[0, 20], agent_connect: true) instructeur = user.instructeur end diff --git a/app/controllers/instructeurs/groupe_instructeurs_controller.rb b/app/controllers/instructeurs/groupe_instructeurs_controller.rb index 1ad00f79a..d08e7987b 100644 --- a/app/controllers/instructeurs/groupe_instructeurs_controller.rb +++ b/app/controllers/instructeurs/groupe_instructeurs_controller.rb @@ -65,7 +65,6 @@ module Instructeurs administrateurs: [procedure.administrateurs.first] ) - user.invite_instructeur! if user.valid? user.instructeur end diff --git a/app/mailers/instructeur_mailer.rb b/app/mailers/instructeur_mailer.rb index f2d4f6239..6ce8401b4 100644 --- a/app/mailers/instructeur_mailer.rb +++ b/app/mailers/instructeur_mailer.rb @@ -47,4 +47,21 @@ class InstructeurMailer < ApplicationMailer def self.critical_email?(action_name) action_name == "send_login_token" end + + def confirm_and_notify_added_instructeur(instructeur, group, current_instructeur_email) + @instructeur = instructeur + @group = group + @current_instructeur_email = current_instructeur_email + @reset_password_token = instructeur.user.send(:set_reset_password_token) + + subject = if group.procedure.groupe_instructeurs.many? + "Vous avez été ajouté(e) au groupe \"#{group.label}\" de la démarche \"#{group.procedure.libelle}\"" + else + "Vous avez été affecté(e) à la démarche \"#{group.procedure.libelle}\"" + end + + bypass_unverified_mail_protection! + + mail(to: instructeur.email, subject: subject) + end end diff --git a/app/models/groupe_instructeur.rb b/app/models/groupe_instructeur.rb index f628b136e..eb6804588 100644 --- a/app/models/groupe_instructeur.rb +++ b/app/models/groupe_instructeur.rb @@ -58,7 +58,6 @@ class GroupeInstructeur < ApplicationRecord 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_instructeur! user.instructeur end end diff --git a/app/models/user.rb b/app/models/user.rb index d98229788..1cf2bc3fc 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -97,10 +97,16 @@ class User < ApplicationRecord AdministrateurMailer.activate_before_expiration(self, reset_password_token).deliver_later end - def self.create_or_promote_to_instructeur(email, password, administrateurs: []) - user = User - .create_with(password: password, confirmed_at: Time.zone.now, email_verified_at: Time.zone.now) - .find_or_create_by(email: email) + def self.create_or_promote_to_instructeur(email, password, administrateurs: [], agent_connect: false) + if agent_connect + user = User + .create_with(password: password, confirmed_at: Time.zone.now, email_verified_at: Time.zone.now) + .find_or_create_by(email: email) + else + user = User + .create_with(password: password, confirmed_at: Time.zone.now) + .find_or_create_by(email: email) + end if user.valid? if user.instructeur.nil? diff --git a/app/views/instructeur_mailer/confirm_and_notify_added_instructeur.html.haml b/app/views/instructeur_mailer/confirm_and_notify_added_instructeur.html.haml new file mode 100644 index 000000000..a6db49ee6 --- /dev/null +++ b/app/views/instructeur_mailer/confirm_and_notify_added_instructeur.html.haml @@ -0,0 +1,28 @@ +%p= t(:hello, scope: [:views, :shared, :greetings]) + +%p + - number_of_groups = @group.procedure.groupe_instructeurs.many? ? 'many_groups' : 'one_group' + = t(".email_body.#{number_of_groups}", groupe: @group.label, email: @current_instructeur_email, procedure: @group.procedure.libelle) + +%p + Votre compte a été créé pour l'adresse email + %strong #{@instructeur.email}. + +%p + Pour l’activer, cliquez sur le lien suivant :  + = link_to(users_activate_url(token: @reset_password_token), users_activate_url(token: @reset_password_token)) + +%p + Lors de vos prochaines connexions sur #{Current.application_name} cliquez sur le bouton « Se connecter » positionné sur le haut de page ou bien sur ce lien :  + = link_to new_user_session_url, new_user_session_url + +- if AgentConnectService.enabled? + %p + Vous êtes un agent de l'état et avez accès à AgentConnect ? Vous pouvez utiliser la connexion AgentConnect en suivant ce lien :  + = link_to agent_connect_url, agent_connect_url +%p + Nous vous invitons aussi à consulter notre tutoriel à destination des nouveaux instructeurs : + = link_to(INSTRUCTEUR_TUTORIAL_URL, INSTRUCTEUR_TUTORIAL_URL) + + += render partial: "layouts/mailers/signature" diff --git a/config/locales/views/instructeur_mailer/confirm_and_notify_added_instructeur/en.yml b/config/locales/views/instructeur_mailer/confirm_and_notify_added_instructeur/en.yml new file mode 100644 index 000000000..567c318fe --- /dev/null +++ b/config/locales/views/instructeur_mailer/confirm_and_notify_added_instructeur/en.yml @@ -0,0 +1,6 @@ +en: + instructeur_mailer: + confirm_and_notify_added_instructeur: + email_body: + one_group: "You were assigned to the procedure « %{procedure} » by « %{email} »." + many_groups: "You were assigned to the group « %{groupe} » by « %{email} », in charge of procedure « %{procedure} »." diff --git a/config/locales/views/instructeur_mailer/confirm_and_notify_added_instructeur/fr.yml b/config/locales/views/instructeur_mailer/confirm_and_notify_added_instructeur/fr.yml new file mode 100644 index 000000000..0ba43a947 --- /dev/null +++ b/config/locales/views/instructeur_mailer/confirm_and_notify_added_instructeur/fr.yml @@ -0,0 +1,6 @@ +fr: + instructeur_mailer: + confirm_and_notify_added_instructeur: + email_body: + one_group: "Vous avez été affecté(e) à la démarche « %{procedure} » par « %{email} »." + many_groups: "Vous avez été ajouté(e) au groupe « %{groupe} » par « %{email} », en charge de la démarche « %{procedure} »." diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index 409507d37..524390f39 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -117,7 +117,7 @@ describe User, type: :model do user = subject expect(user.valid_password?(password)).to be true expect(user.confirmed_at).to be_present - expect(user.email_verified_at).to be_present + expect(user.email_verified_at).not_to be_present expect(user.instructeur).to be_present end @@ -230,7 +230,7 @@ describe User, type: :model do it 'verifies its email' do user = subject - expect(user.email_verified_at).to be_present + expect(user.email_verified_at).not_to be_present end end