379 lines
12 KiB
Ruby
379 lines
12 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class RegistrationsController < Devise::RegistrationsController
|
|
include Recaptcha::Adapters::ControllerMethods
|
|
include AcceptsPendingInvitations
|
|
include RecaptchaHelper
|
|
include InvisibleCaptchaOnSignup
|
|
include OneTrustCSP
|
|
include BizibleCSP
|
|
include PreferredLanguageSwitcher
|
|
include Gitlab::Tracking::Helpers::WeakPasswordErrorEvent
|
|
include SkipsAlreadySignedInMessage
|
|
include Gitlab::RackLoadBalancingHelpers
|
|
include ::Gitlab::Utils::StrongMemoize
|
|
include Onboarding::Redirectable
|
|
|
|
layout 'devise'
|
|
|
|
prepend_before_action :initialize_timer, only: :create
|
|
prepend_before_action :check_captcha, only: :create
|
|
before_action :ensure_first_name_and_last_name_not_empty, only: :create
|
|
before_action :ensure_destroy_prerequisites_met, only: [:destroy]
|
|
before_action :init_preferred_language, only: :new
|
|
before_action :load_recaptcha, only: :new
|
|
before_action only: [:create] do
|
|
check_rate_limit!(:user_sign_up, scope: request.ip)
|
|
invite_email # set for failure path so we still remember we are invite in form
|
|
end
|
|
|
|
feature_category :instance_resiliency
|
|
|
|
helper_method :arkose_labs_enabled?, :preregistration_tracking_label, :onboarding_status_presenter
|
|
|
|
def new
|
|
@resource = build_resource
|
|
set_invite_params
|
|
end
|
|
|
|
def create
|
|
store_duration(:set_resource_fields) { set_resource_fields }
|
|
|
|
devise_call_start_time = current_monotonic_time
|
|
|
|
super do |new_user|
|
|
if new_user.persisted?
|
|
store_duration(:devise_create_user, devise_call_start_time)
|
|
store_duration(:after_successful_create_hook) { after_successful_create_hook(new_user) }
|
|
else
|
|
store_duration(:track_error) { track_error(new_user) }
|
|
end
|
|
end
|
|
# Devise sets a flash message on both successful & failed signups,
|
|
# but we only want to show a message if the resource is blocked by a pending approval.
|
|
flash[:notice] = nil unless allow_flash_content?(resource)
|
|
log_registration_metrics
|
|
rescue Gitlab::Access::AccessDeniedError
|
|
redirect_to(new_user_session_path)
|
|
end
|
|
|
|
def destroy
|
|
if current_user.required_terms_not_accepted?
|
|
redirect_to profile_account_path, status: :see_other,
|
|
alert: s_('Profiles|You must accept the Terms of Service in order to perform this action.')
|
|
return
|
|
end
|
|
|
|
if destroy_confirmation_valid?
|
|
current_user.delete_async(deleted_by: current_user)
|
|
session.try(:destroy)
|
|
redirect_to new_user_session_path, status: :see_other, notice: s_('Profiles|Account scheduled for removal.')
|
|
else
|
|
redirect_to profile_account_path, status: :see_other, alert: destroy_confirmation_failure_message
|
|
end
|
|
end
|
|
|
|
protected
|
|
|
|
def persist_accepted_terms_if_required(new_user)
|
|
return unless Gitlab::CurrentSettings.current_application_settings.enforce_terms?
|
|
|
|
terms = ApplicationSetting::Term.latest
|
|
Users::RespondToTermsService.new(new_user, terms).execute(accepted: true)
|
|
end
|
|
|
|
def destroy_confirmation_valid?
|
|
if current_user.confirm_deletion_with_password?
|
|
current_user.valid_password?(params[:password])
|
|
else
|
|
current_user.username == params[:username]
|
|
end
|
|
end
|
|
|
|
def destroy_confirmation_failure_message
|
|
if current_user.confirm_deletion_with_password?
|
|
s_('Profiles|Invalid password')
|
|
else
|
|
s_('Profiles|Invalid username')
|
|
end
|
|
end
|
|
|
|
def build_resource(hash = nil)
|
|
super
|
|
end
|
|
|
|
# overridden by EE module
|
|
def after_successful_create_hook(user)
|
|
store_duration(:accept_pending_invitations) { accept_pending_invitations }
|
|
store_duration(:persist_accepted_terms_if_required) { persist_accepted_terms_if_required(user) }
|
|
store_duration(:execute_system_hooks) { execute_system_hooks(user) }
|
|
store_duration(:notify_new_instance_access_request) { notify_new_instance_access_request(user) }
|
|
store_duration(:track_successful_user_creation) { track_successful_user_creation(user) }
|
|
end
|
|
|
|
def execute_system_hooks(user)
|
|
SystemHooksService.new.execute_hooks_for(user, :create)
|
|
end
|
|
|
|
def notify_new_instance_access_request(user)
|
|
return unless pending_approval?
|
|
|
|
NotificationService.new.new_instance_access_request(user)
|
|
end
|
|
|
|
def after_sign_up_path_for(user)
|
|
Gitlab::AppLogger.info(user_created_message(confirmed: user.confirmed?))
|
|
|
|
# Member#accept_invite! operates on the member record to change the association, so the user needs reloaded
|
|
# to update the collection.
|
|
user.reset
|
|
after_sign_up_path
|
|
end
|
|
|
|
def after_inactive_sign_up_path_for(resource)
|
|
Gitlab::AppLogger.info(user_created_message)
|
|
return new_user_session_path(anchor: 'login-pane') if resource.blocked_pending_approval?
|
|
return dashboard_projects_path if Gitlab::CurrentSettings.email_confirmation_setting_soft?
|
|
|
|
# when email_confirmation_setting is set to `hard`, path to redirect is saved
|
|
# after user confirms and comes back, he will be redirected
|
|
store_location_for(:redirect, after_sign_up_path)
|
|
|
|
if identity_verification_enabled?
|
|
session[:verification_user_id] = resource.id # This is needed to find the user on the identity verification page
|
|
load_balancer_stick_request(::User, :user, resource.id)
|
|
|
|
return identity_verification_redirect_path
|
|
end
|
|
|
|
Gitlab::Tracking.event(self.class.name, 'render', user: resource)
|
|
users_almost_there_path(email: resource.email)
|
|
end
|
|
|
|
private
|
|
|
|
def current_monotonic_time
|
|
::Gitlab::Metrics::System.monotonic_time
|
|
end
|
|
|
|
def format_duration(duration)
|
|
duration.round(Gitlab::InstrumentationHelper::DURATION_PRECISION)
|
|
end
|
|
|
|
def initialize_timer
|
|
@overall_start_time = current_monotonic_time
|
|
end
|
|
|
|
def duration_statistics
|
|
@duration_statistics ||= {}
|
|
end
|
|
|
|
def store_duration(operation_name, start = nil, &block)
|
|
start ||= current_monotonic_time
|
|
output = yield if block
|
|
duration_key = :"#{operation_name}_duration_s"
|
|
duration_statistics[duration_key] = format_duration(current_monotonic_time - start)
|
|
output
|
|
rescue StandardError => e
|
|
# Log timing failure but don't break registration
|
|
Gitlab::AppJsonLogger.warn("Timing instrumentation failed for #{operation_name}: #{e.message}")
|
|
output
|
|
end
|
|
|
|
def log_registration_metrics
|
|
overall_duration = format_duration(current_monotonic_time - @overall_start_time)
|
|
|
|
Gitlab::AppJsonLogger.info(
|
|
event: 'user_registration_duration',
|
|
total_duration_s: overall_duration,
|
|
**@duration_statistics
|
|
)
|
|
rescue StandardError => e
|
|
# Log timing failure but don't break registration
|
|
Gitlab::AppJsonLogger.warn("Error logging registration metrics: #{e.message}")
|
|
end
|
|
|
|
def onboarding_status_presenter
|
|
Onboarding::StatusPresenter.new(onboarding_status_params, session['user_return_to'], resource)
|
|
end
|
|
strong_memoize_attr :onboarding_status_presenter
|
|
|
|
# rubocop:disable Gitlab/NoCodeCoverageComment -- Fully tested in EE and tested in Foss through feature specs in spec/features/invites_spec.rb
|
|
# :nocov:
|
|
def onboarding_status_params
|
|
# Onboarding::StatusPresenter does not use any params in CE, we'll override in EE
|
|
{}
|
|
end
|
|
# rubocop:enable Gitlab/NoCodeCoverageComment
|
|
|
|
def allow_flash_content?(user)
|
|
user.blocked_pending_approval? || onboarding_status_presenter.single_invite?
|
|
end
|
|
|
|
def track_successful_user_creation(user)
|
|
label = user_invited? ? 'invited' : 'signup'
|
|
Gitlab::Tracking.event(self.class.name, 'create_user', label: label, user: user)
|
|
end
|
|
|
|
def ensure_destroy_prerequisites_met
|
|
if current_user.solo_owned_groups.present?
|
|
redirect_to profile_account_path, status: :see_other,
|
|
alert: s_('Profiles|You must transfer ownership or delete groups ' \
|
|
'you are an owner of before you can delete your account')
|
|
end
|
|
end
|
|
|
|
def user_created_message(confirmed: false)
|
|
"User Created: username=#{resource.username} email=#{resource.email} ip=#{request.remote_ip} confirmed:#{confirmed}"
|
|
end
|
|
|
|
def ensure_correct_params!
|
|
# To avoid duplicate form fields on the login page, the registration form
|
|
# names fields using `new_user`, but Devise still wants the params in
|
|
# `user`.
|
|
if params["new_#{resource_name}"].present? && params[resource_name].blank?
|
|
params[resource_name] = params.delete(:"new_#{resource_name}")
|
|
end
|
|
end
|
|
|
|
def check_captcha
|
|
set_current_organization
|
|
return unless show_recaptcha_sign_up?
|
|
return unless Gitlab::Recaptcha.load_configurations!
|
|
|
|
return if verify_recaptcha
|
|
|
|
flash[:alert] = _('There was an error with the reCAPTCHA. Please solve the reCAPTCHA again.')
|
|
flash.delete :recaptcha_error
|
|
add_gon_variables
|
|
set_minimum_password_length
|
|
render action: 'new'
|
|
end
|
|
|
|
def ensure_first_name_and_last_name_not_empty
|
|
first_name = params.dig(resource_name, :first_name) || params.dig("new_#{resource_name}", :first_name)
|
|
last_name = params.dig(resource_name, :last_name) || params.dig("new_#{resource_name}", :last_name)
|
|
|
|
return if first_name.present? && last_name.present?
|
|
|
|
resource.errors.add(_('First name'), _("cannot be blank")) if first_name.blank?
|
|
resource.errors.add(_('Last name'), _("cannot be blank")) if last_name.blank?
|
|
|
|
render action: 'new'
|
|
end
|
|
|
|
def pending_approval?
|
|
return false unless Gitlab::CurrentSettings.require_admin_approval_after_user_signup
|
|
|
|
resource.blocked_pending_approval?
|
|
end
|
|
|
|
def sign_up_params_attributes
|
|
[:username, :email, :name, :first_name, :last_name, :password]
|
|
end
|
|
|
|
def sign_up_params
|
|
ensure_correct_params!
|
|
params.require(:user).permit(sign_up_params_attributes)
|
|
end
|
|
|
|
def resource_name
|
|
:user
|
|
end
|
|
|
|
def resource
|
|
@resource ||= Users::RegistrationsBuildService
|
|
.new(current_user, sign_up_params.merge({ skip_confirmation: skip_confirmation?,
|
|
preferred_language: preferred_language,
|
|
organization_id: Current.organization.id }))
|
|
.execute
|
|
end
|
|
|
|
def devise_mapping
|
|
@devise_mapping ||= Devise.mappings[:user]
|
|
end
|
|
|
|
def skip_confirmation?
|
|
registered_with_invite_email?
|
|
end
|
|
|
|
def registered_with_invite_email?
|
|
invite_email = session.delete(:invite_email)
|
|
|
|
sign_up_params[:email] == invite_email
|
|
end
|
|
strong_memoize_attr :registered_with_invite_email?
|
|
|
|
def load_recaptcha
|
|
Gitlab::Recaptcha.load_configurations!
|
|
end
|
|
|
|
# overridden by EE module
|
|
def set_resource_fields
|
|
return unless set_blocked_pending_approval?
|
|
|
|
resource.state = User::BLOCKED_PENDING_APPROVAL_STATE
|
|
end
|
|
|
|
def set_blocked_pending_approval?
|
|
Gitlab::CurrentSettings.require_admin_approval_after_user_signup
|
|
end
|
|
|
|
def set_invite_params
|
|
resource.email = invite_email if resource.email.blank? && params[:invite_email].present?
|
|
end
|
|
|
|
def invite_email
|
|
ActionController::Base.helpers.sanitize(params[:invite_email])
|
|
end
|
|
strong_memoize_attr :invite_email
|
|
|
|
def user_invited?
|
|
!!member_id
|
|
end
|
|
|
|
def member_id
|
|
@member_id ||= session.delete(:originating_member_id)
|
|
end
|
|
|
|
def after_pending_invitations_hook
|
|
return unless member_id
|
|
|
|
# if invited multiple times to different projects, only the email clicked will be counted as accepted
|
|
# for the specific member on a project or group
|
|
member = resource.members.find_by(id: member_id) # rubocop: disable CodeReuse/ActiveRecord
|
|
|
|
return unless member
|
|
|
|
Gitlab::Tracking.event(self.class.name, 'accepted', label: 'invite_email', user: resource)
|
|
end
|
|
|
|
def context_user
|
|
current_user
|
|
end
|
|
|
|
def identity_verification_enabled?
|
|
# overridden by EE module
|
|
false
|
|
end
|
|
|
|
def identity_verification_redirect_path
|
|
# overridden by EE module
|
|
end
|
|
|
|
def arkose_labs_enabled?(user:) # rubocop:disable Lint/UnusedMethodArgument -- Param is unused here but used in EE override
|
|
false
|
|
end
|
|
|
|
def preregistration_tracking_label
|
|
# overridden by EE module
|
|
end
|
|
|
|
# overridden by EE module
|
|
def track_error(new_user)
|
|
track_weak_password_error(new_user, self.class.name, 'create')
|
|
end
|
|
end
|
|
|
|
RegistrationsController.prepend_mod_with('RegistrationsController')
|