Class: ActiveRecord::Associations::Builder::BelongsTo
Overview
Constant Summary
Constants inherited
from Association
Association::VALID_OPTIONS
Class Method Summary
collapse
-
.add_counter_cache_callbacks(model, reflection) ⇒ Object
-
.add_counter_cache_methods(mixin) ⇒ Object
-
.add_destroy_callbacks(model, reflection) ⇒ Object
-
.add_touch_callbacks(model, reflection) ⇒ Object
-
.define_accessors(mixin, reflection) ⇒ Object
-
.define_callbacks(model, reflection) ⇒ Object
-
.define_validations(model, reflection) ⇒ Object
-
.macro ⇒ Object
-
.touch_record(o, foreign_key, name, touch, touch_method) ⇒ Object
-
.valid_dependent_options ⇒ Object
-
.valid_options(options) ⇒ Object
define_constructors
Methods inherited from Association
build, build_scope, check_dependent_options, create_reflection, define_extensions, define_readers, define_writers, validate_options, wrap_scope
Class Method Details
.add_counter_cache_callbacks(model, reflection) ⇒ Object
62
63
64
65
66
67
68
69
70
71
|
# File 'lib/active_record/associations/builder/belongs_to.rb', line 62
def self.add_counter_cache_callbacks(model, reflection)
cache_column = reflection.counter_cache_column
model.after_update lambda { |record|
record.belongs_to_counter_cache_after_update(reflection)
}
klass = reflection.class_name.safe_constantize
klass.attr_readonly cache_column if klass && klass.respond_to?(:attr_readonly)
end
|
.add_counter_cache_methods(mixin) ⇒ Object
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
|
# File 'lib/active_record/associations/builder/belongs_to.rb', line 26
def self.add_counter_cache_methods(mixin)
return if mixin.method_defined? :belongs_to_counter_cache_after_update
mixin.class_eval do
def belongs_to_counter_cache_after_update(reflection)
foreign_key = reflection.foreign_key
cache_column = reflection.counter_cache_column
if (@_after_create_counter_called ||= false)
@_after_create_counter_called = false
elsif (@_after_replace_counter_called ||= false)
@_after_replace_counter_called = false
elsif attribute_changed?(foreign_key) && !new_record?
if reflection.polymorphic?
model = attribute(reflection.foreign_type).try(:constantize)
model_was = attribute_was(reflection.foreign_type).try(:constantize)
else
model = reflection.klass
model_was = reflection.klass
end
foreign_key_was = attribute_was foreign_key
foreign_key = attribute foreign_key
if foreign_key && model.respond_to?(:increment_counter)
model.increment_counter(cache_column, foreign_key)
end
if foreign_key_was && model_was.respond_to?(:decrement_counter)
model_was.decrement_counter(cache_column, foreign_key_was)
end
end
end
end
end
|
.add_destroy_callbacks(model, reflection) ⇒ Object
119
120
121
|
# File 'lib/active_record/associations/builder/belongs_to.rb', line 119
def self.add_destroy_callbacks(model, reflection)
model.after_destroy lambda { |o| o.association(reflection.name).handle_dependency }
end
|
.add_touch_callbacks(model, reflection) ⇒ Object
105
106
107
108
109
110
111
112
113
114
115
116
117
|
# File 'lib/active_record/associations/builder/belongs_to.rb', line 105
def self.add_touch_callbacks(model, reflection)
foreign_key = reflection.foreign_key
n = reflection.name
touch = reflection.options[:touch]
callback = lambda { |record|
BelongsTo.touch_record(record, foreign_key, n, touch, belongs_to_touch_method)
}
model.after_save callback, if: :changed?
model.after_touch callback
model.after_destroy callback
end
|
.define_accessors(mixin, reflection) ⇒ Object
21
22
23
24
|
# File 'lib/active_record/associations/builder/belongs_to.rb', line 21
def self.define_accessors(mixin, reflection)
super
add_counter_cache_methods mixin
end
|
.define_callbacks(model, reflection) ⇒ Object
15
16
17
18
19
|
# File 'lib/active_record/associations/builder/belongs_to.rb', line 15
def self.define_callbacks(model, reflection)
super
add_counter_cache_callbacks(model, reflection) if reflection.options[:counter_cache]
add_touch_callbacks(model, reflection) if reflection.options[:touch]
end
|
.define_validations(model, reflection) ⇒ Object
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
# File 'lib/active_record/associations/builder/belongs_to.rb', line 123
def self.define_validations(model, reflection)
if reflection.options.key?(:required)
reflection.options[:optional] = !reflection.options.delete(:required)
end
if reflection.options[:optional].nil?
required = model.belongs_to_required_by_default
else
required = !reflection.options[:optional]
end
super
if required
model.validates_presence_of reflection.name, message: :required
end
end
|
.macro ⇒ Object
3
4
5
|
# File 'lib/active_record/associations/builder/belongs_to.rb', line 3
def self.macro
:belongs_to
end
|
.touch_record(o, foreign_key, name, touch, touch_method) ⇒ Object
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
|
# File 'lib/active_record/associations/builder/belongs_to.rb', line 73
def self.touch_record(o, foreign_key, name, touch, touch_method) old_foreign_id = o.changed_attributes[foreign_key]
if old_foreign_id
association = o.association(name)
reflection = association.reflection
if reflection.polymorphic?
klass = o.public_send("#{reflection.foreign_type}_was").constantize
else
klass = association.klass
end
old_record = klass.find_by(klass.primary_key => old_foreign_id)
if old_record
if touch != true
old_record.send(touch_method, touch)
else
old_record.send(touch_method)
end
end
end
record = o.send name
if record && record.persisted?
if touch != true
record.send(touch_method, touch)
else
record.send(touch_method)
end
end
end
|
.valid_dependent_options ⇒ Object
11
12
13
|
# File 'lib/active_record/associations/builder/belongs_to.rb', line 11
def self.valid_dependent_options
[:destroy, :delete]
end
|
.valid_options(options) ⇒ Object
7
8
9
|
# File 'lib/active_record/associations/builder/belongs_to.rb', line 7
def self.valid_options(options)
super + [:polymorphic, :touch, :counter_cache, :optional]
end
|