Sha256: 9260bd3f6257008c1ee0de5447477cd217f0149e939d4c55ead73abce4775225

Contents?: true

Size: 1.6 KB

Versions: 3

Compression:

Stored size: 1.6 KB

Contents

# encoding: UTF-8
module MongoMapper
  module Plugins
    module Associations
      class BelongsToAssociation < SingleAssociation
        def type_key_name
          "#{as}_type"
        end

        def embeddable?
          false
        end

        def proxy_class
          @proxy_class ||= polymorphic? ? BelongsToPolymorphicProxy : BelongsToProxy
        end

        def setup(model)
          model.key foreign_key, ObjectId unless model.key?(foreign_key)
          model.key type_key_name, String unless model.key?(type_key_name) if polymorphic?
          super
          add_touch_callbacks if touch?
          add_counter_cache if counter_cache?
        end

        def autosave?
          options.fetch(:autosave, false)
        end

        def add_touch_callbacks
          name        = self.name
          method_name = "belongs_to_touch_after_save_or_destroy_for_#{name}"
          touch       = options.fetch(:touch)

          @model.send(:define_method, method_name) do
            record = send(name)

            unless record.nil?
              if touch == true
                record.touch
              else
                record.touch(touch)
              end
            end
          end

          @model.after_save(method_name)
          @model.after_touch(method_name)
          @model.after_destroy(method_name)
        end

        def add_counter_cache
          options = {}
          if @options[:counter_cache] && @options[:counter_cache] != true
            options[:field] = @options[:counter_cache]
          end

          @model.counter_cache name, options
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mongo_mapper-0.14.0 lib/mongo_mapper/plugins/associations/belongs_to_association.rb
mongo_mapper-0.14.0.rc1 lib/mongo_mapper/plugins/associations/belongs_to_association.rb
mongo_mapper-0.13.1 lib/mongo_mapper/plugins/associations/belongs_to_association.rb