registrations_controller.rb 3.6 KB
Newer Older
1 2
# frozen_string_literal: true

M
Marin Jankovski 已提交
3
class RegistrationsController < Devise::RegistrationsController
4
  include Recaptcha::Verify
5
  include AcceptsPendingInvitations
M
Marin Jankovski 已提交
6

7
  before_action :whitelist_query_limiting, only: [:destroy]
8 9 10
  before_action :ensure_terms_accepted,
                if: -> { Gitlab::CurrentSettings.current_application_settings.enforce_terms? },
                only: [:create]
11

12 13 14 15
  def new
    redirect_to(new_user_session_path)
  end

16
  def create
17 18 19 20 21 22
    # 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
23

24
    if !Gitlab::Recaptcha.load_configurations! || verify_recaptcha
25
      accept_pending_invitations
26 27 28
      super do |new_user|
        persist_accepted_terms_if_required(new_user)
      end
29
    else
30
      flash[:alert] = s_('Profiles|There was an error with the reCAPTCHA. Please solve the reCAPTCHA again.')
31 32 33
      flash.delete :recaptcha_error
      render action: 'new'
    end
34 35
  rescue Gitlab::Access::AccessDeniedError
    redirect_to(new_user_session_path)
36 37
  end

M
Marin Jankovski 已提交
38
  def destroy
39 40 41 42 43 44
    if destroy_confirmation_valid?
      current_user.delete_async(deleted_by: current_user)
      session.try(:destroy)
      redirect_to new_user_session_path, status: 303, notice: s_('Profiles|Account scheduled for removal.')
    else
      redirect_to profile_account_path, status: 303, alert: destroy_confirmation_failure_message
M
Marin Jankovski 已提交
45 46 47
    end
  end

48 49
  protected

50 51 52 53 54 55 56 57 58 59
  def persist_accepted_terms_if_required(new_user)
    return unless new_user.persisted?
    return unless Gitlab::CurrentSettings.current_application_settings.enforce_terms?

    if terms_accepted?
      terms = ApplicationSetting::Term.latest
      Users::RespondToTermsService.new(new_user, terms).execute(accepted: true)
    end
  end

60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
  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

76
  def build_resource(hash = nil)
77 78 79
    super
  end

80
  def after_sign_up_path_for(user)
81
    Gitlab::AppLogger.info("User Created: username=#{user.username} email=#{user.email} ip=#{request.remote_ip} confirmed:#{user.confirmed?}")
82
    user.confirmed? ? stored_location_for(user) || dashboard_projects_path : users_almost_there_path
83 84
  end

85 86
  def after_inactive_sign_up_path_for(resource)
    Gitlab::AppLogger.info("User Created: username=#{resource.username} email=#{resource.email} ip=#{request.remote_ip} confirmed:false")
P
Phil Hughes 已提交
87
    users_almost_there_path
88 89
  end

M
Marin Jankovski 已提交
90 91
  private

92
  def sign_up_params
93
    params.require(:user).permit(:username, :email, :email_confirmation, :name, :password)
94
  end
95 96 97 98 99 100

  def resource_name
    :user
  end

  def resource
G
geoandri 已提交
101
    @resource ||= Users::BuildService.new(current_user, sign_up_params).execute
102 103 104 105 106
  end

  def devise_mapping
    @devise_mapping ||= Devise.mappings[:user]
  end
107 108 109 110

  def whitelist_query_limiting
    Gitlab::QueryLimiting.whitelist('https://gitlab.com/gitlab-org/gitlab-ce/issues/42380')
  end
111 112 113 114 115 116 117 118 119 120

  def ensure_terms_accepted
    return if terms_accepted?

    redirect_to new_user_session_path, alert: _('You must accept our Terms of Service and privacy policy in order to register an account')
  end

  def terms_accepted?
    Gitlab::Utils.to_boolean(params[:terms_opt_in])
  end
121
end