aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/spawn_methods.rb
blob: 4ecee8c634cc9634e4217ffa08ac2cc9b2ffc03a (plain) (blame)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
module ActiveRecord
  module SpawnMethods
    def spawn(relation = @relation)
      relation = Relation.new(@klass, relation)
      relation.readonly = @readonly
      relation.preload_associations = @preload_associations
      relation.eager_load_associations = @eager_load_associations
      relation.includes_associations = @includes_associations
      relation.create_with_attributes = @create_with_attributes
      relation.table = table
      relation
    end

    def merge(r)
      raise ArgumentError, "Cannot merge a #{r.klass.name} relation with #{@klass.name} relation" if r.klass != @klass

      merged_relation = spawn(table).eager_load(r.eager_load_associations).preload(r.preload_associations).includes(r.includes_associations)
      merged_relation.readonly = r.readonly

      [self.relation, r.relation].each do |arel|
        merged_relation = merged_relation.
          joins(arel.joins(arel)).
          group(arel.groupings).
          limit(arel.taken).
          offset(arel.skipped).
          select(arel.send(:select_clauses)).
          from(arel.sources).
          having(arel.havings).
          lock(arel.locked)
      end

      relation_order = r.send(:order_clause)
      merged_order = relation_order.present? ? relation_order : order_clause
      merged_relation = merged_relation.order(merged_order)

      merged_relation.create_with_attributes = @create_with_attributes

      if @create_with_attributes && r.create_with_attributes
        merged_relation.create_with_attributes = @create_with_attributes.merge(r.create_with_attributes)
      else
        merged_relation.create_with_attributes = r.create_with_attributes || @create_with_attributes
      end

      merged_wheres = @relation.wheres

      r.wheres.each do |w|
        if w.is_a?(Arel::Predicates::Equality)
          merged_wheres = merged_wheres.reject {|p| p.is_a?(Arel::Predicates::Equality) && p.operand1.name == w.operand1.name }
        end

        merged_wheres << w
      end

      merged_relation.where(*merged_wheres)
    end

    alias :& :merge

    def except(*skips)
      result = Relation.new(@klass, table)
      result.table = table

      [:eager_load, :preload, :includes].each do |load_method|
        result = result.send(load_method, send(:"#{load_method}_associations"))
      end

      result.readonly = self.readonly unless skips.include?(:readonly)
      result.create_with_attributes = @create_with_attributes unless skips.include?(:create_with)

      result = result.joins(@relation.joins(@relation)) unless skips.include?(:joins)
      result = result.group(@relation.groupings) unless skips.include?(:group)
      result = result.limit(@relation.taken) unless skips.include?(:limit)
      result = result.offset(@relation.skipped) unless skips.include?(:offset)
      result = result.select(@relation.send(:select_clauses)) unless skips.include?(:select)
      result = result.from(@relation.sources) unless skips.include?(:from)
      result = result.order(order_clause) unless skips.include?(:order)
      result = result.where(*@relation.wheres) unless skips.include?(:where)
      result = result.having(*@relation.havings) unless skips.include?(:having)
      result = result.lock(@relation.locked) unless skips.include?(:lock)

      result
    end

  end
end