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

47 lines
1.1 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2016-09-29 09:46:39 +05:30
class CycleAnalytics
2017-08-17 22:00:37 +05:30
STAGES = %i[issue plan code test review staging production].freeze
2016-09-29 09:46:39 +05:30
2017-08-17 22:00:37 +05:30
def initialize(project, options)
2016-09-29 09:46:39 +05:30
@project = project
2017-08-17 22:00:37 +05:30
@options = options
2016-09-29 09:46:39 +05:30
end
2018-03-27 19:54:05 +05:30
def all_medians_per_stage
STAGES.each_with_object({}) do |stage_name, medians_per_stage|
medians_per_stage[stage_name] = self[stage_name].median
end
end
2016-09-29 09:46:39 +05:30
def summary
2017-08-17 22:00:37 +05:30
@summary ||= ::Gitlab::CycleAnalytics::StageSummary.new(@project,
from: @options[:from],
current_user: @options[:current_user]).data
2016-09-29 09:46:39 +05:30
end
2017-08-17 22:00:37 +05:30
def stats
@stats ||= stats_per_stage
2016-09-29 09:46:39 +05:30
end
2017-08-17 22:00:37 +05:30
def no_stats?
stats.all? { |hash| hash[:value].nil? }
2016-09-29 09:46:39 +05:30
end
2017-08-17 22:00:37 +05:30
def permissions(user:)
Gitlab::CycleAnalytics::Permissions.get(user: user, project: @project)
2016-09-29 09:46:39 +05:30
end
2017-08-17 22:00:37 +05:30
def [](stage_name)
Gitlab::CycleAnalytics::Stage[stage_name].new(project: @project, options: @options)
2016-09-29 09:46:39 +05:30
end
private
2017-08-17 22:00:37 +05:30
def stats_per_stage
STAGES.map do |stage_name|
self[stage_name].as_json
2016-11-03 12:29:30 +05:30
end
2016-09-29 09:46:39 +05:30
end
end