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]
|
|
|
|
|
2015-12-24 10:12:23 +01:00
|
|
|
def login
|
2020-08-01 10:33:38 +02:00
|
|
|
if FranceConnectService.enabled?
|
|
|
|
redirect_to FranceConnectService.authorization_uri
|
|
|
|
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)
|
|
|
|
else
|
|
|
|
redirect_to france_connect_particulier_merge_path(fci.create_merge_token!)
|
|
|
|
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?
|
|
|
|
connect_france_connect_particulier(user)
|
|
|
|
else
|
|
|
|
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
|
|
|
|
|
2018-01-15 14:37:28 +01:00
|
|
|
private
|
|
|
|
|
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
|
|
|
|
2018-01-16 15:41:51 +01: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
|
2017-04-04 15:27:04 +02:00
|
|
|
end
|