2013-06-23 12:47:22 -04:00
|
|
|
class Projects::GraphsController < Projects::ApplicationController
|
2015-07-02 14:12:24 -04:00
|
|
|
include ExtractsPath
|
|
|
|
|
2013-05-09 01:00:56 -04:00
|
|
|
# Authorize
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :require_non_empty_project
|
2015-07-02 14:12:24 -04:00
|
|
|
before_action :assign_ref_vars
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authorize_download_code!
|
2015-12-08 06:55:38 -05:00
|
|
|
before_action :builds_enabled, only: :ci
|
2013-06-05 08:50:11 -04:00
|
|
|
|
2013-05-09 01:00:56 -04:00
|
|
|
def show
|
2013-06-05 08:50:11 -04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2014-09-26 11:04:41 -04:00
|
|
|
format.json do
|
2013-06-25 06:55:03 -04:00
|
|
|
fetch_graph
|
2013-06-05 08:50:11 -04:00
|
|
|
end
|
|
|
|
end
|
2013-05-09 01:00:56 -04:00
|
|
|
end
|
2013-06-25 06:55:03 -04:00
|
|
|
|
2014-09-26 13:32:44 -04:00
|
|
|
def commits
|
2016-04-22 08:07:25 -04:00
|
|
|
@commits = @project.repository.commits(@ref, limit: 2000, skip_merges: true)
|
2014-09-29 05:05:17 -04:00
|
|
|
@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
|
2014-09-26 13:32:44 -04:00
|
|
|
end
|
|
|
|
|
2015-09-23 10:16:45 -04:00
|
|
|
def ci
|
|
|
|
@charts = {}
|
2015-12-04 06:55:23 -05:00
|
|
|
@charts[:week] = Ci::Charts::WeekChart.new(project)
|
|
|
|
@charts[:month] = Ci::Charts::MonthChart.new(project)
|
|
|
|
@charts[:year] = Ci::Charts::YearChart.new(project)
|
|
|
|
@charts[:build_times] = Ci::Charts::BuildTime.new(project)
|
2015-09-23 10:16:45 -04:00
|
|
|
end
|
|
|
|
|
2015-12-07 20:35:34 -05:00
|
|
|
def languages
|
|
|
|
@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-10-10 10:18:26 -04:00
|
|
|
color = Linguist::Language[name].color || "##{Digest::SHA256.hexdigest(name)[0...6]}"
|
2015-12-07 20:35:34 -05:00
|
|
|
{
|
|
|
|
value: (share.to_f * 100 / total).round(2),
|
|
|
|
label: name,
|
2016-10-07 13:15:14 -04:00
|
|
|
color: color,
|
|
|
|
highlight: color
|
2015-12-07 20:35:34 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
@languages.sort! do |x, y|
|
|
|
|
y[:value] <=> x[:value]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-06-25 06:55:03 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def fetch_graph
|
2016-04-22 08:07:25 -04:00
|
|
|
@commits = @project.repository.commits(@ref, limit: 6000, skip_merges: true)
|
2013-06-25 06:55:03 -04:00
|
|
|
@log = []
|
2014-09-26 11:04:41 -04:00
|
|
|
|
|
|
|
@commits.each do |commit|
|
|
|
|
@log << {
|
2015-03-06 06:25:31 -05:00
|
|
|
author_name: commit.author_name,
|
|
|
|
author_email: commit.author_email,
|
2014-09-26 11:04:41 -04:00
|
|
|
date: commit.committed_date.strftime("%Y-%m-%d")
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: @log.to_json
|
2013-06-25 06:55:03 -04:00
|
|
|
end
|
2013-06-05 08:50:11 -04:00
|
|
|
end
|