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

learn_gitlab_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a07922e451aea80f256fe17bf4dda4f92cc6b695 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# frozen_string_literal: true

module LearnGitlabHelper
  IMAGE_PATH_PLAN = "learn_gitlab/section_plan.svg"
  IMAGE_PATH_DEPLOY = "learn_gitlab/section_deploy.svg"
  IMAGE_PATH_WORKSPACE = "learn_gitlab/section_workspace.svg"
  LICENSE_SCANNING_RUN_URL = 'https://docs.gitlab.com/ee/user/compliance/license_compliance/index.html'

  def learn_gitlab_enabled?(project)
    return false unless current_user

    learn_gitlab_onboarding_available?(project)
  end

  def learn_gitlab_data(project)
    {
      actions: onboarding_actions_data(project).to_json,
      sections: onboarding_sections_data.to_json,
      project: onboarding_project_data(project).to_json
    }
  end

  def learn_gitlab_onboarding_available?(project)
    Onboarding::Progress.onboarding?(project.namespace) &&
      Onboarding::LearnGitlab.new(current_user).available?
  end

  private

  def onboarding_actions_data(project)
    attributes = onboarding_progress(project).attributes.symbolize_keys

    action_urls(project).to_h do |action, url|
      [
        action,
        {
          url: url,
          completed: attributes[Onboarding::Progress.column_name(action)].present?,
          svg: image_path("learn_gitlab/#{action}.svg"),
          enabled: true
        }
      ]
    end
  end

  def onboarding_sections_data
    {
      workspace: {
        svg: image_path(IMAGE_PATH_WORKSPACE)
      },
      plan: {
        svg: image_path(IMAGE_PATH_PLAN)
      },
      deploy: {
        svg: image_path(IMAGE_PATH_DEPLOY)
      }
    }
  end

  def onboarding_project_data(project)
    { name: project.name }
  end

  def action_urls(project)
    action_issue_urls.merge(
      issue_created: project_issues_path(project),
      git_write: project_path(project),
      merge_request_created: project_merge_requests_path(project),
      user_added: project_members_url(project),
      **deploy_section_action_urls(project)
    )
  end

  def action_issue_urls
    Onboarding::Completion::ACTION_ISSUE_IDS.transform_values do |id|
      project_issue_url(learn_gitlab_project, id)
    end
  end

  def deploy_section_action_urls(project)
    experiment(
      :security_actions_continuous_onboarding,
      namespace: project.namespace,
      user: current_user,
      sticky_to: current_user
    ) do |e|
      e.control { { security_scan_enabled: project_security_configuration_path(project) } }
      e.candidate do
        {
          license_scanning_run: LICENSE_SCANNING_RUN_URL,
          secure_dependency_scanning_run: project_security_configuration_path(project, anchor: 'dependency-scanning'),
          secure_dast_run: project_security_configuration_path(project, anchor: 'dast')
        }
      end
    end.run
  end

  def learn_gitlab_project
    @learn_gitlab_project ||= Onboarding::LearnGitlab.new(current_user).project
  end

  def onboarding_progress(project)
    Onboarding::Progress.find_by(namespace: project.namespace) # rubocop: disable CodeReuse/ActiveRecord
  end
end

LearnGitlabHelper.prepend_mod_with('LearnGitlabHelper')