gitlab-org--gitlab-foss/app/controllers/registrations_controller.rb

72 lines
1.7 KiB
Ruby
Raw Normal View History

2012-11-06 13:30:48 +00:00
class RegistrationsController < Devise::RegistrationsController
before_action :signup_enabled?
include Recaptcha::Verify
2012-11-06 13:30:48 +00:00
def new
redirect_to(new_user_session_path)
end
def create
if !Gitlab::Recaptcha.load_configurations! || verify_recaptcha
# 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
super
else
flash[:alert] = "There was an error with the reCAPTCHA code below. Please re-enter the code."
flash.delete :recaptcha_error
render action: 'new'
end
end
2013-02-06 11:44:09 +00:00
def destroy
DeleteUserService.new(current_user).execute(current_user)
2013-02-06 11:44:09 +00:00
respond_to do |format|
format.html { redirect_to new_user_session_path, notice: "Account successfully removed." }
end
end
protected
def build_resource(hash=nil)
super
end
def after_sign_up_path_for(user)
user.confirmed? ? dashboard_projects_path : users_almost_there_path
end
def after_inactive_sign_up_path_for(_resource)
2016-03-11 16:14:29 +00:00
users_almost_there_path
end
2012-11-06 13:30:48 +00:00
private
def signup_enabled?
2015-01-08 21:21:00 +00:00
unless current_application_settings.signup_enabled?
redirect_to(new_user_session_path)
end
2012-11-06 13:30:48 +00:00
end
2014-07-10 17:31:05 +00:00
def sign_up_params
params.require(:user).permit(:username, :email, :name, :password, :password_confirmation)
end
def resource_name
:user
end
def resource
2015-12-28 03:47:10 +00:00
@resource ||= User.new(sign_up_params)
end
def devise_mapping
@devise_mapping ||= Devise.mappings[:user]
end
end