debian-mirror-gitlab/app/presenters/clusters/cluster_presenter.rb

113 lines
3.7 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module Clusters
class ClusterPresenter < Gitlab::View::Presenter::Delegated
2020-07-28 23:09:34 +05:30
include ::Gitlab::Utils::StrongMemoize
2019-02-15 15:39:39 +05:30
2021-11-18 22:05:49 +05:30
delegator_override_with ::Gitlab::Utils::StrongMemoize # TODO: Remove `::Gitlab::Utils::StrongMemoize` inclusion as it's duplicate
2018-03-17 18:26:18 +05:30
2021-11-18 22:05:49 +05:30
presents ::Clusters::Cluster, as: :cluster
2019-02-15 15:39:39 +05:30
2020-01-01 13:55:28 +05:30
def provider_label
if aws?
s_('ClusterIntegration|Elastic Kubernetes Service')
elsif gcp?
s_('ClusterIntegration|Google Kubernetes Engine')
end
end
def provider_management_url
if aws?
"https://console.aws.amazon.com/eks/home?region=#{provider.region}\#/clusters/#{name}"
elsif gcp?
"https://console.cloud.google.com/kubernetes/clusters/details/#{provider.zone}/#{name}"
end
2018-03-17 18:26:18 +05:30
end
2019-02-15 15:39:39 +05:30
def can_read_cluster?
can?(current_user, :read_cluster, cluster)
end
2021-04-29 21:17:54 +05:30
def show_path(params: {})
2018-12-13 13:39:08 +05:30
if cluster.project_type?
2021-04-29 21:17:54 +05:30
project_cluster_path(project, cluster, params)
2019-02-15 15:39:39 +05:30
elsif cluster.group_type?
2021-04-29 21:17:54 +05:30
group_cluster_path(group, cluster, params)
2019-07-31 22:56:46 +05:30
elsif cluster.instance_type?
2021-04-29 21:17:54 +05:30
admin_cluster_path(cluster, params)
else
raise NotImplementedError
end
end
def integrations_path
if cluster.project_type?
create_or_update_project_cluster_integration_path(project, cluster)
elsif cluster.group_type?
create_or_update_group_cluster_integration_path(group, cluster)
elsif cluster.instance_type?
create_or_update_admin_cluster_integration_path(cluster)
2018-12-13 13:39:08 +05:30
else
raise NotImplementedError
end
end
2019-02-15 15:39:39 +05:30
2020-07-28 23:09:34 +05:30
def gitlab_managed_apps_logs_path
return unless logs_project && can_read_cluster?
2021-06-08 01:23:25 +05:30
if cluster.elastic_stack_adapter&.available?
2020-07-28 23:09:34 +05:30
elasticsearch_project_logs_path(logs_project, cluster_id: cluster.id, format: :json)
else
k8s_project_logs_path(logs_project, cluster_id: cluster.id, format: :json)
end
end
2019-07-07 11:18:12 +05:30
def read_only_kubernetes_platform_fields?
!cluster.provided_by_user?
end
2020-07-28 23:09:34 +05:30
def health_data(clusterable)
{
'clusters-path': clusterable.index_path,
'dashboard-endpoint': clusterable.metrics_dashboard_path(cluster),
2020-11-24 15:15:51 +05:30
'documentation-path': help_page_path('user/project/clusters/index', anchor: 'monitoring-your-kubernetes-cluster'),
2020-10-24 23:57:45 +05:30
'add-dashboard-documentation-path': help_page_path('operations/metrics/dashboards/index.md', anchor: 'add-a-new-dashboard-to-your-project'),
2020-07-28 23:09:34 +05:30
'empty-getting-started-svg-path': image_path('illustrations/monitoring/getting_started.svg'),
'empty-loading-svg-path': image_path('illustrations/monitoring/loading.svg'),
'empty-no-data-svg-path': image_path('illustrations/monitoring/no_data.svg'),
'empty-no-data-small-svg-path': image_path('illustrations/chart-empty-state-small.svg'),
'empty-unable-to-connect-svg-path': image_path('illustrations/monitoring/unable_to_connect.svg'),
'settings-path': '',
'project-path': '',
'tags-path': ''
}
end
2019-02-15 15:39:39 +05:30
private
2020-07-28 23:09:34 +05:30
def image_path(path)
2021-11-18 22:05:49 +05:30
ApplicationController.helpers.image_path(path)
2020-07-28 23:09:34 +05:30
end
# currently log explorer is only available in the scope of the project
# for group and instance level cluster selected project does not affects
# fetching logs from gitlab managed apps namespace, therefore any project
# available to user will be sufficient.
def logs_project
strong_memoize(:logs_project) do
cluster.all_projects.first
end
end
2019-02-15 15:39:39 +05:30
def clusterable
if cluster.group_type?
cluster.group
elsif cluster.project_type?
cluster.project
end
end
2018-03-17 18:26:18 +05:30
end
end
2020-04-22 19:07:51 +05:30
2021-06-08 01:23:25 +05:30
Clusters::ClusterPresenter.prepend_mod_with('Clusters::ClusterPresenter')