2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-05 16:43:05 -05:00
|
|
|
class Auth::RegistrationsController < Devise::RegistrationsController
|
2017-02-07 21:04:29 -05:00
|
|
|
layout :determine_layout
|
2016-03-05 16:43:05 -05:00
|
|
|
|
2017-04-04 09:26:57 -04:00
|
|
|
before_action :check_enabled_registrations, only: [:new, :create]
|
2016-09-29 15:28:21 -04:00
|
|
|
before_action :configure_sign_up_params, only: [:create]
|
2017-06-25 10:54:30 -04:00
|
|
|
before_action :set_sessions, only: [:edit, :update]
|
2017-10-13 03:35:07 -04:00
|
|
|
before_action :set_instance_presenter, only: [:new, :create, :update]
|
2016-03-05 16:43:05 -05:00
|
|
|
|
2017-05-23 15:32:42 -04:00
|
|
|
def destroy
|
|
|
|
not_found
|
|
|
|
end
|
|
|
|
|
2016-03-05 16:43:05 -05:00
|
|
|
protected
|
|
|
|
|
|
|
|
def build_resource(hash = nil)
|
|
|
|
super(hash)
|
2017-04-17 04:29:08 -04:00
|
|
|
resource.locale = I18n.locale
|
2016-09-29 15:28:21 -04:00
|
|
|
resource.build_account if resource.account.nil?
|
2016-03-05 16:43:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def configure_sign_up_params
|
2016-08-17 11:56:23 -04:00
|
|
|
devise_parameter_sanitizer.permit(:sign_up) do |u|
|
|
|
|
u.permit({ account_attributes: [:username] }, :email, :password, :password_confirmation)
|
2016-03-05 16:43:05 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-26 08:42:10 -04:00
|
|
|
def after_sign_up_path_for(_resource)
|
2016-10-13 10:49:52 -04:00
|
|
|
new_user_session_path
|
2016-03-05 16:43:05 -05:00
|
|
|
end
|
2016-12-06 11:19:26 -05:00
|
|
|
|
2017-01-04 09:31:25 -05:00
|
|
|
def after_inactive_sign_up_path_for(_resource)
|
|
|
|
new_user_session_path
|
|
|
|
end
|
|
|
|
|
2017-04-04 09:26:57 -04:00
|
|
|
def check_enabled_registrations
|
2017-04-15 10:46:27 -04:00
|
|
|
redirect_to root_path if single_user_mode? || !Setting.open_registrations
|
2016-12-06 11:19:26 -05:00
|
|
|
end
|
2017-04-04 09:26:57 -04:00
|
|
|
|
2017-02-07 21:04:29 -05:00
|
|
|
private
|
2017-04-04 09:26:57 -04:00
|
|
|
|
2017-10-10 18:52:25 -04:00
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
|
|
|
|
2017-02-07 21:04:29 -05:00
|
|
|
def determine_layout
|
|
|
|
%w(edit update).include?(action_name) ? 'admin' : 'auth'
|
|
|
|
end
|
2017-06-25 10:54:30 -04:00
|
|
|
|
|
|
|
def set_sessions
|
|
|
|
@sessions = current_user.session_activations
|
|
|
|
end
|
2016-03-05 16:43:05 -05:00
|
|
|
end
|