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

81 lines
1.9 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
class Projects::GraphsController < Projects::ApplicationController
2015-09-11 14:41:01 +05:30
include ExtractsPath
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
before_action :authorize_download_code!
2015-12-23 02:04:40 +05:30
before_action :builds_enabled, only: :ci
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
end
def ci
redirect_to charts_namespace_project_pipelines_path(@project.namespace, @project)
end
private
def get_commits
2016-06-02 11:05:42 +05:30
@commits = @project.repository.commits(@ref, limit: 2000, 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
2015-12-23 02:04:40 +05:30
@languages = Linguist::Repository.new(@repository.rugged, @repository.rugged.head.target_id).languages
total = @languages.map(&:last).sum
@languages = @languages.map do |language|
name, share = language
2016-11-03 12:29:30 +05:30
color = Linguist::Language[name].color || "##{Digest::SHA256.hexdigest(name)[0...6]}"
2015-12-23 02:04:40 +05:30
{
value: (share.to_f * 100 / total).round(2),
label: name,
2016-11-03 12:29:30 +05:30
color: color,
highlight: color
2015-12-23 02:04:40 +05:30
}
end
@languages.sort! do |x, y|
y[:value] <=> x[:value]
end
2015-10-24 18:46:33 +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