92 lines
2.5 KiB
Ruby
92 lines
2.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Registrations
|
|
class WelcomeController < ApplicationController
|
|
include OneTrustCSP
|
|
include GoogleAnalyticsCSP
|
|
include RegistrationsTracking
|
|
|
|
layout 'minimal'
|
|
skip_before_action :authenticate_user!, :required_signup_info, :check_two_factor_requirement, only: [:show, :update]
|
|
before_action :require_current_user
|
|
|
|
feature_category :authentication_and_authorization
|
|
|
|
def show
|
|
return redirect_to path_for_signed_in_user(current_user) if completed_welcome_step?
|
|
end
|
|
|
|
def update
|
|
result = ::Users::SignupService.new(current_user, update_params).execute
|
|
|
|
if result[:status] == :success
|
|
return redirect_to issues_dashboard_path(assignee_username: current_user.username) if show_tasks_to_be_done?
|
|
|
|
return redirect_to update_success_path if show_signup_onboarding?
|
|
|
|
members = current_user.members
|
|
|
|
if registering_from_invite?(members)
|
|
redirect_to members_activity_path(members), notice: helpers.invite_accepted_notice(members.last)
|
|
else
|
|
redirect_to path_for_signed_in_user(current_user)
|
|
end
|
|
else
|
|
render :show
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def registering_from_invite?(members)
|
|
members.count == 1 && members.last.source.present?
|
|
end
|
|
|
|
def require_current_user
|
|
return redirect_to new_user_registration_path unless current_user
|
|
end
|
|
|
|
def completed_welcome_step?
|
|
current_user.role.present? && !current_user.setup_for_company.nil?
|
|
end
|
|
|
|
def update_params
|
|
params.require(:user).permit(:role, :setup_for_company)
|
|
end
|
|
|
|
def requires_confirmation?(user)
|
|
return false if user.confirmed?
|
|
return false if Feature.enabled?(:soft_email_confirmation)
|
|
|
|
true
|
|
end
|
|
|
|
def path_for_signed_in_user(user)
|
|
return users_almost_there_path(email: user.email) if requires_confirmation?(user)
|
|
|
|
stored_location_for(user) || members_activity_path(user.members)
|
|
end
|
|
|
|
def members_activity_path(members)
|
|
return dashboard_projects_path unless members.any?
|
|
return dashboard_projects_path unless members.last.source.present?
|
|
|
|
members.last.source.activity_path
|
|
end
|
|
|
|
# overridden in EE
|
|
def show_signup_onboarding?
|
|
false
|
|
end
|
|
|
|
def show_tasks_to_be_done?
|
|
MemberTask.for_members(current_user.members).exists?
|
|
end
|
|
|
|
# overridden in EE
|
|
def update_success_path
|
|
end
|
|
end
|
|
end
|
|
|
|
Registrations::WelcomeController.prepend_mod_with('Registrations::WelcomeController')
|