aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/associations/builder/collection_association.rb
blob: 7bd0687c0bfe8c8523bfcd43cbefb39a325800a6 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                                               

                                    

                                                    
 

                                                                        
                     
                                        
                                                                  
       
 
                                
 
                                        
           




                                        

       




                                                                              
                                
             
                                                                                                   
                                                           
         
       
 
                                             
                                                         
 
                                                                                         
                                                                                               






                                                                        
                                                                            


                                                    
       
 

                                                                            
                             

           




                                                      
       
 
                             
           
 




                                                      
       



                              

                                                                    



                               

     
# This class is inherited by the has_many and has_many_and_belongs_to_many association classes 

require 'active_record/associations'

module ActiveRecord::Associations::Builder
  class CollectionAssociation < Association #:nodoc:

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

    def valid_options
      super + [:table_name, :before_add,
               :after_add, :before_remove, :after_remove, :extend]
    end

    attr_reader :block_extension

    def initialize(name, scope, options)
      super
      @mod = nil
      if block_given?
        @mod = Module.new(&Proc.new)
        @scope = wrap_scope @scope, @mod
      end
    end

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

    def define_extensions(model)
      if @mod
        extension_module_name = "#{model.name.demodulize}#{name.to_s.camelize}AssociationExtension"
        model.parent.const_set(extension_module_name, @mod)
      end
    end

    def define_callback(model, callback_name)
      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

    # Defines the setter and getter methods for the collection_singular_ids.

    def define_readers(mixin)
      super

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

    def define_writers(mixin)
      super

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

    private

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