2013-06-23 12:47:22 -04:00
|
|
|
class Projects::GraphsController < Projects::ApplicationController
|
2013-05-09 01:00:56 -04:00
|
|
|
# Authorize
|
|
|
|
before_filter :require_non_empty_project
|
2015-02-20 10:30:15 -05:00
|
|
|
before_filter :authorize_download_code!
|
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
|
|
|
|
@commits = @project.repository.commits(nil, nil, 2000, 0, 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
|
|
|
|
|
2013-06-25 06:55:03 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def fetch_graph
|
2014-09-26 11:04:41 -04:00
|
|
|
@commits = @project.repository.commits(nil, nil, 6000, 0, 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
|