2021-02-22 17:27:13 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
class ApplicationExperiment < Gitlab::Experiment # rubocop:disable Gitlab/NamespacedClass
|
|
|
|
def enabled?
|
|
|
|
return false if Feature::Definition.get(feature_flag_name).nil? # there has to be a feature flag yaml file
|
2021-04-17 20:07:23 +05:30
|
|
|
return false unless Gitlab.dev_env_or_com? # we have to be in an environment that allows experiments
|
2021-03-11 19:13:27 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
# the feature flag has to be rolled out
|
2021-03-11 19:13:27 +05:30
|
|
|
Feature.get(feature_flag_name).state != :off # rubocop:disable Gitlab/AvoidFeatureGet
|
|
|
|
end
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
def publish(_result = nil)
|
|
|
|
return unless should_track? # don't track events for excluded contexts
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
track(:assignment) # track that we've assigned a variant for this context
|
2021-04-17 20:07:23 +05:30
|
|
|
|
|
|
|
begin
|
|
|
|
Gon.push({ experiment: { name => signature } }, true) # push the experiment data to the client
|
|
|
|
rescue NoMethodError
|
|
|
|
# means we're not in the request cycle, and can't add to Gon. Log a warning maybe?
|
|
|
|
end
|
2021-02-22 17:27:13 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def track(action, **event_args)
|
2021-04-17 20:07:23 +05:30
|
|
|
return unless should_track? # don't track events for excluded contexts
|
2021-02-22 17:27:13 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
# track the event, and mix in the experiment signature data
|
2021-02-22 17:27:13 +05:30
|
|
|
Gitlab::Tracking.event(name, action.to_s, **event_args.merge(
|
|
|
|
context: (event_args[:context] || []) << SnowplowTracker::SelfDescribingJson.new(
|
2021-04-29 21:17:54 +05:30
|
|
|
'iglu:com.gitlab/gitlab_experiment/jsonschema/1-0-0', signature
|
2021-02-22 17:27:13 +05:30
|
|
|
)
|
|
|
|
))
|
|
|
|
end
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
def exclude!
|
|
|
|
@excluded = true
|
2021-03-11 19:13:27 +05:30
|
|
|
end
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
def control_behavior
|
|
|
|
# define a default nil control behavior so we can omit it when not needed
|
|
|
|
end
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
private
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
def feature_flag_name
|
|
|
|
name.tr('/', '_')
|
|
|
|
end
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
def experiment_group?
|
|
|
|
Feature.enabled?(feature_flag_name, self, type: :experiment, default_enabled: :yaml)
|
2021-02-22 17:27:13 +05:30
|
|
|
end
|
|
|
|
end
|