demarches-normaliennes/app/controllers/users/profil_controller.rb

56 lines
1.6 KiB
Ruby
Raw Normal View History

2019-07-02 18:15:03 +02:00
module Users
class ProfilController < UserController
before_action :redirect_if_instructeur,
only: :update_email,
if: -> { instructeur_signed_in? }
2018-08-23 18:53:35 +02:00
def show
@waiting_transfers = current_user.dossiers.joins(:transfer).group('dossier_transfers.email').count.to_a
2018-08-23 18:53:35 +02:00
end
def renew_api_token
@token = current_administrateur.renew_api_token
2018-08-24 14:19:44 +02:00
flash.now.notice = 'Votre jeton a été regénéré.'
render :show
2018-08-23 18:53:35 +02:00
end
def update_email
2019-12-09 16:50:30 +01:00
if current_user.update(update_email_params)
flash.notice = t('devise.registrations.update_needs_confirmation')
2019-12-09 16:50:30 +01:00
elsif current_user.errors&.details&.dig(:email)&.any? { |e| e[:error] == :taken }
UserMailer.account_already_taken(current_user, requested_email).deliver_later
# avoid leaking information about whether an account with this email exists or not
flash.notice = t('devise.registrations.update_needs_confirmation')
else
2019-12-09 16:50:30 +01:00
flash.alert = current_user.errors.full_messages
end
redirect_to profil_path
end
2021-09-20 13:14:03 +02:00
def transfer_all_dossiers
DossierTransfer.initiate(next_owner_email, current_user.dossiers)
flash.notice = t('.new_transfer', count: current_user.dossiers.count, email: next_owner_email)
redirect_to profil_path
end
private
def update_email_params
params.require(:user).permit(:email)
end
def requested_email
update_email_params[:email]
end
def redirect_if_instructeur
redirect_to profil_path
end
2021-09-20 13:14:03 +02:00
def next_owner_email
params[:next_owner]
end
2018-08-23 18:53:35 +02:00
end
end