summaryrefslogtreecommitdiff
path: root/app/helpers/ci/variables_helper.rb
blob: 84572363a8d41d4ec5f5a061b9914d21c5db2971 (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
# frozen_string_literal: true

module Ci
  module VariablesHelper
    def ci_variable_protected_by_default?
      Gitlab::CurrentSettings.current_application_settings.protected_ci_variables
    end

    def create_deploy_token_path(entity, opts = {})
      if entity.is_a?(::Group)
        create_deploy_token_group_settings_repository_path(entity, opts)
      else
        # TODO: change this path to 'create_deploy_token_project_settings_ci_cd_path'
        # See MR comment for more detail: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/27059#note_311585356
        create_deploy_token_project_settings_repository_path(entity, opts)
      end
    end

    def revoke_deploy_token_path(entity, token)
      if entity.is_a?(::Group)
        revoke_group_deploy_token_path(entity, token)
      else
        revoke_project_deploy_token_path(entity, token)
      end
    end

    def ci_variable_protected?(variable, only_key_value)
      if variable && !only_key_value
        variable.protected
      else
        ci_variable_protected_by_default?
      end
    end

    def ci_variable_masked?(variable, only_key_value)
      if variable && !only_key_value
        variable.masked
      else
        false
      end
    end

    def ci_variable_type_options
      [
        %w(Variable env_var),
        %w(File file)
      ]
    end

    def ci_variable_maskable_regex
      Ci::Maskable::REGEX.inspect.sub('\\A', '^').sub('\\z', '$').sub(%r{^/}, '').sub(%r{/[a-z]*$}, '').gsub('\/', '/')
    end
  end
end