summaryrefslogtreecommitdiff
path: root/lib/gitlab/cycle_analytics/issue_helper.rb
blob: 295eca5edca737b0c8f8c2ae2e04b1cef117a453 (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
# frozen_string_literal: true

module Gitlab
  module CycleAnalytics
    module IssueHelper
      def stage_query(project_ids)
        query = issue_table.join(issue_metrics_table).on(issue_table[:id].eq(issue_metrics_table[:issue_id]))
          .join(projects_table).on(issue_table[:project_id].eq(projects_table[:id]))
          .join(routes_table).on(projects_table[:namespace_id].eq(routes_table[:source_id]))
          .project(issue_table[:project_id].as("project_id"))
          .project(projects_table[:path].as("project_path"))
          .project(routes_table[:path].as("namespace_path"))

        query = limit_query(query, project_ids)

        query
      end

      def limit_query(query, project_ids)
        query.where(issue_table[:project_id].in(project_ids))
          .where(routes_table[:source_type].eq('Namespace'))
          .where(issue_table[:created_at].gteq(options[:from]))
          .where(issue_metrics_table[:first_added_to_board_at].not_eq(nil).or(issue_metrics_table[:first_associated_with_milestone_at].not_eq(nil)))
      end
    end
  end
end