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

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

class Projects::GoogleCloud::GcpRegionsController < Projects::GoogleCloud::BaseController
  # filtered list of GCP cloud run locations...
  #       ...that have domain mapping available
  # Source https://cloud.google.com/run/docs/locations 2022-01-30
  AVAILABLE_REGIONS = %w[asia-east1 asia-northeast1 asia-southeast1 europe-north1 europe-west1 europe-west4 us-central1 us-east1 us-east4 us-west1].freeze

  def index
    @google_cloud_path = project_google_cloud_index_path(project)
    params = { per_page: 50 }
    branches = BranchesFinder.new(project.repository, params).execute(gitaly_pagination: true)
    tags = TagsFinder.new(project.repository, params).execute(gitaly_pagination: true)
    refs = (branches + tags).map(&:name)
    js_data = {
      screen: 'gcp_regions_form',
      availableRegions: AVAILABLE_REGIONS,
      refs: refs,
      cancelPath: project_google_cloud_index_path(project)
    }
    @js_data = js_data.to_json
    track_event('gcp_regions#index', 'form_render', js_data)
  end

  def create
    permitted_params = params.permit(:ref, :gcp_region)
    response = GoogleCloud::GcpRegionAddOrReplaceService.new(project).execute(permitted_params[:ref], permitted_params[:gcp_region])
    track_event('gcp_regions#create', 'form_submit', response)
    redirect_to project_google_cloud_index_path(project), notice: _('GCP region configured')
  end
end