aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/class_methods/join_dependency/join_association.rb
blob: ed2053d3dff5b1a8916a431fd5641f0da2006f93 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
module ActiveRecord
  module Associations
    module ClassMethods
      class JoinDependency # :nodoc:
        class JoinAssociation < JoinPart # :nodoc:
          # The reflection of the association represented
          attr_reader :reflection

          # The JoinDependency object which this JoinAssociation exists within. This is mainly
          # relevant for generating aliases which do not conflict with other joins which are
          # part of the query.
          attr_reader :join_dependency

          # A JoinBase instance representing the active record we are joining onto.
          # (So in Author.has_many :posts, the Author would be that base record.)
          attr_reader :parent

          # What type of join will be generated, either Arel::InnerJoin (default) or Arel::OuterJoin
          attr_accessor :join_type

          attr_reader :aliased_prefix

          delegate :options, :through_reflection, :source_reflection, :through_reflection_chain, :to => :reflection
          delegate :table, :table_name, :to => :parent, :prefix => true
          delegate :alias_tracker, :to => :join_dependency

          def initialize(reflection, join_dependency, parent = nil)
            reflection.check_validity!

            if reflection.options[:polymorphic]
              raise EagerLoadPolymorphicError.new(reflection)
            end

            super(reflection.klass)

            @reflection         = reflection
            @join_dependency    = join_dependency
            @parent             = parent
            @join_type          = Arel::InnerJoin
            @aliased_prefix     = "t#{ join_dependency.join_parts.size }"

            setup_tables
          end

          def ==(other)
            other.class == self.class &&
              other.reflection == reflection &&
              other.parent == parent
          end

          def find_parent_in(other_join_dependency)
            other_join_dependency.join_parts.detect do |join_part|
              self.parent == join_part
            end
          end

          def join_to(relation)
            # The chain starts with the target table, but we want to end with it here (makes
            # more sense in this context)
            chain = through_reflection_chain.reverse

            foreign_table = parent_table
            index = 0

            chain.each do |reflection|
              table = @tables[index]
              conditions = []

              if reflection.source_reflection.nil?
                case reflection.macro
                  when :belongs_to
                    key         = reflection.association_primary_key
                    foreign_key = reflection.primary_key_name
                  when :has_many, :has_one
                    key         = reflection.primary_key_name
                    foreign_key = reflection.active_record_primary_key

                    conditions << polymorphic_conditions(reflection, table)
                  when :has_and_belongs_to_many
                    # For habtm, we need to deal with the join table at the same time as the
                    # target table (because unlike a :through association, there is no reflection
                    # to represent the join table)
                    table, join_table = table

                    join_key         = reflection.primary_key_name
                    join_foreign_key = reflection.active_record.primary_key

                    relation = relation.join(join_table, join_type).on(
                      join_table[join_key].
                        eq(foreign_table[join_foreign_key])
                    )

                    # We've done the first join now, so update the foreign_table for the second
                    foreign_table = join_table

                    key         = reflection.klass.primary_key
                    foreign_key = reflection.association_foreign_key
                end
              else
                case reflection.source_reflection.macro
                  when :belongs_to
                    key         = reflection.association_primary_key
                    foreign_key = reflection.primary_key_name

                    conditions << source_type_conditions(reflection, foreign_table)
                  when :has_many, :has_one
                    key         = reflection.primary_key_name
                    foreign_key = reflection.source_reflection.active_record_primary_key
                  when :has_and_belongs_to_many
                    table, join_table = table

                    join_key         = reflection.primary_key_name
                    join_foreign_key = reflection.klass.primary_key

                    relation = relation.join(join_table, join_type).on(
                      join_table[join_key].
                        eq(foreign_table[join_foreign_key])
                    )

                    foreign_table = join_table

                    key         = reflection.klass.primary_key
                    foreign_key = reflection.association_foreign_key
                end
              end

              conditions << table[key].eq(foreign_table[foreign_key])

              conditions << reflection_conditions(index, table)
              conditions << sti_conditions(reflection, table)

              relation = relation.join(table, join_type).on(*conditions.flatten.compact)

              # The current table in this iteration becomes the foreign table in the next
              foreign_table = table
              index += 1
            end

            relation
          end

          def join_relation(joining_relation)
            self.join_type = Arel::OuterJoin
            joining_relation.joins(self)
          end

          def table
            if @tables.last.is_a?(Array)
              @tables.last.first
            else
              @tables.last
            end
          end

          def aliased_table_name
            table.table_alias || table.name
          end

          protected

          def table_alias_for(reflection, join = false)
            name = alias_tracker.pluralize(reflection.name)
            name << "_#{parent_table_name}"
            name << "_join" if join
            name
          end

          def interpolate_sql(sql)
            instance_eval("%@#{sql.gsub('@', '\@')}@", __FILE__, __LINE__)
          end

          private

          # Generate aliases and Arel::Table instances for each of the tables which we will
          # later generate joins for. We must do this in advance in order to correctly allocate
          # the proper alias.
          def setup_tables
            @tables = through_reflection_chain.map do |reflection|
              aliased_table_name = alias_tracker.aliased_name_for(
                reflection.table_name,
                table_alias_for(reflection, reflection != self.reflection)
              )

              table = Arel::Table.new(
                reflection.table_name, :engine => arel_engine,
                :as => aliased_table_name, :columns => reflection.klass.columns
              )

              # For habtm, we have two Arel::Table instances related to a single reflection, so
              # we just store them as a pair in the array.
              if reflection.macro == :has_and_belongs_to_many ||
                   (reflection.source_reflection &&
                    reflection.source_reflection.macro == :has_and_belongs_to_many)

                join_table_name = (reflection.source_reflection || reflection).options[:join_table]

                aliased_join_table_name = alias_tracker.aliased_name_for(
                  join_table_name,
                  table_alias_for(reflection, true)
                )

                join_table = Arel::Table.new(
                  join_table_name, :engine => arel_engine,
                  :as => aliased_join_table_name
                )

                [table, join_table]
              else
                table
              end
            end

            # The joins are generated from the through_reflection_chain in reverse order, so
            # reverse the tables too (but it's important to generate the aliases in the 'forward'
            # order, which is why we only do the reversal now.
            @tables.reverse!

            @tables
          end

          def reflection_conditions(index, table)
            @reflection.through_conditions.reverse[index].map do |condition|
              Arel.sql(interpolate_sql(sanitize_sql(
                condition,
                table.table_alias || table.name
              )))
            end
          end

          def sti_conditions(reflection, table)
            unless reflection.klass.descends_from_active_record?
              sti_column = table[reflection.klass.inheritance_column]

              condition = sti_column.eq(reflection.klass.sti_name)

              reflection.klass.descendants.each do |subclass|
                condition = condition.or(sti_column.eq(subclass.sti_name))
              end

              condition
            end
          end

          def source_type_conditions(reflection, foreign_table)
            if reflection.options[:source_type]
              foreign_table[reflection.source_reflection.options[:foreign_type]].
                eq(reflection.options[:source_type])
            end
          end

          def polymorphic_conditions(reflection, table)
            if reflection.options[:as]
              table["#{reflection.options[:as]}_type"].
                eq(reflection.active_record.base_class.name)
            end
          end
        end
      end
    end
  end
end