belongs_to.rb 2.0 KB
Newer Older
1 2
module ActiveRecord::Associations::Builder
  class BelongsTo < SingularAssociation #:nodoc:
3 4 5
    def macro
      :belongs_to
    end
6

7 8 9
    def valid_options
      super + [:foreign_type, :polymorphic, :touch]
    end
10 11 12 13 14 15 16 17 18 19 20 21

    def constructable?
      !options[:polymorphic]
    end

    def build
      reflection = super
      add_counter_cache_callbacks(reflection) if options[:counter_cache]
      add_touch_callbacks(reflection)         if options[:touch]
      reflection
    end

J
Jon Leighton 已提交
22 23 24
    def add_counter_cache_callbacks(reflection)
      cache_column = reflection.counter_cache_column

25 26 27 28 29
      mixin.class_eval <<-CODE, __FILE__, __LINE__ + 1
        def belongs_to_counter_cache_after_create_for_#{name}
          record = #{name}
          record.class.increment_counter(:#{cache_column}, record.id) unless record.nil?
        end
30

31 32 33 34 35
        def belongs_to_counter_cache_before_destroy_for_#{name}
          unless marked_for_destruction?
            record = #{name}
            record.class.decrement_counter(:#{cache_column}, record.id) unless record.nil?
          end
36
        end
37
      CODE
J
Jon Leighton 已提交
38

39 40 41 42 43
      model.after_create   "belongs_to_counter_cache_after_create_for_#{name}"
      model.before_destroy "belongs_to_counter_cache_before_destroy_for_#{name}"

      klass = reflection.class_name.safe_constantize
      klass.attr_readonly cache_column if klass && klass.respond_to?(:attr_readonly)
J
Jon Leighton 已提交
44
    end
45

J
Jon Leighton 已提交
46
    def add_touch_callbacks(reflection)
47 48 49
      mixin.class_eval <<-CODE, __FILE__, __LINE__ + 1
        def belongs_to_touch_after_save_or_destroy_for_#{name}
          record = #{name}
50

51
          unless record.nil? || record.new_record?
52
            record.touch #{options[:touch].inspect if options[:touch] != true}
53 54
          end
        end
55
      CODE
56

57 58 59
      model.after_save    "belongs_to_touch_after_save_or_destroy_for_#{name}"
      model.after_touch   "belongs_to_touch_after_save_or_destroy_for_#{name}"
      model.after_destroy "belongs_to_touch_after_save_or_destroy_for_#{name}"
J
Jon Leighton 已提交
60
    end
61

62 63
    def valid_dependent_options
      [:destroy, :delete]
J
Jon Leighton 已提交
64
    end
65 66
  end
end