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

service_accounts_service.rb « google_cloud « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3014daf08e28d4c25fd30fed1ab742a617e73404 (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
# frozen_string_literal: true

module GoogleCloud
  ##
  # GCP keys used to store Google Cloud Service Accounts
  GCP_KEYS = %w[GCP_PROJECT_ID GCP_SERVICE_ACCOUNT GCP_SERVICE_ACCOUNT_KEY].freeze

  ##
  # This service deals with GCP Service Accounts in GitLab

  class ServiceAccountsService < ::BaseService
    ##
    # Find GCP Service Accounts in a GitLab project
    #
    # This method looks up GitLab project's CI vars
    # and returns Google Cloud Service Accounts combinations
    # aligning GitLab project and environment to GCP projects

    def find_for_project
      group_vars_by_environment.map do |environment_scope, value|
        {
          environment: environment_scope,
          gcp_project: value['GCP_PROJECT_ID'],
          service_account_exists: value['GCP_SERVICE_ACCOUNT'].present?,
          service_account_key_exists: value['GCP_SERVICE_ACCOUNT_KEY'].present?
        }
      end
    end

    def add_for_project(environment, gcp_project_id, service_account, service_account_key, is_protected)
      project_var_create_or_replace(
        environment,
        'GCP_PROJECT_ID',
        gcp_project_id,
        is_protected
      )
      project_var_create_or_replace(
        environment,
        'GCP_SERVICE_ACCOUNT',
        service_account,
        is_protected
      )
      project_var_create_or_replace(
        environment,
        'GCP_SERVICE_ACCOUNT_KEY',
        service_account_key,
        is_protected
      )
    end

    private

    def group_vars_by_environment
      filtered_vars = project.variables.filter { |variable| GCP_KEYS.include? variable.key }
      filtered_vars.each_with_object({}) do |variable, grouped|
        grouped[variable.environment_scope] ||= {}
        grouped[variable.environment_scope][variable.key] = variable.value
      end
    end

    def project_var_create_or_replace(environment_scope, key, value, is_protected)
      params = { key: key, filter: { environment_scope: environment_scope } }
      existing_variable = ::Ci::VariablesFinder.new(project, params).execute.first
      existing_variable.destroy if existing_variable
      project.variables.create!(key: key, value: value, environment_scope: environment_scope, protected: is_protected)
    end
  end
end