2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-05 21:43:05 +00:00
|
|
|
class Auth::RegistrationsController < Devise::RegistrationsController
|
2020-12-10 05:27:26 +00:00
|
|
|
include RegistrationSpamConcern
|
2020-07-07 14:26:31 +01:00
|
|
|
|
2017-02-08 02:04:29 +00:00
|
|
|
layout :determine_layout
|
2016-03-05 21:43:05 +00:00
|
|
|
|
2018-06-15 17:00:23 +01:00
|
|
|
before_action :set_invite, only: [:new, :create]
|
2017-04-04 14:26:57 +01:00
|
|
|
before_action :check_enabled_registrations, only: [:new, :create]
|
2016-09-29 20:28:21 +01:00
|
|
|
before_action :configure_sign_up_params, only: [:create]
|
2017-06-25 15:54:30 +01:00
|
|
|
before_action :set_sessions, only: [:edit, :update]
|
2022-02-14 20:27:53 +00:00
|
|
|
before_action :set_strikes, only: [:edit, :update]
|
2017-10-13 08:35:07 +01:00
|
|
|
before_action :set_instance_presenter, only: [:new, :create, :update]
|
2018-10-26 21:49:17 +01:00
|
|
|
before_action :set_body_classes, only: [:new, :create, :edit, :update]
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 09:48:50 +01:00
|
|
|
before_action :require_not_suspended!, only: [:update]
|
2019-12-30 03:38:30 +00:00
|
|
|
before_action :set_cache_headers, only: [:edit, :update]
|
2022-10-05 17:57:33 +01:00
|
|
|
before_action :set_rules, only: :new
|
|
|
|
before_action :require_rules_acceptance!, only: :new
|
2020-12-10 05:27:26 +00:00
|
|
|
before_action :set_registration_form_time, only: :new
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 09:48:50 +01:00
|
|
|
|
|
|
|
skip_before_action :require_functional!, only: [:edit, :update]
|
2016-03-05 21:43:05 +00:00
|
|
|
|
2019-04-09 15:06:30 +01:00
|
|
|
def new
|
|
|
|
super(&:build_invite_request)
|
|
|
|
end
|
|
|
|
|
2017-05-23 20:32:42 +01:00
|
|
|
def destroy
|
|
|
|
not_found
|
|
|
|
end
|
|
|
|
|
2020-01-23 23:20:38 +00:00
|
|
|
def update
|
|
|
|
super do |resource|
|
2023-02-18 11:37:47 +00:00
|
|
|
resource.clear_other_sessions(current_session.session_id) if resource.saved_change_to_encrypted_password?
|
2020-01-23 23:20:38 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-05 21:43:05 +00:00
|
|
|
protected
|
|
|
|
|
2018-02-02 09:18:55 +00:00
|
|
|
def update_resource(resource, params)
|
|
|
|
params[:password] = nil if Devise.pam_authentication && resource.encrypted_password.blank?
|
2020-01-23 23:20:38 +00:00
|
|
|
|
2018-02-02 09:18:55 +00:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2016-03-05 21:43:05 +00:00
|
|
|
def build_resource(hash = nil)
|
|
|
|
super(hash)
|
2017-11-27 15:07:59 +00:00
|
|
|
|
2020-12-10 05:27:26 +00:00
|
|
|
resource.locale = I18n.locale
|
|
|
|
resource.invite_code = params[:invite_code] if resource.invite_code.blank?
|
|
|
|
resource.registration_form_time = session[:registration_form_time]
|
|
|
|
resource.sign_up_ip = request.remote_ip
|
2017-11-27 15:07:59 +00:00
|
|
|
|
2016-09-29 20:28:21 +01:00
|
|
|
resource.build_account if resource.account.nil?
|
2016-03-05 21:43:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def configure_sign_up_params
|
2022-12-15 16:11:58 +00:00
|
|
|
devise_parameter_sanitizer.permit(:sign_up) do |user_params|
|
|
|
|
user_params.permit({ account_attributes: [:username, :display_name], invite_request_attributes: [:text] }, :email, :password, :password_confirmation, :invite_code, :agreement, :website, :confirm_password)
|
2016-03-05 21:43:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-26 12:42:10 +00:00
|
|
|
def after_sign_up_path_for(_resource)
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 09:48:50 +01:00
|
|
|
auth_setup_path
|
2016-03-05 21:43:05 +00:00
|
|
|
end
|
2016-12-06 16:19:26 +00:00
|
|
|
|
2018-07-05 19:57:35 +01: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 14:31:25 +00:00
|
|
|
def after_inactive_sign_up_path_for(_resource)
|
|
|
|
new_user_session_path
|
|
|
|
end
|
|
|
|
|
2018-01-02 15:55:00 +00:00
|
|
|
def after_update_path_for(_resource)
|
|
|
|
edit_user_registration_path
|
|
|
|
end
|
|
|
|
|
2017-04-04 14:26:57 +01:00
|
|
|
def check_enabled_registrations
|
2022-08-24 18:00:37 +01:00
|
|
|
redirect_to root_path if single_user_mode? || omniauth_only? || !allowed_registrations? || ip_blocked?
|
2017-11-27 15:07:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def allowed_registrations?
|
2019-03-14 04:28:30 +00:00
|
|
|
Setting.registrations_mode != 'none' || @invite&.valid_for_use?
|
2017-11-27 15:07:59 +00:00
|
|
|
end
|
|
|
|
|
2022-01-23 14:52:58 +00:00
|
|
|
def omniauth_only?
|
|
|
|
ENV['OMNIAUTH_ONLY'] == 'true'
|
|
|
|
end
|
|
|
|
|
2022-08-24 18:00:37 +01:00
|
|
|
def ip_blocked?
|
|
|
|
IpBlock.where(severity: :sign_up_block).where('ip >>= ?', request.remote_ip.to_s).exists?
|
|
|
|
end
|
|
|
|
|
2017-11-27 15:07:59 +00:00
|
|
|
def invite_code
|
|
|
|
if params[:user]
|
|
|
|
params[:user][:invite_code]
|
|
|
|
else
|
|
|
|
params[:invite_code]
|
|
|
|
end
|
2016-12-06 16:19:26 +00:00
|
|
|
end
|
2017-04-04 14:26:57 +01:00
|
|
|
|
2017-02-08 02:04:29 +00:00
|
|
|
private
|
2017-04-04 14:26:57 +01:00
|
|
|
|
2017-10-10 23:52:25 +01:00
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
|
|
|
|
2018-07-31 00:14:33 +01:00
|
|
|
def set_body_classes
|
2018-10-26 21:49:17 +01:00
|
|
|
@body_classes = %w(edit update).include?(action_name) ? 'admin' : 'lighter'
|
2018-07-31 00:14:33 +01:00
|
|
|
end
|
|
|
|
|
2018-06-15 17:00:23 +01:00
|
|
|
def set_invite
|
2022-02-14 20:27:53 +00:00
|
|
|
@invite = begin
|
|
|
|
invite = Invite.find_by(code: invite_code) if invite_code.present?
|
|
|
|
invite if invite&.valid_for_use?
|
|
|
|
end
|
2018-06-15 17:00:23 +01:00
|
|
|
end
|
|
|
|
|
2017-02-08 02:04:29 +00:00
|
|
|
def determine_layout
|
|
|
|
%w(edit update).include?(action_name) ? 'admin' : 'auth'
|
|
|
|
end
|
2017-06-25 15:54:30 +01:00
|
|
|
|
|
|
|
def set_sessions
|
|
|
|
@sessions = current_user.session_activations
|
|
|
|
end
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 09:48:50 +01:00
|
|
|
|
2022-02-14 20:27:53 +00:00
|
|
|
def set_strikes
|
2022-03-01 18:37:47 +00:00
|
|
|
@strikes = current_account.strikes.recent.latest
|
2022-02-14 20:27:53 +00:00
|
|
|
end
|
|
|
|
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 09:48:50 +01:00
|
|
|
def require_not_suspended!
|
|
|
|
forbidden if current_account.suspended?
|
|
|
|
end
|
2019-12-30 03:38:30 +00:00
|
|
|
|
2022-10-05 17:57:33 +01:00
|
|
|
def set_rules
|
|
|
|
@rules = Rule.ordered
|
|
|
|
end
|
|
|
|
|
|
|
|
def require_rules_acceptance!
|
|
|
|
return if @rules.empty? || (session[:accept_token].present? && params[:accept] == session[:accept_token])
|
|
|
|
|
|
|
|
@accept_token = session[:accept_token] = SecureRandom.hex
|
2022-10-30 18:04:39 +00:00
|
|
|
@invite_code = invite_code
|
2022-10-05 17:57:33 +01:00
|
|
|
|
|
|
|
set_locale { render :rules }
|
|
|
|
end
|
|
|
|
|
2019-12-30 03:38:30 +00:00
|
|
|
def set_cache_headers
|
2022-11-16 03:56:30 +00:00
|
|
|
response.headers['Cache-Control'] = 'private, no-store'
|
2019-12-30 03:38:30 +00:00
|
|
|
end
|
2016-03-05 21:43:05 +00:00
|
|
|
end
|