summaryrefslogtreecommitdiff
path: root/app/models/cycle_analytics.rb
blob: d2e626c22e833ad2a39a865802bcd4af7f4130b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
class CycleAnalytics
  STAGES = %i[issue plan code test review staging production].freeze

  def initialize(project, options)
    @project = project
    @options = options
  end

  def summary
    @summary ||= ::Gitlab::CycleAnalytics::StageSummary.new(@project,
                                                            from: @options[:from],
                                                            current_user: @options[:current_user]).data
  end

  def stats
    @stats ||= stats_per_stage
  end

  def no_stats?
    stats.all? { |hash| hash[:value].nil? }
  end

  def permissions(user:)
    Gitlab::CycleAnalytics::Permissions.get(user: user, project: @project)
  end

  def [](stage_name)
    Gitlab::CycleAnalytics::Stage[stage_name].new(project: @project, options: @options)
  end

  private

  def stats_per_stage
    STAGES.map do |stage_name|
      self[stage_name].as_json
    end
  end
end