2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-05 13:43:05 -08:00
|
|
|
class Auth::RegistrationsController < Devise::RegistrationsController
|
2017-02-07 18:04:29 -08:00
|
|
|
layout :determine_layout
|
2016-03-05 13:43:05 -08:00
|
|
|
|
2018-06-15 09:00:23 -07:00
|
|
|
before_action :set_invite, only: [:new, :create]
|
2017-04-04 06:26:57 -07:00
|
|
|
before_action :check_enabled_registrations, only: [:new, :create]
|
2016-09-29 12:28:21 -07:00
|
|
|
before_action :configure_sign_up_params, only: [:create]
|
2017-06-25 07:54:30 -07:00
|
|
|
before_action :set_sessions, only: [:edit, :update]
|
2017-10-13 00:35:07 -07:00
|
|
|
before_action :set_instance_presenter, only: [:new, :create, :update]
|
2018-07-30 16:14:33 -07:00
|
|
|
before_action :set_body_classes, only: [:new, :create]
|
2016-03-05 13:43:05 -08:00
|
|
|
|
2017-05-23 12:32:42 -07:00
|
|
|
def destroy
|
|
|
|
not_found
|
|
|
|
end
|
|
|
|
|
2016-03-05 13:43:05 -08:00
|
|
|
protected
|
|
|
|
|
2018-02-02 01:18:55 -08:00
|
|
|
def update_resource(resource, params)
|
|
|
|
params[:password] = nil if Devise.pam_authentication && resource.encrypted_password.blank?
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2016-03-05 13:43:05 -08:00
|
|
|
def build_resource(hash = nil)
|
|
|
|
super(hash)
|
2017-11-27 07:07:59 -08:00
|
|
|
|
|
|
|
resource.locale = I18n.locale
|
|
|
|
resource.invite_code = params[:invite_code] if resource.invite_code.blank?
|
|
|
|
|
2016-09-29 12:28:21 -07:00
|
|
|
resource.build_account if resource.account.nil?
|
2016-03-05 13:43:05 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def configure_sign_up_params
|
2016-08-17 08:56:23 -07:00
|
|
|
devise_parameter_sanitizer.permit(:sign_up) do |u|
|
2017-11-27 07:07:59 -08:00
|
|
|
u.permit({ account_attributes: [:username] }, :email, :password, :password_confirmation, :invite_code)
|
2016-03-05 13:43:05 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-26 05:42:10 -07:00
|
|
|
def after_sign_up_path_for(_resource)
|
2016-10-13 07:49:52 -07:00
|
|
|
new_user_session_path
|
2016-03-05 13:43:05 -08:00
|
|
|
end
|
2016-12-06 08:19:26 -08:00
|
|
|
|
2018-07-05 11:57:35 -07:00
|
|
|
def after_sign_in_path_for(_resource)
|
|
|
|
set_invite
|
|
|
|
|
|
|
|
if @invite&.autofollow?
|
|
|
|
short_account_path(@invite.user.account)
|
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-04 06:31:25 -08:00
|
|
|
def after_inactive_sign_up_path_for(_resource)
|
|
|
|
new_user_session_path
|
|
|
|
end
|
|
|
|
|
2018-01-02 07:55:00 -08:00
|
|
|
def after_update_path_for(_resource)
|
|
|
|
edit_user_registration_path
|
|
|
|
end
|
|
|
|
|
2017-04-04 06:26:57 -07:00
|
|
|
def check_enabled_registrations
|
2017-11-27 07:07:59 -08:00
|
|
|
redirect_to root_path if single_user_mode? || !allowed_registrations?
|
|
|
|
end
|
|
|
|
|
|
|
|
def allowed_registrations?
|
2018-06-15 09:00:23 -07:00
|
|
|
Setting.open_registrations || @invite&.valid_for_use?
|
2017-11-27 07:07:59 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def invite_code
|
|
|
|
if params[:user]
|
|
|
|
params[:user][:invite_code]
|
|
|
|
else
|
|
|
|
params[:invite_code]
|
|
|
|
end
|
2016-12-06 08:19:26 -08:00
|
|
|
end
|
2017-04-04 06:26:57 -07:00
|
|
|
|
2017-02-07 18:04:29 -08:00
|
|
|
private
|
2017-04-04 06:26:57 -07:00
|
|
|
|
2017-10-10 15:52:25 -07:00
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
|
|
|
|
2018-07-30 16:14:33 -07:00
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'lighter'
|
|
|
|
end
|
|
|
|
|
2018-06-15 09:00:23 -07:00
|
|
|
def set_invite
|
|
|
|
@invite = invite_code.present? ? Invite.find_by(code: invite_code) : nil
|
|
|
|
end
|
|
|
|
|
2017-02-07 18:04:29 -08:00
|
|
|
def determine_layout
|
|
|
|
%w(edit update).include?(action_name) ? 'admin' : 'auth'
|
|
|
|
end
|
2017-06-25 07:54:30 -07:00
|
|
|
|
|
|
|
def set_sessions
|
|
|
|
@sessions = current_user.session_activations
|
|
|
|
end
|
2016-03-05 13:43:05 -08:00
|
|
|
end
|