[#10751] Allow sending a new invitation if the user's previous one has expired

This commit is contained in:
Mathieu Magnin 2024-09-11 18:42:29 +02:00
parent 790177c758
commit a99fae168c
No known key found for this signature in database
GPG key ID: 8DCAFC82D7BA654E
5 changed files with 31 additions and 4 deletions

View file

@ -254,7 +254,7 @@ module Administrateurs
known_instructeurs, not_verified_instructeurs = instructeurs.partition { |instructeur| instructeur.user.email_verified_at }
not_verified_instructeurs.filter(&:previously_new_record?).each do
not_verified_instructeurs.filter(&:should_receive_email_activation?).each do
InstructeurMailer.confirm_and_notify_added_instructeur(_1, groupe_instructeur, current_administrateur.email).deliver_later
end

View file

@ -50,7 +50,7 @@ module Instructeurs
GroupeInstructeurMailer
.notify_added_instructeurs(groupe_instructeur, [instructeur], current_user.email)
.deliver_later
elsif instructeur.previously_new_record?
elsif instructeur.should_receive_email_activation?
InstructeurMailer.confirm_and_notify_added_instructeur(instructeur, groupe_instructeur, current_user.email).deliver_later
end
# else instructeur already exists and email is not verified, so do not spam them

View file

@ -214,6 +214,11 @@ class Instructeur < ApplicationRecord
trusted_device_token&.token_young?
end
def should_receive_email_activation?
# if was recently created or received an activation email more than 7 days ago
previously_new_record? || user.reset_password_sent_at.nil? || user.reset_password_sent_at < Devise.reset_password_within.ago
end
def can_be_deleted?
user.administrateur.nil? && procedures.all? { |p| p.defaut_groupe_instructeur.instructeurs.count > 1 }
end

View file

@ -387,8 +387,9 @@ describe Administrateurs::GroupeInstructeursController, type: :controller do
context 'of news instructeurs' do
let!(:user_email_verified) { create(:user, :with_email_verified) }
let!(:instructeur_email_verified) { create(:instructeur, user: user_email_verified) }
let!(:instructeur_email_not_verified) { create(:instructeur, user: create(:user)) }
let(:new_instructeur_emails) { ['new_i1@gmail.com', 'new_i2@gmail.com', instructeur_email_verified.email, instructeur_email_not_verified.email] }
let!(:instructeur_email_not_verified) { create(:instructeur, user: create(:user, { reset_password_sent_at: 1.day.ago })) }
let!(:instructeur_email_not_verified_but_received_invitation_long_time_ago) { create(:instructeur, user: create(:user, { reset_password_sent_at: 10.days.ago })) }
let(:new_instructeur_emails) { ['new_i1@gmail.com', 'new_i2@gmail.com', instructeur_email_verified.email, instructeur_email_not_verified.email, instructeur_email_not_verified_but_received_invitation_long_time_ago.email] }
before do
allow(GroupeInstructeurMailer).to receive(:notify_added_instructeurs)
@ -429,6 +430,12 @@ describe Administrateurs::GroupeInstructeursController, type: :controller do
gi_1_2,
admin.email
)
expect(InstructeurMailer).to have_received(:confirm_and_notify_added_instructeur).with(
instructeur_email_not_verified_but_received_invitation_long_time_ago,
gi_1_2,
admin.email
)
end
end

View file

@ -120,6 +120,21 @@ describe Instructeurs::GroupeInstructeursController, type: :controller do
end
end
context 'of an instructeur already known that has received a invitation email long time ago' do
let(:known_instructeur) { create(:instructeur, user: create(:user, { reset_password_sent_at: 10.days.ago })) }
let(:new_instructeur_email) { known_instructeur.email }
before { subject }
it "works" do
expect(gi_1_2.instructeurs.map(&:email)).to include(new_instructeur_email)
expect(flash.notice).to be_present
expect(response).to redirect_to(instructeur_groupe_path(procedure, gi_1_2))
expect(InstructeurMailer).to have_received(:confirm_and_notify_added_instructeur)
expect(GroupeInstructeurMailer).not_to have_received(:notify_added_instructeurs)
end
end
context 'of an instructeur already in the group' do
let(:new_instructeur_email) { instructeur.email }
before { subject }