File: base_service.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (67 lines) | stat: -rw-r--r-- 2,053 bytes parent folder | download
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
# frozen_string_literal: true

module CloudSeed
  module GoogleCloud
    class BaseService < ::BaseService
      protected

      def google_oauth2_token
        @params[:google_oauth2_token]
      end

      def gcp_project_id
        @params[:gcp_project_id]
      end

      def environment_name
        @params[:environment_name]
      end

      def google_api_client
        @google_api_client_instance ||= GoogleApi::CloudPlatform::Client.new(google_oauth2_token, nil)
      end

      def unique_gcp_project_ids
        filter_params = { key: 'GCP_PROJECT_ID' }
        @unique_gcp_project_ids ||= ::Ci::VariablesFinder.new(project, filter_params).execute.map(&:value).uniq
      end

      def group_vars_by_environment(keys)
        filtered_vars = project.variables.filter { |variable| 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 create_or_replace_project_vars(environment_scope, key, value, is_protected, is_masked = false)
        change_params = {
          variable_params: {
            key: key,
            value: value,
            environment_scope: environment_scope,
            protected: is_protected,
            masked: is_masked
          }
        }
        existing_variable = find_existing_variable(environment_scope, key)

        if existing_variable
          change_params[:action] = :update
          change_params[:variable] = existing_variable
        else
          change_params[:action] = :create
        end

        ::Ci::ChangeVariableService.new(container: project, current_user: current_user, params: change_params).execute
      end

      private

      def find_existing_variable(environment_scope, key)
        filter_params = { key: key, filter: { environment_scope: environment_scope } }
        ::Ci::VariablesFinder.new(project, filter_params).execute.first
      end
    end
  end
end