Welcome to mirror list, hosted at ThFree Co, Russian Federation.

from_set_operator.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56b788eb1abbea8858686774f85a428000b78d25 (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
47
# frozen_string_literal: true

module FromSetOperator
  # Define a high level method to more easily work with the SQL set operations
  # of UNION, INTERSECT, and EXCEPT as defined by Gitlab::SQL::Union,
  # Gitlab::SQL::Intersect, and Gitlab::SQL::Except respectively.
  def define_set_operator(operator)
    method_name = 'from_' + operator.name.demodulize.downcase
    method_name = method_name.to_sym

    raise "Trying to redefine method '#{method(method_name)}'" if methods.include?(method_name)

    define_method(method_name) do |*members, remove_duplicates: true, remove_order: true, alias_as: table_name|
      members = flatten_ar_array(members)

      operator_sql =
        if members.any?
          operator.new(members, remove_duplicates: remove_duplicates, remove_order: remove_order).to_sql
        else
          where("1=0").to_sql
        end

      from(Arel.sql("(#{operator_sql}) #{alias_as}"))
    end

    # Array#flatten with ActiveRecord::Relation items will load the ActiveRecord::Relation.
    # Therefore we need to roll our own flatten method.
    unless method_defined?(:flatten_ar_array) # rubocop:disable Style/GuardClause
      define_method :flatten_ar_array do |ary|
        arrays = ary.dup
        result = []

        until arrays.empty?
          item = arrays.shift
          if item.is_a?(Array)
            arrays.concat(item.dup)
          else
            result.push(item)
          end
        end

        result
      end
      private :flatten_ar_array
    end
  end
end