2015-12-24 10:12:23 +01:00
|
|
|
class FranceConnect::ParticulierController < ApplicationController
|
2018-01-15 21:18:02 +01:00
|
|
|
before_action :redirect_to_login_if_fc_aborted, only: [:callback]
|
2021-11-17 16:21:55 +01:00
|
|
|
before_action :securely_retrieve_fci, only: [:merge, :merge_with_existing_account, :merge_with_new_account, :mail_merge_with_existing_account, :resend_and_renew_merge_confirmation]
|
2018-01-15 21:18:02 +01:00
|
|
|
|
2015-12-24 10:12:23 +01:00
|
|
|
def login
|
2020-08-01 10:33:38 +02:00
|
|
|
if FranceConnectService.enabled?
|
2023-04-27 13:21:20 +02:00
|
|
|
redirect_to FranceConnectService.authorization_uri, allow_other_host: true
|
2020-08-01 10:33:38 +02:00
|
|
|
else
|
|
|
|
redirect_to new_user_session_path
|
|
|
|
end
|
2015-12-24 10:12:23 +01:00
|
|
|
end
|
|
|
|
|
2016-01-21 17:06:09 +01:00
|
|
|
def callback
|
2021-02-01 14:28:04 +01:00
|
|
|
fci = FranceConnectService.find_or_retrieve_france_connect_information(params[:code])
|
2021-10-11 11:39:14 +02:00
|
|
|
|
|
|
|
if fci.user.nil?
|
2021-10-13 00:45:20 +02:00
|
|
|
preexisting_unlinked_user = User.find_by(email: fci.email_france_connect.downcase)
|
2021-10-11 11:30:45 +02:00
|
|
|
|
2021-10-13 00:45:20 +02:00
|
|
|
if preexisting_unlinked_user.nil?
|
|
|
|
fci.associate_user!(fci.email_france_connect)
|
|
|
|
connect_france_connect_particulier(fci.user)
|
2021-11-23 10:44:38 +01:00
|
|
|
elsif !preexisting_unlinked_user.can_france_connect?
|
|
|
|
fci.destroy
|
|
|
|
redirect_to new_user_session_path, alert: t('errors.messages.france_connect.forbidden_html', reset_link: new_user_password_path)
|
2021-10-13 00:45:20 +02:00
|
|
|
else
|
2021-11-17 16:21:55 +01:00
|
|
|
merge_token = fci.create_merge_token!
|
|
|
|
redirect_to france_connect_particulier_merge_path(merge_token)
|
2021-10-13 00:45:20 +02:00
|
|
|
end
|
2021-10-11 11:30:45 +02:00
|
|
|
else
|
2021-10-13 00:45:20 +02:00
|
|
|
user = fci.user
|
|
|
|
|
|
|
|
if user.can_france_connect?
|
2021-10-13 15:45:57 +02:00
|
|
|
fci.update(updated_at: Time.zone.now)
|
2021-10-13 00:45:20 +02:00
|
|
|
connect_france_connect_particulier(user)
|
2021-11-17 16:21:55 +01:00
|
|
|
else # same behaviour as redirect nicely with message when instructeur/administrateur
|
2021-10-13 00:45:20 +02:00
|
|
|
fci.destroy
|
|
|
|
redirect_to new_user_session_path, alert: t('errors.messages.france_connect.forbidden_html', reset_link: new_user_password_path)
|
|
|
|
end
|
2015-12-24 10:12:23 +01:00
|
|
|
end
|
2018-01-16 12:08:50 +01:00
|
|
|
|
2016-01-21 17:06:09 +01:00
|
|
|
rescue Rack::OAuth2::Client::Error => e
|
|
|
|
Rails.logger.error e.message
|
|
|
|
redirect_france_connect_error_connection
|
|
|
|
end
|
2015-12-24 10:12:23 +01:00
|
|
|
|
2021-10-13 00:45:20 +02:00
|
|
|
def merge
|
|
|
|
end
|
|
|
|
|
2021-10-13 09:23:40 +02:00
|
|
|
def merge_with_existing_account
|
|
|
|
user = User.find_by(email: sanitized_email_params)
|
|
|
|
|
2021-10-19 11:21:24 +02:00
|
|
|
if user.present? && user.valid_for_authentication? { user.valid_password?(password_params) }
|
2021-10-13 09:23:40 +02:00
|
|
|
if !user.can_france_connect?
|
2021-11-23 13:30:07 +01:00
|
|
|
flash.alert = t('errors.messages.france_connect.forbidden_html', reset_link: new_user_password_path)
|
2021-10-13 09:23:40 +02:00
|
|
|
|
2022-07-13 14:03:41 +02:00
|
|
|
redirect_to root_path
|
2021-10-13 09:23:40 +02:00
|
|
|
else
|
|
|
|
@fci.update(user: user)
|
|
|
|
@fci.delete_merge_token!
|
|
|
|
|
2021-11-23 13:30:07 +01:00
|
|
|
flash.notice = t('france_connect.particulier.flash.connection_done', application_name: APPLICATION_NAME)
|
2021-10-13 09:23:40 +02:00
|
|
|
connect_france_connect_particulier(user)
|
|
|
|
end
|
|
|
|
else
|
2021-11-23 13:30:07 +01:00
|
|
|
flash.alert = t('france_connect.particulier.flash.invalid_password')
|
2021-10-13 09:23:40 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-11-17 16:21:55 +01:00
|
|
|
def mail_merge_with_existing_account
|
|
|
|
user = User.find_by(email: @fci.email_france_connect.downcase)
|
|
|
|
if user.can_france_connect?
|
|
|
|
@fci.update(user: user)
|
|
|
|
@fci.delete_merge_token!
|
|
|
|
|
2021-11-23 13:30:07 +01:00
|
|
|
flash.notice = t('france_connect.particulier.flash.connection_done', application_name: APPLICATION_NAME)
|
2021-11-17 16:21:55 +01:00
|
|
|
connect_france_connect_particulier(user)
|
|
|
|
else # same behaviour as redirect nicely with message when instructeur/administrateur
|
|
|
|
@fci.destroy
|
|
|
|
redirect_to new_user_session_path, alert: t('errors.messages.france_connect.forbidden_html', reset_link: new_user_password_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-10-13 09:26:54 +02:00
|
|
|
def merge_with_new_account
|
|
|
|
user = User.find_by(email: sanitized_email_params)
|
|
|
|
|
|
|
|
if user.nil?
|
|
|
|
@fci.associate_user!(sanitized_email_params)
|
|
|
|
@fci.delete_merge_token!
|
|
|
|
|
2021-11-23 13:30:07 +01:00
|
|
|
flash.notice = t('france_connect.particulier.flash.connection_done', application_name: APPLICATION_NAME)
|
2021-10-13 09:26:54 +02:00
|
|
|
connect_france_connect_particulier(@fci.user)
|
|
|
|
else
|
2021-10-13 01:08:57 +02:00
|
|
|
@email = sanitized_email_params
|
|
|
|
@merge_token = merge_token_params
|
2021-10-13 09:26:54 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-11-17 16:21:55 +01:00
|
|
|
def resend_and_renew_merge_confirmation
|
|
|
|
merge_token = @fci.create_merge_token!
|
2021-11-23 13:30:07 +01:00
|
|
|
UserMailer.france_connect_merge_confirmation(@fci.email_france_connect, merge_token, @fci.merge_token_created_at).deliver_later
|
2021-11-17 16:21:55 +01:00
|
|
|
redirect_to france_connect_particulier_merge_path(merge_token),
|
2021-11-23 13:30:07 +01:00
|
|
|
notice: t('france_connect.particulier.flash.confirmation_mail_sent')
|
2021-11-17 16:21:55 +01:00
|
|
|
end
|
|
|
|
|
2018-01-15 14:37:28 +01:00
|
|
|
private
|
|
|
|
|
2021-10-13 09:23:14 +02:00
|
|
|
def securely_retrieve_fci
|
|
|
|
@fci = FranceConnectInformation.find_by(merge_token: merge_token_params)
|
|
|
|
|
|
|
|
if @fci.nil? || !@fci.valid_for_merge?
|
2021-11-23 13:30:07 +01:00
|
|
|
flash.alert = t('france_connect.particulier.flash.merger_token_expired', application_name: APPLICATION_NAME)
|
2021-10-13 09:23:14 +02:00
|
|
|
|
2022-07-13 14:03:41 +02:00
|
|
|
redirect_to root_path
|
2021-10-13 09:23:14 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-15 21:18:02 +01:00
|
|
|
def redirect_to_login_if_fc_aborted
|
2019-05-09 13:54:50 +02:00
|
|
|
if params[:code].blank?
|
2018-01-15 21:18:02 +01:00
|
|
|
redirect_to new_user_session_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-20 17:47:37 +01:00
|
|
|
def connect_france_connect_particulier(user)
|
2018-10-01 13:24:37 +02:00
|
|
|
if user_signed_in?
|
|
|
|
sign_out :user
|
|
|
|
end
|
|
|
|
|
2015-12-24 10:12:23 +01:00
|
|
|
sign_in user
|
|
|
|
|
2018-08-28 11:41:37 +02:00
|
|
|
user.update_attribute('loged_in_with_france_connect', User.loged_in_with_france_connects.fetch(:particulier))
|
2015-12-24 10:12:23 +01:00
|
|
|
|
2022-07-13 14:03:41 +02:00
|
|
|
redirect_to stored_location_for(current_user) || root_path(current_user)
|
2015-12-24 10:12:23 +01:00
|
|
|
end
|
2016-01-21 17:06:09 +01:00
|
|
|
|
|
|
|
def redirect_france_connect_error_connection
|
|
|
|
flash.alert = t('errors.messages.france_connect.connexion')
|
|
|
|
redirect_to(new_user_session_path)
|
|
|
|
end
|
2021-10-13 09:23:14 +02:00
|
|
|
|
|
|
|
def merge_token_params
|
|
|
|
params[:merge_token]
|
|
|
|
end
|
2021-10-13 09:23:40 +02:00
|
|
|
|
|
|
|
def password_params
|
|
|
|
params[:password]
|
|
|
|
end
|
|
|
|
|
|
|
|
def sanitized_email_params
|
|
|
|
params[:email]&.gsub(/[[:space:]]/, ' ')&.strip&.downcase
|
|
|
|
end
|
2017-04-04 15:27:04 +02:00
|
|
|
end
|