2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-03 14:38:22 +00:00
|
|
|
class Auth::ConfirmationsController < Devise::ConfirmationsController
|
2022-01-25 21:37:12 +00:00
|
|
|
include CaptchaConcern
|
|
|
|
|
2016-10-03 14:38:22 +00:00
|
|
|
layout 'auth'
|
2017-12-30 23:20:07 +00:00
|
|
|
|
2018-07-30 23:14:33 +00:00
|
|
|
before_action :set_body_classes
|
2017-11-21 06:13:37 +00:00
|
|
|
before_action :set_pack
|
2022-01-25 21:37:12 +00:00
|
|
|
before_action :set_confirmation_user!, only: [:show, :confirm_captcha]
|
2019-09-04 02:13:54 +00:00
|
|
|
before_action :require_unconfirmed!
|
2017-09-10 07:58:38 +00:00
|
|
|
|
2022-01-25 21:37:12 +00:00
|
|
|
before_action :extend_csp_for_captcha!, only: [:show, :confirm_captcha]
|
|
|
|
before_action :require_captcha_if_needed!, only: [:show]
|
|
|
|
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 08:48:50 +00:00
|
|
|
skip_before_action :require_functional!
|
2018-02-04 04:42:13 +00:00
|
|
|
|
2019-09-04 02:13:54 +00:00
|
|
|
def new
|
|
|
|
super
|
|
|
|
|
|
|
|
resource.email = current_user.unconfirmed_email || current_user.email if user_signed_in?
|
|
|
|
end
|
|
|
|
|
2022-01-25 21:37:12 +00:00
|
|
|
def show
|
|
|
|
old_session_values = session.to_hash
|
|
|
|
reset_session
|
|
|
|
session.update old_session_values.except('session_id')
|
|
|
|
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def confirm_captcha
|
|
|
|
check_captcha! do |message|
|
|
|
|
flash.now[:alert] = message
|
|
|
|
render :captcha
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
show
|
|
|
|
end
|
|
|
|
|
2018-02-04 04:42:13 +00:00
|
|
|
private
|
|
|
|
|
2022-01-25 21:37:12 +00:00
|
|
|
def require_captcha_if_needed!
|
|
|
|
render :captcha if captcha_required?
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_confirmation_user!
|
|
|
|
# We need to reimplement looking up the user because
|
|
|
|
# Devise::ConfirmationsController#show looks up and confirms in one
|
|
|
|
# step.
|
|
|
|
confirmation_token = params[:confirmation_token]
|
|
|
|
return if confirmation_token.nil?
|
|
|
|
@confirmation_user = User.find_first_by_auth_conditions(confirmation_token: confirmation_token)
|
|
|
|
end
|
|
|
|
|
|
|
|
def captcha_user_bypass?
|
|
|
|
return true if @confirmation_user.nil? || @confirmation_user.confirmed?
|
|
|
|
|
|
|
|
invite = Invite.find(@confirmation_user.invite_id) if @confirmation_user.invite_id.present?
|
|
|
|
invite.present? && !invite.max_uses.nil?
|
|
|
|
end
|
|
|
|
|
2018-06-21 21:48:54 +00:00
|
|
|
def set_pack
|
|
|
|
use_pack 'auth'
|
|
|
|
end
|
|
|
|
|
2019-09-04 02:13:54 +00:00
|
|
|
def require_unconfirmed!
|
2021-05-03 13:45:19 +00:00
|
|
|
if user_signed_in? && current_user.confirmed? && current_user.unconfirmed_email.blank?
|
|
|
|
redirect_to(current_user.approved? ? root_path : edit_user_registration_path)
|
|
|
|
end
|
2019-09-04 02:13:54 +00:00
|
|
|
end
|
|
|
|
|
2018-07-30 23:14:33 +00:00
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'lighter'
|
|
|
|
end
|
|
|
|
|
2019-09-04 02:13:54 +00:00
|
|
|
def after_resending_confirmation_instructions_path_for(_resource_name)
|
|
|
|
if user_signed_in?
|
2019-09-05 04:13:50 +00:00
|
|
|
if current_user.confirmed? && current_user.approved?
|
2019-09-04 02:13:54 +00:00
|
|
|
edit_user_registration_path
|
|
|
|
else
|
|
|
|
auth_setup_path
|
|
|
|
end
|
|
|
|
else
|
|
|
|
new_user_session_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-24 18:12:38 +00:00
|
|
|
def after_confirmation_path_for(_resource_name, user)
|
|
|
|
if user.created_by_application && truthy_param?(:redirect_to_app)
|
2022-05-26 20:03:54 +00:00
|
|
|
user.created_by_application.confirmation_redirect_uri
|
2018-12-24 18:12:38 +00:00
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
2016-10-03 14:38:22 +00:00
|
|
|
end
|