Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new_project_readme_experiment.rb « experiments « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f88ad2adc11ad5d6e889f3f49520ac282a80f4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true

class NewProjectReadmeExperiment < ApplicationExperiment # rubocop:disable Gitlab/NamespacedClass
  include Gitlab::Git::WrapsGitalyErrors

  INITIAL_WRITE_LIMIT = 3
  EXPERIMENT_START_DATE = DateTime.parse('2021/1/20')
  MAX_ACCOUNT_AGE = 7.days

  exclude { context.value[:actor].nil? }
  exclude { context.actor.created_at < MAX_ACCOUNT_AGE.ago }

  def control_behavior
    false # we don't want the checkbox to be checked
  end

  def candidate_behavior
    true # check the checkbox by default
  end

  def track_initial_writes(project)
    return unless should_track? # early return if we don't need to ask for commit counts
    return unless project.created_at > EXPERIMENT_START_DATE # early return for older projects
    return unless (commit_count = commit_count_for(project)) < INITIAL_WRITE_LIMIT

    track(:write, property: project.created_at.to_s, value: commit_count)
  end

  private

  def commit_count_for(project)
    raw_repo = project.repository&.raw_repository
    return INITIAL_WRITE_LIMIT unless raw_repo&.root_ref

    begin
      Gitlab::GitalyClient::CommitService.new(raw_repo).commit_count(raw_repo.root_ref, {
        all: true, # include all branches
        max_count: INITIAL_WRITE_LIMIT # limit as an optimization
      })
    rescue StandardError => e
      Gitlab::ErrorTracking.track_exception(e, experiment: name)
      INITIAL_WRITE_LIMIT
    end
  end
end