2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-05 22:43:05 +01:00
|
|
|
class Auth::RegistrationsController < Devise::RegistrationsController
|
2023-11-13 14:27:00 +01:00
|
|
|
include RegistrationHelper
|
2023-11-30 15:39:41 +01:00
|
|
|
include Auth::RegistrationSpamConcern
|
2020-07-07 15:26:31 +02:00
|
|
|
|
2017-02-08 03:04:29 +01:00
|
|
|
layout :determine_layout
|
2016-03-05 22:43:05 +01:00
|
|
|
|
2018-06-15 18:00:23 +02:00
|
|
|
before_action :set_invite, only: [:new, :create]
|
2017-04-04 15:26:57 +02:00
|
|
|
before_action :check_enabled_registrations, only: [:new, :create]
|
2016-09-29 21:28:21 +02:00
|
|
|
before_action :configure_sign_up_params, only: [:create]
|
2017-06-25 16:54:30 +02:00
|
|
|
before_action :set_sessions, only: [:edit, :update]
|
2022-02-14 21:27:53 +01:00
|
|
|
before_action :set_strikes, only: [: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 10:48:50 +02:00
|
|
|
before_action :require_not_suspended!, only: [:update]
|
2019-12-30 04:38:30 +01:00
|
|
|
before_action :set_cache_headers, only: [:edit, :update]
|
2022-10-05 18:57:33 +02:00
|
|
|
before_action :set_rules, only: :new
|
|
|
|
before_action :require_rules_acceptance!, only: :new
|
2020-12-10 06:27:26 +01: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 10:48:50 +02:00
|
|
|
|
2023-10-23 17:46:21 +02:00
|
|
|
skip_before_action :check_self_destruct!, only: [: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 10:48:50 +02:00
|
|
|
skip_before_action :require_functional!, only: [:edit, :update]
|
2016-03-05 22:43:05 +01:00
|
|
|
|
2019-04-09 16:06:30 +02:00
|
|
|
def new
|
|
|
|
super(&:build_invite_request)
|
|
|
|
end
|
|
|
|
|
2024-06-21 17:34:13 +02:00
|
|
|
def edit # rubocop:disable Lint/UselessMethodDefinition
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def create # rubocop:disable Lint/UselessMethodDefinition
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2020-01-24 00:20:38 +01:00
|
|
|
def update
|
|
|
|
super do |resource|
|
2023-02-18 12:37:47 +01:00
|
|
|
resource.clear_other_sessions(current_session.session_id) if resource.saved_change_to_encrypted_password?
|
2020-01-24 00:20:38 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-04-30 06:46:39 +02:00
|
|
|
def destroy
|
|
|
|
not_found
|
|
|
|
end
|
|
|
|
|
2016-03-05 22:43:05 +01:00
|
|
|
protected
|
|
|
|
|
2018-02-02 10:18:55 +01:00
|
|
|
def update_resource(resource, params)
|
|
|
|
params[:password] = nil if Devise.pam_authentication && resource.encrypted_password.blank?
|
2020-01-24 00:20:38 +01:00
|
|
|
|
2018-02-02 10:18:55 +01:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2016-03-05 22:43:05 +01:00
|
|
|
def build_resource(hash = nil)
|
2024-05-24 10:36:21 +02:00
|
|
|
super
|
2017-11-27 16:07:59 +01:00
|
|
|
|
2020-12-10 06:27:26 +01:00
|
|
|
resource.locale = I18n.locale
|
2023-03-31 21:42:28 +02:00
|
|
|
resource.invite_code = @invite&.code if resource.invite_code.blank?
|
2020-12-10 06:27:26 +01:00
|
|
|
resource.registration_form_time = session[:registration_form_time]
|
|
|
|
resource.sign_up_ip = request.remote_ip
|
2017-11-27 16:07:59 +01:00
|
|
|
|
2016-09-29 21:28:21 +02:00
|
|
|
resource.build_account if resource.account.nil?
|
2016-03-05 22:43:05 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def configure_sign_up_params
|
2022-12-15 17:11:58 +01: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 22:43:05 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-26 13:42:10 +01: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 10:48:50 +02:00
|
|
|
auth_setup_path
|
2016-03-05 22:43:05 +01:00
|
|
|
end
|
2016-12-06 17:19:26 +01:00
|
|
|
|
2018-07-05 20:57:35 +02: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 15:31:25 +01:00
|
|
|
def after_inactive_sign_up_path_for(_resource)
|
|
|
|
new_user_session_path
|
|
|
|
end
|
|
|
|
|
2018-01-02 16:55:00 +01:00
|
|
|
def after_update_path_for(_resource)
|
|
|
|
edit_user_registration_path
|
|
|
|
end
|
|
|
|
|
2017-04-04 15:26:57 +02:00
|
|
|
def check_enabled_registrations
|
2023-11-13 14:27:00 +01:00
|
|
|
redirect_to root_path unless allowed_registration?(request.remote_ip, @invite)
|
2022-08-24 19:00:37 +02:00
|
|
|
end
|
|
|
|
|
2017-11-27 16:07:59 +01:00
|
|
|
def invite_code
|
|
|
|
if params[:user]
|
|
|
|
params[:user][:invite_code]
|
|
|
|
else
|
|
|
|
params[:invite_code]
|
|
|
|
end
|
2016-12-06 17:19:26 +01:00
|
|
|
end
|
2017-04-04 15:26:57 +02:00
|
|
|
|
2017-02-08 03:04:29 +01:00
|
|
|
private
|
2017-04-04 15:26:57 +02:00
|
|
|
|
2018-06-15 18:00:23 +02:00
|
|
|
def set_invite
|
2022-02-14 21:27:53 +01:00
|
|
|
@invite = begin
|
|
|
|
invite = Invite.find_by(code: invite_code) if invite_code.present?
|
|
|
|
invite if invite&.valid_for_use?
|
|
|
|
end
|
2018-06-15 18:00:23 +02:00
|
|
|
end
|
|
|
|
|
2017-02-08 03:04:29 +01:00
|
|
|
def determine_layout
|
|
|
|
%w(edit update).include?(action_name) ? 'admin' : 'auth'
|
|
|
|
end
|
2017-06-25 16:54:30 +02:00
|
|
|
|
|
|
|
def set_sessions
|
2023-05-22 11:40:00 +02:00
|
|
|
@sessions = current_user.session_activations.order(updated_at: :desc)
|
2017-06-25 16:54:30 +02: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 10:48:50 +02:00
|
|
|
|
2022-02-14 21:27:53 +01:00
|
|
|
def set_strikes
|
2022-03-01 19:37:47 +01:00
|
|
|
@strikes = current_account.strikes.recent.latest
|
2022-02-14 21:27:53 +01: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 10:48:50 +02:00
|
|
|
def require_not_suspended!
|
2023-11-30 16:43:26 +01:00
|
|
|
forbidden if current_account.unavailable?
|
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 10:48:50 +02:00
|
|
|
end
|
2019-12-30 04:38:30 +01:00
|
|
|
|
2022-10-05 18:57:33 +02: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 19:04:39 +01:00
|
|
|
@invite_code = invite_code
|
2022-10-05 18:57:33 +02:00
|
|
|
|
|
|
|
set_locale { render :rules }
|
|
|
|
end
|
|
|
|
|
2019-12-30 04:38:30 +01:00
|
|
|
def set_cache_headers
|
2023-04-19 16:07:29 +02:00
|
|
|
response.cache_control.replace(private: true, no_store: true)
|
2019-12-30 04:38:30 +01:00
|
|
|
end
|
2016-03-05 22:43:05 +01:00
|
|
|
end
|