debian-mirror-gitlab/app/controllers/concerns/metrics_dashboard.rb

99 lines
2.6 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
# Provides an action which fetches a metrics dashboard according
# to the parameters specified by the controller.
module MetricsDashboard
2019-12-26 22:10:19 +05:30
include RenderServiceResults
include ChecksCollaboration
2020-03-13 15:44:24 +05:30
include EnvironmentsHelper
2019-12-26 22:10:19 +05:30
2019-12-21 20:55:43 +05:30
extend ActiveSupport::Concern
def metrics_dashboard
result = dashboard_finder.find(
project_for_dashboard,
current_user,
2019-12-26 22:10:19 +05:30
metrics_dashboard_params.to_h.symbolize_keys
2019-12-21 20:55:43 +05:30
)
2020-03-13 15:44:24 +05:30
if result
result[:all_dashboards] = all_dashboards if include_all_dashboards?
result[:metrics_data] = metrics_data(project_for_dashboard, environment_for_dashboard) if project_for_dashboard && environment_for_dashboard
2019-12-21 20:55:43 +05:30
end
respond_to do |format|
2019-12-26 22:10:19 +05:30
if result.nil?
format.json { continue_polling_response }
elsif result[:status] == :success
2019-12-21 20:55:43 +05:30
format.json { render dashboard_success_response(result) }
else
format.json { render dashboard_error_response(result) }
end
end
end
private
2019-12-26 22:10:19 +05:30
def all_dashboards
dashboards = dashboard_finder.find_all_paths(project_for_dashboard)
dashboards.map do |dashboard|
amend_dashboard(dashboard)
end
end
def amend_dashboard(dashboard)
project_dashboard = project_for_dashboard && !dashboard[:system_dashboard]
dashboard[:can_edit] = project_dashboard ? can_edit?(dashboard) : false
dashboard[:project_blob_path] = project_dashboard ? dashboard_project_blob_path(dashboard) : nil
dashboard
end
def dashboard_project_blob_path(dashboard)
project_blob_path(project_for_dashboard, File.join(project_for_dashboard.default_branch, dashboard.fetch(:path, "")))
end
def can_edit?(dashboard)
can_collaborate_with_project?(project_for_dashboard, ref: project_for_dashboard.default_branch)
end
2019-12-21 20:55:43 +05:30
# Override in class to provide arguments to the finder.
def metrics_dashboard_params
{}
end
# Override in class if response requires complete list of
# dashboards in addition to requested dashboard body.
def include_all_dashboards?
false
end
def dashboard_finder
::Gitlab::Metrics::Dashboard::Finder
end
# Project is not defined for group and admin level clusters.
def project_for_dashboard
defined?(project) ? project : nil
end
2020-03-13 15:44:24 +05:30
def environment_for_dashboard
defined?(environment) ? environment : nil
end
2019-12-21 20:55:43 +05:30
def dashboard_success_response(result)
{
status: :ok,
2020-03-13 15:44:24 +05:30
json: result.slice(:all_dashboards, :dashboard, :status, :metrics_data)
2019-12-21 20:55:43 +05:30
}
end
def dashboard_error_response(result)
{
2019-12-26 22:10:19 +05:30
status: result[:http_status] || :bad_request,
2019-12-21 20:55:43 +05:30
json: result.slice(:all_dashboards, :message, :status)
}
end
end