Class: ActiveRecord::Associations::Builder::CollectionAssociation

Inherits:
Association
  • Object
show all
Defined in:
lib/active_record/associations/builder/collection_association.rb

Overview

:nodoc:

Direct Known Subclasses

HasMany

Constant Summary collapse

CALLBACKS =
[:before_add, :after_add, :before_remove, :after_remove]

Constants inherited from Association

Association::VALID_OPTIONS

Class Method Summary collapse

Methods inherited from Association

add_destroy_callbacks, build, build_scope, check_dependent_options, create_reflection, define_accessors, define_validations, macro, valid_dependent_options, validate_options

Class Method Details

.define_callback(model, callback_name, name, options) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/active_record/associations/builder/collection_association.rb', line 31

def self.define_callback(model, callback_name, name, options)
  full_callback_name = "#{callback_name}_for_#{name}"

  # TODO : why do i need method_defined? I think its because of the inheritance chain
  model.class_attribute full_callback_name unless model.method_defined?(full_callback_name)
  callbacks = Array(options[callback_name.to_sym]).map do |callback|
    case callback
    when Symbol
      ->(method, owner, record) { owner.send(callback, record) }
    when Proc
      ->(method, owner, record) { callback.call(owner, record) }
    else
      ->(method, owner, record) { callback.send(method, owner, record) }
    end
  end
  model.send "#{full_callback_name}=", callbacks
end

.define_callbacks(model, reflection) ⇒ Object



14
15
16
17
18
19
20
21
# File 'lib/active_record/associations/builder/collection_association.rb', line 14

def self.define_callbacks(model, reflection)
  super
  name    = reflection.name
  options = reflection.options
  CALLBACKS.each { |callback_name|
    define_callback(model, callback_name, name, options)
  }
end

.define_extensions(model, name) ⇒ Object



23
24
25
26
27
28
29
# File 'lib/active_record/associations/builder/collection_association.rb', line 23

def self.define_extensions(model, name)
  if block_given?
    extension_module_name = "#{model.name.demodulize}#{name.to_s.camelize}AssociationExtension"
    extension = Module.new(&Proc.new)
    model.parent.const_set(extension_module_name, extension)
  end
end

.define_readers(mixin, name) ⇒ Object

Defines the setter and getter methods for the collection_singular_ids.



50
51
52
53
54
55
56
57
58
# File 'lib/active_record/associations/builder/collection_association.rb', line 50

def self.define_readers(mixin, name)
  super

  mixin.class_eval <<-CODE, __FILE__, __LINE__ + 1
    def #{name.to_s.singularize}_ids
      association(:#{name}).ids_reader
    end
  CODE
end

.define_writers(mixin, name) ⇒ Object



60
61
62
63
64
65
66
67
68
# File 'lib/active_record/associations/builder/collection_association.rb', line 60

def self.define_writers(mixin, name)
  super

  mixin.class_eval <<-CODE, __FILE__, __LINE__ + 1
    def #{name.to_s.singularize}_ids=(ids)
      association(:#{name}).ids_writer(ids)
    end
  CODE
end

.valid_options(options) ⇒ Object



9
10
11
12
# File 'lib/active_record/associations/builder/collection_association.rb', line 9

def self.valid_options(options)
  super + [:table_name, :before_add,
           :after_add, :before_remove, :after_remove, :extend]
end

.wrap_scope(scope, mod) ⇒ Object



70
71
72
73
74
75
76
77
78
79
80
# File 'lib/active_record/associations/builder/collection_association.rb', line 70

def self.wrap_scope(scope, mod)
  if scope
    if scope.arity > 0
      proc { |owner| instance_exec(owner, &scope).extending(mod) }
    else
      proc { instance_exec(&scope).extending(mod) }
    end
  else
    proc { extending(mod) }
  end
end