Class: ActiveRecord::TableMetadata
- Inherits:
-
Object
- Object
- ActiveRecord::TableMetadata
- Defined in:
- lib/active_record/table_metadata.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#arel_table ⇒ Object
readonly
Returns the value of attribute arel_table.
Instance Method Summary collapse
- #associated_table(table_name) ⇒ Object
- #associated_with?(table_name) ⇒ Boolean
- #has_column?(column_name) ⇒ Boolean
-
#initialize(klass, arel_table, reflection = nil) ⇒ TableMetadata
constructor
A new instance of TableMetadata.
- #polymorphic_association? ⇒ Boolean
- #polymorphic_name_association ⇒ Object
- #predicate_builder ⇒ Object
- #primary_key ⇒ Object
- #reflect_on_aggregation(aggregation_name) ⇒ Object (also: #aggregated_with?)
- #through_association? ⇒ Boolean
- #type(column_name) ⇒ Object
Constructor Details
#initialize(klass, arel_table, reflection = nil) ⇒ TableMetadata
Returns a new instance of TableMetadata.
7 8 9 10 11 |
# File 'lib/active_record/table_metadata.rb', line 7 def initialize(klass, arel_table, reflection = nil) @klass = klass @arel_table = arel_table @reflection = reflection end |
Instance Attribute Details
#arel_table ⇒ Object (readonly)
Returns the value of attribute arel_table.
78 79 80 |
# File 'lib/active_record/table_metadata.rb', line 78 def arel_table @arel_table end |
Instance Method Details
#associated_table(table_name) ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/active_record/table_metadata.rb', line 29 def associated_table(table_name) reflection = klass._reflect_on_association(table_name) || klass._reflect_on_association(table_name.singularize) if !reflection && table_name == arel_table.name return self end if reflection association_klass = reflection.klass unless reflection.polymorphic? elsif block_given? association_klass = yield table_name end if association_klass arel_table = association_klass.arel_table arel_table = arel_table.alias(table_name) if arel_table.name != table_name TableMetadata.new(association_klass, arel_table, reflection) else type_caster = TypeCaster::Connection.new(klass, table_name) arel_table = Arel::Table.new(table_name, type_caster: type_caster) TableMetadata.new(nil, arel_table, reflection) end end |
#associated_with?(table_name) ⇒ Boolean
25 26 27 |
# File 'lib/active_record/table_metadata.rb', line 25 def associated_with?(table_name) klass&._reflect_on_association(table_name) end |
#has_column?(column_name) ⇒ Boolean
21 22 23 |
# File 'lib/active_record/table_metadata.rb', line 21 def has_column?(column_name) klass&.columns_hash&.key?(column_name) end |
#polymorphic_association? ⇒ Boolean
53 54 55 |
# File 'lib/active_record/table_metadata.rb', line 53 def polymorphic_association? reflection&.polymorphic? end |
#polymorphic_name_association ⇒ Object
57 58 59 |
# File 'lib/active_record/table_metadata.rb', line 57 def polymorphic_name_association reflection&.polymorphic_name end |
#predicate_builder ⇒ Object
70 71 72 73 74 75 76 |
# File 'lib/active_record/table_metadata.rb', line 70 def predicate_builder if klass klass.predicate_builder.with(self) else PredicateBuilder.new(self) end end |
#primary_key ⇒ Object
13 14 15 |
# File 'lib/active_record/table_metadata.rb', line 13 def primary_key klass&.primary_key end |
#reflect_on_aggregation(aggregation_name) ⇒ Object Also known as: aggregated_with?
65 66 67 |
# File 'lib/active_record/table_metadata.rb', line 65 def reflect_on_aggregation(aggregation_name) klass&.reflect_on_aggregation(aggregation_name) end |
#through_association? ⇒ Boolean
61 62 63 |
# File 'lib/active_record/table_metadata.rb', line 61 def through_association? reflection&.through_reflection? end |
#type(column_name) ⇒ Object
17 18 19 |
# File 'lib/active_record/table_metadata.rb', line 17 def type(column_name) arel_table.type_for_attribute(column_name) end |