2019-08-09 17:32:13 +02:00
|
|
|
|
class Users::SessionsController < Devise::SessionsController
|
2019-01-14 16:25:48 +01:00
|
|
|
|
include ProcedureContextConcern
|
2018-10-30 18:24:29 +01:00
|
|
|
|
include TrustedDeviceConcern
|
|
|
|
|
include ActionView::Helpers::DateHelper
|
|
|
|
|
|
2023-05-25 15:19:55 +02:00
|
|
|
|
layout 'login', only: [:new, :create]
|
2019-01-08 08:20:49 +01:00
|
|
|
|
|
2019-01-14 16:25:48 +01:00
|
|
|
|
before_action :restore_procedure_context, only: [:new, :create]
|
2023-08-30 11:11:02 +02:00
|
|
|
|
skip_before_action :redirect_if_untrusted, only: [:reset_link_sent]
|
2018-01-15 19:14:09 +01:00
|
|
|
|
# POST /resource/sign_in
|
2015-10-07 14:19:16 +02:00
|
|
|
|
def create
|
2019-08-16 15:51:10 +02:00
|
|
|
|
user = User.find_by(email: params[:user][:email])
|
2015-10-07 14:19:16 +02:00
|
|
|
|
|
2019-08-16 15:51:10 +02:00
|
|
|
|
if user&.valid_password?(params[:user][:password])
|
2019-08-16 16:47:46 +02:00
|
|
|
|
user.update(loged_in_with_france_connect: nil)
|
2016-10-11 11:12:45 +02:00
|
|
|
|
end
|
2019-08-16 16:47:46 +02:00
|
|
|
|
|
|
|
|
|
super
|
2015-10-07 14:19:16 +02:00
|
|
|
|
end
|
2015-09-23 10:02:01 +02:00
|
|
|
|
|
2023-08-29 16:41:45 +02:00
|
|
|
|
def reset_link_sent
|
2023-08-30 10:44:59 +02:00
|
|
|
|
if send_login_token_or_bufferize(current_instructeur)
|
|
|
|
|
flash[:notice] = "Nous venons de vous renvoyer un nouveau lien de connexion sécurisée à #{APPLICATION_NAME}"
|
|
|
|
|
end
|
2023-08-29 16:41:45 +02:00
|
|
|
|
redirect_to link_sent_path(email: current_instructeur.email)
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-03 11:11:02 +02:00
|
|
|
|
def link_sent
|
2021-12-15 13:44:12 +01:00
|
|
|
|
if Devise.email_regexp.match?(params[:email])
|
|
|
|
|
@email = params[:email]
|
|
|
|
|
else
|
|
|
|
|
redirect_to root_path
|
|
|
|
|
end
|
2018-10-03 11:11:02 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-06-12 15:12:51 +02:00
|
|
|
|
# DELETE /resource/sign_out
|
2015-10-07 16:38:29 +02:00
|
|
|
|
def destroy
|
2016-10-11 11:12:45 +02:00
|
|
|
|
if user_signed_in?
|
|
|
|
|
connected_with_france_connect = current_user.loged_in_with_france_connect
|
2018-03-02 16:27:03 +01:00
|
|
|
|
current_user.update(loged_in_with_france_connect: '')
|
2015-10-07 16:38:29 +02:00
|
|
|
|
|
2016-10-11 11:12:45 +02:00
|
|
|
|
sign_out :user
|
|
|
|
|
|
2017-04-05 10:22:37 +02:00
|
|
|
|
case connected_with_france_connect
|
2018-08-28 11:41:37 +02:00
|
|
|
|
when User.loged_in_with_france_connects.fetch(:particulier)
|
2023-04-27 13:21:20 +02:00
|
|
|
|
redirect_to FRANCE_CONNECT[:particulier][:logout_endpoint], allow_other_host: true
|
2016-10-11 11:12:45 +02:00
|
|
|
|
return
|
|
|
|
|
end
|
2015-10-07 16:38:29 +02:00
|
|
|
|
end
|
2016-10-11 11:12:45 +02:00
|
|
|
|
|
|
|
|
|
respond_to_on_destroy
|
2015-10-07 16:38:29 +02:00
|
|
|
|
end
|
2015-09-23 10:02:01 +02:00
|
|
|
|
|
2016-05-26 15:59:50 +02:00
|
|
|
|
def no_procedure
|
2019-01-14 16:25:48 +01:00
|
|
|
|
clear_stored_location_for(:user)
|
2016-05-26 15:59:50 +02:00
|
|
|
|
redirect_to new_user_session_path
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-03 11:11:02 +02:00
|
|
|
|
def sign_in_by_link
|
2019-08-06 11:02:54 +02:00
|
|
|
|
instructeur = Instructeur.find(params[:id])
|
|
|
|
|
trusted_device_token = instructeur
|
2019-02-02 22:16:11 +01:00
|
|
|
|
.trusted_device_tokens
|
|
|
|
|
.find_by(token: params[:jeton])
|
|
|
|
|
|
2019-08-27 10:21:06 +02:00
|
|
|
|
if trusted_device_token.nil?
|
|
|
|
|
flash[:alert] = 'Votre lien est invalide.'
|
|
|
|
|
|
|
|
|
|
redirect_to root_path
|
|
|
|
|
elsif trusted_device_token.token_valid?
|
2019-02-04 11:57:50 +01:00
|
|
|
|
trust_device(trusted_device_token.created_at)
|
|
|
|
|
|
|
|
|
|
period = ((trusted_device_token.created_at + TRUSTED_DEVICE_PERIOD) - Time.zone.now).to_i / ActiveSupport::Duration::SECONDS_PER_DAY
|
|
|
|
|
|
|
|
|
|
flash.notice = "Merci d’avoir confirmé votre connexion. Votre navigateur est maintenant authentifié pour #{period} jours."
|
2018-10-30 18:24:29 +01:00
|
|
|
|
|
2018-11-22 18:11:00 +01:00
|
|
|
|
# redirect to procedure'url if stored by store_location_for(:user) in dossiers_controller
|
|
|
|
|
# redirect to root_path otherwise
|
2019-02-01 17:17:10 +01:00
|
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
|
if instructeur_signed_in?
|
2019-02-01 17:17:10 +01:00
|
|
|
|
redirect_to after_sign_in_path_for(:user)
|
|
|
|
|
else
|
|
|
|
|
redirect_to new_user_session_path
|
|
|
|
|
end
|
2018-10-03 11:11:02 +02:00
|
|
|
|
else
|
2019-08-27 10:21:06 +02:00
|
|
|
|
flash[:alert] = 'Votre lien est expiré, un nouveau vient de vous être envoyé.'
|
2019-02-01 17:17:10 +01:00
|
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
|
send_login_token_or_bufferize(instructeur)
|
|
|
|
|
redirect_to link_sent_path(email: instructeur.email)
|
2018-10-03 11:11:02 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2015-09-23 10:02:01 +02:00
|
|
|
|
end
|