summaryrefslogtreecommitdiff
path: root/lib/gitlab/metrics/dashboard/processor.rb
blob: dd9860206937d49976db80f095dea934705070ec (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
39
40
41
42
43
44
45
46
# frozen_string_literal: true

module Gitlab
  module Metrics
    module Dashboard
      # Responsible for processesing a dashboard hash, inserting
      # relevant DB records & sorting for proper rendering in
      # the UI. These includes shared metric info, custom metrics
      # info, and alerts (only in EE).
      class Processor
        SYSTEM_SEQUENCE = [
          Stages::CommonMetricsInserter,
          Stages::ProjectMetricsInserter,
          Stages::Sorter
        ].freeze

        PROJECT_SEQUENCE = [
          Stages::CommonMetricsInserter,
          Stages::Sorter
        ].freeze

        def initialize(project, environment, dashboard)
          @project = project
          @environment = environment
          @dashboard = dashboard
        end

        # Returns a new dashboard hash with the results of
        # running transforms on the dashboard.
        def process(insert_project_metrics:)
          @dashboard.deep_symbolize_keys.tap do |dashboard|
            sequence(insert_project_metrics).each do |stage|
              stage.new(@project, @environment, dashboard).transform!
            end
          end
        end

        private

        def sequence(insert_project_metrics)
          insert_project_metrics ? SYSTEM_SEQUENCE : PROJECT_SEQUENCE
        end
      end
    end
  end
end