debian-mirror-gitlab/lib/learn_gitlab/onboarding.rb
2021-06-08 01:23:25 +05:30

58 lines
1.5 KiB
Ruby

# frozen_string_literal: true
module LearnGitlab
class Onboarding
include Gitlab::Utils::StrongMemoize
ACTION_ISSUE_IDS = {
issue_created: 4,
git_write: 6,
pipeline_created: 7,
merge_request_created: 9,
user_added: 8,
trial_started: 2,
required_mr_approvals_enabled: 11,
code_owners_enabled: 10
}.freeze
ACTION_DOC_URLS = {
security_scan_enabled: 'https://docs.gitlab.com/ee/user/application_security/security_dashboard/#gitlab-security-dashboard-security-center-and-vulnerability-reports'
}.freeze
def initialize(namespace)
@namespace = namespace
end
def completed_percentage
return 0 unless onboarding_progress
attributes = onboarding_progress.attributes.symbolize_keys
total_actions = action_columns.count
completed_actions = action_columns.count { |column| attributes[column].present? }
(completed_actions.to_f / total_actions.to_f * 100).round
end
private
def onboarding_progress
strong_memoize(:onboarding_progress) do
OnboardingProgress.find_by(namespace: namespace) # rubocop: disable CodeReuse/ActiveRecord
end
end
def action_columns
strong_memoize(:action_columns) do
tracked_actions.map { |action_key| OnboardingProgress.column_name(action_key) }
end
end
def tracked_actions
ACTION_ISSUE_IDS.keys + ACTION_DOC_URLS.keys
end
attr_reader :namespace
end
end