gitlab-org--gitlab-foss/app/models/cycle_analytics.rb

38 lines
816 B
Ruby
Raw Normal View History

class CycleAnalytics
STAGES = %i[issue plan code test review staging production].freeze
2016-11-22 13:29:25 +00:00
def initialize(project, options:)
@project = project
@options = options
end
def summary
@summary ||= Gitlab::CycleAnalytics::Summary.new(@project, from: @options[:from]).data
end
2016-11-22 13:29:25 +00:00
def stats
@stats ||= stats_per_stage
end
def no_stats?
stats.map(&:value).compact.empty?
2016-11-22 11:01:21 +00:00
end
def permissions(user:)
Gitlab::CycleAnalytics::Permissions.get(user: user, project: @project)
end
2016-11-22 13:29:25 +00:00
private
def stats_per_stage
STAGES.map do |stage_name|
classify_stage(method_sym).new(project: @project, options: @options, stage: stage_name).median_data
end
end
2016-11-22 13:29:25 +00:00
def classify_stage(stage_name)
"Gitlab::CycleAnalytics::#{stage_name.to_s.capitalize}Stage".constantize
end
2016-11-22 13:29:25 +00:00
end