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

infrastructure_menu.rb « menus « projects « sidebars « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3c9f3a64660af2d121961053efac3c917efc9a7 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# frozen_string_literal: true

module Sidebars
  module Projects
    module Menus
      class InfrastructureMenu < ::Sidebars::Menu
        override :configure_menu_items
        def configure_menu_items
          return false unless feature_enabled?

          add_item(kubernetes_menu_item)
          add_item(terraform_states_menu_item)
          add_item(google_cloud_menu_item)
          add_item(aws_menu_item)

          true
        end

        override :extra_container_html_options
        def extra_container_html_options
          {
            class: 'shortcuts-infrastructure'
          }
        end

        override :title
        def title
          _('Infrastructure')
        end

        override :sprite_icon
        def sprite_icon
          'cloud-gear'
        end

        override :serialize_as_menu_item_args
        def serialize_as_menu_item_args
          nil
        end

        private

        def feature_enabled?
          context.project.feature_available?(:infrastructure, context.current_user)
        end

        def kubernetes_menu_item
          unless can?(context.current_user, :read_cluster_agent, context.project)
            return ::Sidebars::NilMenuItem.new(item_id: :kubernetes)
          end

          ::Sidebars::MenuItem.new(
            title: _('Kubernetes clusters'),
            link: project_clusters_path(context.project),
            super_sidebar_parent: Sidebars::Projects::SuperSidebarMenus::OperationsMenu,
            active_routes: { controller: [:cluster_agents, :clusters] },
            container_html_options: { class: 'shortcuts-kubernetes' },
            hint_html_options: kubernetes_hint_html_options,
            item_id: :kubernetes
          )
        end

        def kubernetes_hint_html_options
          return {} unless context.show_cluster_hint

          { disabled: true,
            data: { trigger: 'manual',
                    container: 'body',
                    placement: 'right',
                    highlight: Users::CalloutsHelper::GKE_CLUSTER_INTEGRATION,
                    highlight_priority: Users::Callout.feature_names[:GKE_CLUSTER_INTEGRATION],
                    dismiss_endpoint: callouts_path,
                    auto_devops_help_path: help_page_path('topics/autodevops/index') } }
        end

        def terraform_states_menu_item
          unless can?(context.current_user, :read_terraform_state, context.project)
            return ::Sidebars::NilMenuItem.new(item_id: :terraform_states)
          end

          ::Sidebars::MenuItem.new(
            title: s_('Terraform|Terraform states'),
            link: project_terraform_index_path(context.project),
            super_sidebar_parent: Sidebars::Projects::SuperSidebarMenus::OperationsMenu,
            active_routes: { controller: :terraform },
            item_id: :terraform_states
          )
        end

        def aws_menu_item
          enabled_for_user = Feature.enabled?(:cloudseed_aws, context.current_user)
          enabled_for_group = Feature.enabled?(:cloudseed_aws, context.project.group)
          enabled_for_project = Feature.enabled?(:cloudseed_aws, context.project)
          feature_is_enabled = enabled_for_user || enabled_for_group || enabled_for_project
          user_has_permissions = can?(context.current_user, :admin_project_aws, context.project)

          return ::Sidebars::NilMenuItem.new(item_id: :cloudseed_aws) unless feature_is_enabled && user_has_permissions

          ::Sidebars::MenuItem.new(
            title: _('AWS'),
            link: project_aws_path(context.project),
            super_sidebar_parent: Sidebars::Projects::SuperSidebarMenus::OperationsMenu,
            item_id: :aws,
            active_routes: { controller: %w[
              projects/aws/configuration
            ] }
          )
        end

        def google_cloud_menu_item
          enabled_for_user = Feature.enabled?(:incubation_5mp_google_cloud, context.current_user)
          enabled_for_group = Feature.enabled?(:incubation_5mp_google_cloud, context.project.group)
          enabled_for_project = Feature.enabled?(:incubation_5mp_google_cloud, context.project)
          feature_is_enabled = enabled_for_user || enabled_for_group || enabled_for_project
          user_has_permissions = can?(context.current_user, :admin_project_google_cloud, context.project)

          google_oauth2_configured = google_oauth2_configured?

          unless feature_is_enabled && user_has_permissions && google_oauth2_configured
            return ::Sidebars::NilMenuItem.new(item_id: :incubation_5mp_google_cloud)
          end

          ::Sidebars::MenuItem.new(
            title: _('Google Cloud'),
            link: project_google_cloud_configuration_path(context.project),
            super_sidebar_parent: Sidebars::Projects::SuperSidebarMenus::OperationsMenu,
            active_routes: { controller: %w[
              projects/google_cloud/configuration
              projects/google_cloud/service_accounts
              projects/google_cloud/databases
              projects/google_cloud/deployments
              projects/google_cloud/gcp_regions
            ] },
            item_id: :google_cloud
          )
        end

        def google_oauth2_configured?
          config = Gitlab::Auth::OAuth::Provider.config_for('google_oauth2')
          config&.present? && config.app_id.present? && config.app_secret.present?
        end
      end
    end
  end
end