debian-mirror-gitlab/app/models/cycle_analytics/summary.rb

44 lines
1.1 KiB
Ruby
Raw Normal View History

2016-09-29 09:46:39 +05:30
class CycleAnalytics
class Summary
2017-01-15 13:20:01 +05:30
def initialize(project, current_user, from:)
2016-09-29 09:46:39 +05:30
@project = project
2017-01-15 13:20:01 +05:30
@current_user = current_user
2016-09-29 09:46:39 +05:30
@from = from
end
def new_issues
2017-01-15 13:20:01 +05:30
IssuesFinder.new(@current_user, project_id: @project.id).execute.created_after(@from).count
2016-09-29 09:46:39 +05:30
end
def commits
2016-10-01 15:18:49 +05:30
ref = @project.default_branch.presence
count_commits_for(ref)
2016-09-29 09:46:39 +05:30
end
def deploys
@project.deployments.where("created_at > ?", @from).count
end
2016-10-01 15:18:49 +05:30
private
# Don't use the `Gitlab::Git::Repository#log` method, because it enforces
# a limit. Since we need a commit count, we _can't_ enforce a limit, so
# the easiest way forward is to replicate the relevant portions of the
# `log` function here.
def count_commits_for(ref)
return unless ref
repository = @project.repository.raw_repository
sha = @project.repository.commit(ref).sha
cmd = %W(git --git-dir=#{repository.path} log)
cmd << '--format=%H'
cmd << "--after=#{@from.iso8601}"
cmd << sha
raw_output = IO.popen(cmd) { |io| io.read }
raw_output.lines.count
end
2016-09-29 09:46:39 +05:30
end
end