debian-mirror-gitlab/app/controllers/projects/graphs_controller.rb

101 lines
2.6 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
class Projects::GraphsController < Projects::ApplicationController
2015-09-11 14:41:01 +05:30
include ExtractsPath
2020-07-28 23:09:34 +05:30
include Analytics::UniqueVisitsHelper
2015-09-11 14:41:01 +05:30
2014-09-02 18:07:02 +05:30
# Authorize
2015-09-11 14:41:01 +05:30
before_action :require_non_empty_project
before_action :assign_ref_vars
2020-06-23 00:09:42 +05:30
before_action :authorize_read_repository_graphs!
2014-09-02 18:07:02 +05:30
2020-07-28 23:09:34 +05:30
track_unique_visits :charts, target_id: 'p_analytics_repo'
2014-09-02 18:07:02 +05:30
def show
respond_to do |format|
format.html
2015-04-26 12:48:37 +05:30
format.json do
2014-09-02 18:07:02 +05:30
fetch_graph
end
end
end
2015-04-26 12:48:37 +05:30
def commits
2017-08-17 22:00:37 +05:30
redirect_to action: 'charts'
end
def languages
redirect_to action: 'charts'
end
def charts
get_commits
get_languages
2020-05-24 23:13:21 +05:30
get_daily_coverage_options
2017-08-17 22:00:37 +05:30
end
def ci
2017-09-10 17:25:29 +05:30
redirect_to charts_project_pipelines_path(@project)
2017-08-17 22:00:37 +05:30
end
private
def get_commits
2020-04-08 14:13:33 +05:30
@commits_limit = 2000
@commits = @project.repository.commits(@ref, limit: @commits_limit, skip_merges: true)
2015-04-26 12:48:37 +05:30
@commits_graph = Gitlab::Graphs::Commits.new(@commits)
@commits_per_week_days = @commits_graph.commits_per_week_days
@commits_per_time = @commits_graph.commits_per_time
@commits_per_month = @commits_graph.commits_per_month
end
2017-08-17 22:00:37 +05:30
def get_languages
2019-07-07 11:18:12 +05:30
@languages =
::Projects::RepositoryLanguagesService.new(@project, current_user).execute.map do |lang|
{ value: lang.share, label: lang.name, color: lang.color, highlight: lang.color }
end
2015-10-24 18:46:33 +05:30
end
2020-05-24 23:13:21 +05:30
def get_daily_coverage_options
2020-06-23 00:09:42 +05:30
return unless Feature.enabled?(:ci_download_daily_code_coverage, @project, default_enabled: true)
return unless can?(current_user, :read_build_report_results, project)
2020-05-24 23:13:21 +05:30
date_today = Date.current
report_window = Projects::Ci::DailyBuildGroupReportResultsController::REPORT_WINDOW
@daily_coverage_options = {
base_params: {
start_date: date_today - report_window,
end_date: date_today,
ref_path: @project.repository.expand_ref(@ref),
param_type: 'coverage'
},
download_path: namespace_project_ci_daily_build_group_report_results_path(
namespace_id: @project.namespace,
project_id: @project,
format: :csv
2020-06-23 00:09:42 +05:30
),
graph_api_path: namespace_project_ci_daily_build_group_report_results_path(
namespace_id: @project.namespace,
project_id: @project,
format: :json
2020-05-24 23:13:21 +05:30
)
}
end
2014-09-02 18:07:02 +05:30
def fetch_graph
2016-06-02 11:05:42 +05:30
@commits = @project.repository.commits(@ref, limit: 6000, skip_merges: true)
2014-09-02 18:07:02 +05:30
@log = []
2015-04-26 12:48:37 +05:30
@commits.each do |commit|
@log << {
author_name: commit.author_name,
author_email: commit.author_email,
date: commit.committed_date.strftime("%Y-%m-%d")
}
end
render json: @log.to_json
2014-09-02 18:07:02 +05:30
end
end