Skip to content
代码片段 群组 项目
未验证 提交 fac14a09 编辑于 作者: Doug Stull's avatar Doug Stull 提交者: GitLab
浏览文件

Merge branch '482910-move-glm-params-to-onboarding-status' into 'master'

Move glm_tracking_params into the onboarding status class

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/166669



Merged-by: default avatarDoug Stull <dstull@gitlab.com>
Approved-by: default avatarJay Montal <jmontal@gitlab.com>
Approved-by: default avatarDylan Griffith <dyl.griffith@gmail.com>
Approved-by: default avatarSmriti Garg <sgarg@gitlab.com>
Reviewed-by: default avatarDoug Stull <dstull@gitlab.com>
No related branches found
No related tags found
无相关合并请求
显示
56 个添加64 个删除
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
module Onboarding module Onboarding
class Status class Status
def self.registration_path_params(params:, extra_params: {}) # rubocop:disable Lint/UnusedMethodArgument -- overridden in EE
{}
end
def initialize(params, session, user) def initialize(params, session, user)
@params = params @params = params
@session = session @session = session
......
...@@ -200,7 +200,7 @@ def build_auth_user(auth_user_class) ...@@ -200,7 +200,7 @@ def build_auth_user(auth_user_class)
end end
end end
# Overrided in EE # Overridden in EE
def set_session_active_since(id); end def set_session_active_since(id); end
def sign_in_user_flow(auth_user_class) def sign_in_user_flow(auth_user_class)
......
...@@ -28,7 +28,7 @@ class RegistrationsController < Devise::RegistrationsController ...@@ -28,7 +28,7 @@ class RegistrationsController < Devise::RegistrationsController
feature_category :instance_resiliency feature_category :instance_resiliency
helper_method :arkose_labs_enabled?, :registration_path_params, :preregistration_tracking_label helper_method :arkose_labs_enabled?, :preregistration_tracking_label
def new def new
@resource = build_resource @resource = build_resource
...@@ -156,11 +156,6 @@ def allow_flash_content?(user) ...@@ -156,11 +156,6 @@ def allow_flash_content?(user)
user.blocked_pending_approval? || onboarding_status.single_invite? user.blocked_pending_approval? || onboarding_status.single_invite?
end end
# overridden in EE
def registration_path_params
{}
end
def track_successful_user_creation(user) def track_successful_user_creation(user)
label = user_invited? ? 'invited' : 'signup' label = user_invited? ? 'invited' : 'signup'
Gitlab::Tracking.event(self.class.name, 'create_user', label: label, user: user) Gitlab::Tracking.event(self.class.name, 'create_user', label: label, user: user)
......
...@@ -10,11 +10,6 @@ def signup_username_data_attributes ...@@ -10,11 +10,6 @@ def signup_username_data_attributes
testid: 'new-user-username-field' testid: 'new-user-username-field'
} }
end end
# overridden in EE
def register_omniauth_params(_local_assigns)
{}
end
end end
RegistrationsHelper.prepend_mod_with('RegistrationsHelper') RegistrationsHelper.prepend_mod_with('RegistrationsHelper')
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
.signup-page .signup-page
.gl-mb-3.gl-p-4 .gl-mb-3.gl-p-4
= render 'signup_box_form', = render 'signup_box_form',
url: registration_path(resource_name, registration_path_params), url: registration_path(resource_name, ::Onboarding::Status.registration_path_params(params: params)),
button_text: _('Continue') button_text: _('Continue')
- if omniauth_enabled? && button_based_providers_enabled? - if omniauth_enabled? && button_based_providers_enabled?
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
.gl-flex.gl-flex-col.gl-gap-3 .gl-flex.gl-flex-col.gl-gap-3
- enabled_button_based_providers.each do |provider| - enabled_button_based_providers.each do |provider|
= render 'devise/shared/omniauth_provider_button', = render 'devise/shared/omniauth_provider_button',
href: omniauth_authorize_path(:user, provider, register_omniauth_params({})), href: omniauth_authorize_path(:user, provider, ::Onboarding::Status.registration_path_params(params: params)),
provider: provider, provider: provider,
classes: 'js-track-omni-auth', classes: 'js-track-omni-auth',
data: { provider: provider, track_action: "#{provider}_sso", track_label: preregistration_tracking_label } data: { provider: provider, track_action: "#{provider}_sso", track_label: preregistration_tracking_label }
......
...@@ -13,6 +13,10 @@ def onboarding_first_step_path ...@@ -13,6 +13,10 @@ def onboarding_first_step_path
users_sign_up_welcome_path(onboarding_params) users_sign_up_welcome_path(onboarding_params)
end end
def onboarding_params
::Onboarding::Status.glm_tracking_params(params) # rubocop:disable Rails/StrongParams -- strong params are used in the method being called
end
override :after_sign_up_path override :after_sign_up_path
def after_sign_up_path def after_sign_up_path
if ::Onboarding.enabled? if ::Onboarding.enabled?
......
...@@ -10,6 +10,8 @@ module Status ...@@ -10,6 +10,8 @@ module Status
::Onboarding::REGISTRATION_TYPE[:subscription] => ::Onboarding::SubscriptionRegistration ::Onboarding::REGISTRATION_TYPE[:subscription] => ::Onboarding::SubscriptionRegistration
}.freeze }.freeze
GLM_PARAMS = [:glm_source, :glm_content].freeze
attr_reader :registration_type attr_reader :registration_type
# string delegations # string delegations
...@@ -23,6 +25,25 @@ module Status ...@@ -23,6 +25,25 @@ module Status
delegate :hide_setup_for_company_field?, :pre_parsed_email_opt_in?, to: :registration_type delegate :hide_setup_for_company_field?, :pre_parsed_email_opt_in?, to: :registration_type
delegate :read_from_stored_user_location?, :preserve_stored_location?, to: :registration_type delegate :read_from_stored_user_location?, :preserve_stored_location?, to: :registration_type
module ClassMethods
extend ::Gitlab::Utils::Override
def glm_tracking_params(params)
params.permit(*GLM_PARAMS)
end
override :registration_path_params
def registration_path_params(params:, extra_params: {})
return super unless ::Onboarding.enabled?
glm_tracking_params(params).to_h.merge(extra_params)
end
end
def self.prepended(base)
base.singleton_class.prepend(ClassMethods)
end
def initialize(*) def initialize(*)
super super
......
...@@ -7,7 +7,6 @@ module DuoCommon ...@@ -7,7 +7,6 @@ module DuoCommon
include OneTrustCSP include OneTrustCSP
include GoogleAnalyticsCSP include GoogleAnalyticsCSP
include RegistrationsTracking
include ::Gitlab::Utils::StrongMemoize include ::Gitlab::Utils::StrongMemoize
include SafeFormatHelper include SafeFormatHelper
...@@ -43,8 +42,9 @@ def general_params ...@@ -43,8 +42,9 @@ def general_params
def lead_params def lead_params
params.permit( params.permit(
*::Onboarding::Status::GLM_PARAMS,
:company_name, :company_size, :first_name, :last_name, :phone_number, :company_name, :company_size, :first_name, :last_name, :phone_number,
:country, :state, :website_url, :glm_content, :glm_source :country, :state, :website_url
).to_h ).to_h
end end
......
# frozen_string_literal: true
module RegistrationsTracking
extend ActiveSupport::Concern
included do
helper_method :glm_tracking_params
end
private
def glm_tracking_params
params.permit(:glm_source, :glm_content)
end
alias_method :onboarding_params, :glm_tracking_params
end
RegistrationsTracking.prepend_mod
...@@ -11,7 +11,6 @@ module RegistrationsController ...@@ -11,7 +11,6 @@ module RegistrationsController
prepended do prepended do
include Arkose::ContentSecurityPolicy include Arkose::ContentSecurityPolicy
include Arkose::TokenVerifiable include Arkose::TokenVerifiable
include RegistrationsTracking
include GoogleAnalyticsCSP include GoogleAnalyticsCSP
include GoogleSyndicationCSP include GoogleSyndicationCSP
...@@ -171,11 +170,6 @@ def log_audit_event(user) ...@@ -171,11 +170,6 @@ def log_audit_event(user)
}) })
end end
override :registration_path_params
def registration_path_params
glm_tracking_params.to_h
end
def record_arkose_data(user) def record_arkose_data(user)
return unless arkose_labs_enabled?(user: user) return unless arkose_labs_enabled?(user: user)
return unless arkose_labs_verify_response return unless arkose_labs_verify_response
......
...@@ -76,7 +76,7 @@ def track_event(action) ...@@ -76,7 +76,7 @@ def track_event(action)
end end
def trial_params def trial_params
params.permit(:namespace_id, :glm_source, :glm_content).to_h params.permit(*::Onboarding::Status::GLM_PARAMS, :namespace_id).to_h
end end
def success_flash_message def success_flash_message
......
...@@ -65,7 +65,7 @@ def track_event(action) ...@@ -65,7 +65,7 @@ def track_event(action)
end end
def trial_params def trial_params
params.permit(:namespace_id, :trial_entity, :glm_source, :glm_content).to_h params.permit(*::Onboarding::Status::GLM_PARAMS, :namespace_id, :trial_entity).to_h
end end
def success_flash_message def success_flash_message
......
...@@ -5,7 +5,6 @@ module GitlabSubscriptions ...@@ -5,7 +5,6 @@ module GitlabSubscriptions
class TrialsController < ApplicationController class TrialsController < ApplicationController
include OneTrustCSP include OneTrustCSP
include GoogleAnalyticsCSP include GoogleAnalyticsCSP
include RegistrationsTracking
layout 'minimal' layout 'minimal'
...@@ -74,18 +73,22 @@ def stored_location_or_provided_path(path) ...@@ -74,18 +73,22 @@ def stored_location_or_provided_path(path)
def authenticate_user! def authenticate_user!
return if current_user return if current_user
redirect_to new_trial_registration_path(glm_tracking_params), alert: I18n.t('devise.failure.unauthenticated') redirect_to(
new_trial_registration_path(::Onboarding::Status.glm_tracking_params(params)),
alert: I18n.t('devise.failure.unauthenticated')
)
end end
def lead_params def lead_params
params.permit( params.permit(
*::Onboarding::Status::GLM_PARAMS,
:company_name, :company_size, :first_name, :last_name, :phone_number, :company_name, :company_size, :first_name, :last_name, :phone_number,
:country, :state, :website_url, :glm_content, :glm_source :country, :state, :website_url
).to_h ).to_h
end end
def trial_params def trial_params
params.permit(:new_group_name, :namespace_id, :trial_entity, :glm_source, :glm_content) params.permit(*::Onboarding::Status::GLM_PARAMS, :new_group_name, :namespace_id, :trial_entity)
.with_defaults(organization_id: Current.organization_id).to_h .with_defaults(organization_id: Current.organization_id).to_h
end end
......
...@@ -5,7 +5,6 @@ class CompanyController < ApplicationController ...@@ -5,7 +5,6 @@ class CompanyController < ApplicationController
include OneTrustCSP include OneTrustCSP
include GoogleAnalyticsCSP include GoogleAnalyticsCSP
include GoogleSyndicationCSP include GoogleSyndicationCSP
include RegistrationsTracking
include ::Onboarding::SetRedirect include ::Onboarding::SetRedirect
layout 'minimal' layout 'minimal'
...@@ -26,8 +25,9 @@ def create ...@@ -26,8 +25,9 @@ def create
if result.success? if result.success?
track_event('successfully_submitted_form', onboarding_status.tracking_label) track_event('successfully_submitted_form', onboarding_status.tracking_label)
response = Onboarding::StatusStepUpdateService response = Onboarding::StatusStepUpdateService.new(
.new(current_user, new_users_sign_up_group_path(glm_tracking_params)).execute current_user, new_users_sign_up_group_path(::Onboarding::Status.glm_tracking_params(params))
).execute
redirect_to response[:step_url] redirect_to response[:step_url]
else else
...@@ -44,6 +44,7 @@ def create ...@@ -44,6 +44,7 @@ def create
def permitted_params def permitted_params
params.permit( params.permit(
*::Onboarding::Status::GLM_PARAMS,
:company_name, :company_name,
:company_size, :company_size,
:first_name, :first_name,
...@@ -56,7 +57,7 @@ def permitted_params ...@@ -56,7 +57,7 @@ def permitted_params
:role, :role,
:registration_objective, :registration_objective,
:jobs_to_be_done_other :jobs_to_be_done_other
).merge(glm_tracking_params) )
end end
def track_event(action, label) def track_event(action, label)
......
...@@ -159,11 +159,11 @@ def project_params ...@@ -159,11 +159,11 @@ def project_params
end end
def general_params def general_params
params.permit(:import_url).merge(glm_params) params.permit(*::Onboarding::Status::GLM_PARAMS, :import_url)
end end
def glm_params def glm_params
params.permit(:glm_source, :glm_content) ::Onboarding::Status.glm_tracking_params(params) # rubocop:disable Rails/StrongParams -- strong params are used in the method being called.
end end
end end
end end
...@@ -8,7 +8,6 @@ class WelcomeController < ApplicationController ...@@ -8,7 +8,6 @@ class WelcomeController < ApplicationController
include ::Gitlab::Utils::StrongMemoize include ::Gitlab::Utils::StrongMemoize
include ::Onboarding::Redirectable include ::Onboarding::Redirectable
include ::Onboarding::SetRedirect include ::Onboarding::SetRedirect
include RegistrationsTracking
layout 'minimal' layout 'minimal'
...@@ -76,7 +75,7 @@ def onboarding_status_params ...@@ -76,7 +75,7 @@ def onboarding_status_params
def passed_through_params def passed_through_params
update_params.slice(:role, :registration_objective) update_params.slice(:role, :registration_objective)
.merge(params.permit(:jobs_to_be_done_other)) .merge(params.permit(:jobs_to_be_done_other))
.merge(glm_tracking_params) .merge(::Onboarding::Status.glm_tracking_params(params))
end end
def iterable_params def iterable_params
......
...@@ -21,11 +21,6 @@ def arkose_labs_data ...@@ -21,11 +21,6 @@ def arkose_labs_data
data.compact data.compact
end end
override :register_omniauth_params
def register_omniauth_params(local_assigns)
super.merge(glm_tracking_params.to_h).merge(local_assigns.slice(:trial))
end
def unconfirmed_email_feature_enabled? def unconfirmed_email_feature_enabled?
::Gitlab::CurrentSettings.delete_unconfirmed_users? && ::Gitlab::CurrentSettings.delete_unconfirmed_users? &&
(::Gitlab::CurrentSettings.email_confirmation_setting_soft? || (::Gitlab::CurrentSettings.email_confirmation_setting_soft? ||
......
...@@ -56,7 +56,7 @@ def should_ask_company_question? ...@@ -56,7 +56,7 @@ def should_ask_company_question?
def glm_params def glm_params
strong_memoize(:glm_params) do strong_memoize(:glm_params) do
params.slice(:glm_source, :glm_content).to_unsafe_h params.slice(*::Onboarding::Status::GLM_PARAMS).to_unsafe_h
end end
end end
......
...@@ -53,7 +53,7 @@ def after_lead_success_hook ...@@ -53,7 +53,7 @@ def after_lead_success_hook
# trigger new creation for next step... # trigger new creation for next step...
trial_selection_params = { trial_selection_params = {
step: TRIAL step: TRIAL
}.merge(lead_params.slice(:glm_content, :glm_source)) }.merge(lead_params.slice(*::Onboarding::Status::GLM_PARAMS))
.merge(trial_params.slice(:namespace_id)) .merge(trial_params.slice(:namespace_id))
ServiceResponse.error( ServiceResponse.error(
......
- @html_class = "subscriptions-layout-html" - @html_class = "subscriptions-layout-html"
- @hide_flash = true - @hide_flash = true
- page_title _('Your GitLab group') - page_title _('Your GitLab group')
- form_params = { glm_source: params[:glm_source], glm_content: params[:glm_content] }
- content_for :page_specific_javascripts do - content_for :page_specific_javascripts do
= render "layouts/google_tag_manager_head" = render "layouts/google_tag_manager_head"
= render "layouts/one_trust" = render "layouts/one_trust"
...@@ -29,7 +28,7 @@ ...@@ -29,7 +28,7 @@
.tab-content.gitlab-tab-content.gl-bg-white.js-group-project-tab-contents .tab-content.gitlab-tab-content.gl-bg-white.js-group-project-tab-contents
#blank-project-pane.tab-pane.js-toggle-container.active{ role: 'tabpanel' } #blank-project-pane.tab-pane.js-toggle-container.active{ role: 'tabpanel' }
= gitlab_ui_form_for :project_group, url: users_sign_up_groups_path(form_params), html: { class: 'gl-show-field-errors gl-w-full gl-p-4 js-groups-projects-form' } do |f| = gitlab_ui_form_for :project_group, url: users_sign_up_groups_path(::Onboarding::Status.glm_tracking_params(params)), html: { class: 'gl-show-field-errors gl-w-full gl-p-4 js-groups-projects-form' } do |f|
= form_errors(@group, type: "Group") = form_errors(@group, type: "Group")
= form_errors(@project, type: "Project") = form_errors(@project, type: "Project")
= render 'layouts/flash' = render 'layouts/flash'
...@@ -50,7 +49,7 @@ ...@@ -50,7 +49,7 @@
#import-project-pane.tab-pane.import-project-pane.js-toggle-container{ role: 'tabpanel' } #import-project-pane.tab-pane.import-project-pane.js-toggle-container{ role: 'tabpanel' }
- if import_sources_enabled? - if import_sources_enabled?
= form_tag users_sign_up_groups_path(form_params), class: 'gl-show-field-errors gl-w-full gl-p-4 js-import-project-form' do = form_tag users_sign_up_groups_path(::Onboarding::Status.glm_tracking_params(params)), class: 'gl-show-field-errors gl-w-full gl-p-4 js-import-project-form' do
= form_errors(@group, type: "Group") = form_errors(@group, type: "Group")
= render 'layouts/flash' = render 'layouts/flash'
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册