2012-11-06 08:30:48 -05:00
|
|
|
class RegistrationsController < Devise::RegistrationsController
|
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
|
2017-01-03 02:08:21 -05: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
|
2016-04-19 16:00:45 -04:00
|
|
|
|
2017-01-03 02:08:21 -05:00
|
|
|
if !Gitlab::Recaptcha.load_configurations! || verify_recaptcha
|
2015-12-27 12:03:06 -05:00
|
|
|
super
|
|
|
|
else
|
2017-01-27 11:25:39 -05:00
|
|
|
flash[:alert] = 'There was an error with the reCAPTCHA. Please solve the reCAPTCHA again.'
|
2015-12-27 12:03:06 -05:00
|
|
|
flash.delete :recaptcha_error
|
|
|
|
render action: 'new'
|
|
|
|
end
|
2017-03-27 05:37:24 -04:00
|
|
|
rescue Gitlab::Access::AccessDeniedError
|
|
|
|
redirect_to(new_user_session_path)
|
2015-12-27 12:03:06 -05:00
|
|
|
end
|
|
|
|
|
2013-02-06 06:44:09 -05:00
|
|
|
def destroy
|
2017-06-02 09:18:24 -04:00
|
|
|
current_user.delete_async(deleted_by: current_user)
|
2013-02-06 06:44:09 -05:00
|
|
|
|
|
|
|
respond_to do |format|
|
2016-12-06 19:51:33 -05:00
|
|
|
format.html do
|
|
|
|
session.try(:destroy)
|
2017-06-06 18:45:16 -04:00
|
|
|
redirect_to new_user_session_path, status: 302, notice: "Account scheduled for removal."
|
2017-01-27 11:25:39 -05:00
|
|
|
end
|
2013-02-06 06:44:09 -05:00
|
|
|
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
|
|
|
|
|
2014-07-10 13:31:05 -04:00
|
|
|
def sign_up_params
|
2016-11-11 19:47:32 -05:00
|
|
|
params.require(:user).permit(:username, :email, :email_confirmation, :name, :password)
|
2014-07-10 13:31:05 -04:00
|
|
|
end
|
2015-12-27 12:03:06 -05:00
|
|
|
|
|
|
|
def resource_name
|
|
|
|
:user
|
|
|
|
end
|
|
|
|
|
|
|
|
def resource
|
2017-04-13 04:47:52 -04:00
|
|
|
@resource ||= Users::BuildService.new(current_user, sign_up_params).execute
|
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
|