2012-11-06 08:30:48 -05:00
|
|
|
class RegistrationsController < Devise::RegistrationsController
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :signup_enabled?
|
2015-12-27 12:03:06 -05:00
|
|
|
include Recaptcha::Verify
|
2012-11-06 08:30:48 -05:00
|
|
|
|
2015-02-05 09:56:28 -05:00
|
|
|
def new
|
|
|
|
redirect_to(new_user_session_path)
|
|
|
|
end
|
|
|
|
|
2015-12-27 12:03:06 -05:00
|
|
|
def create
|
2015-12-28 19:59:59 -05:00
|
|
|
if !Gitlab::Recaptcha.load_configurations! || verify_recaptcha
|
2016-04-19 16:00:45 -04:00
|
|
|
# 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
|
|
|
|
|
2015-12-27 12:03:06 -05:00
|
|
|
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 06:44:09 -05:00
|
|
|
def destroy
|
2015-06-22 18:08:02 -04:00
|
|
|
DeleteUserService.new(current_user).execute(current_user)
|
2013-02-06 06:44:09 -05:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to new_user_session_path, notice: "Account successfully removed." }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-18 07:22:41 -04:00
|
|
|
protected
|
|
|
|
|
2016-08-05 22:03:01 -04:00
|
|
|
def build_resource(hash = nil)
|
2013-03-18 07:22:41 -04:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2016-05-06 16:59:45 -04:00
|
|
|
def after_sign_up_path_for(user)
|
2016-05-20 13:52:42 -04:00
|
|
|
user.confirmed? ? dashboard_projects_path : users_almost_there_path
|
2014-07-04 08:19:59 -04:00
|
|
|
end
|
|
|
|
|
2014-09-30 16:28:05 -04:00
|
|
|
def after_inactive_sign_up_path_for(_resource)
|
2016-03-11 11:14:29 -05:00
|
|
|
users_almost_there_path
|
2014-07-04 08:19:59 -04:00
|
|
|
end
|
|
|
|
|
2012-11-06 08:30:48 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def signup_enabled?
|
2015-01-08 16:21:00 -05:00
|
|
|
unless current_application_settings.signup_enabled?
|
2015-01-08 12:53:35 -05:00
|
|
|
redirect_to(new_user_session_path)
|
2015-01-08 03:22:50 -05:00
|
|
|
end
|
2012-11-06 08:30:48 -05:00
|
|
|
end
|
2014-07-10 13:31:05 -04:00
|
|
|
|
|
|
|
def sign_up_params
|
|
|
|
params.require(:user).permit(:username, :email, :name, :password, :password_confirmation)
|
|
|
|
end
|
2015-12-27 12:03:06 -05:00
|
|
|
|
|
|
|
def resource_name
|
|
|
|
:user
|
|
|
|
end
|
|
|
|
|
|
|
|
def resource
|
2015-12-27 22:47:10 -05:00
|
|
|
@resource ||= User.new(sign_up_params)
|
2015-12-27 12:03:06 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def devise_mapping
|
|
|
|
@devise_mapping ||= Devise.mappings[:user]
|
|
|
|
end
|
2013-03-18 07:22:41 -04:00
|
|
|
end
|