association.rb 2.5 KB
Newer Older
1 2 3
module ActiveRecord::Associations::Builder
  class Association #:nodoc:
    class_attribute :valid_options
4
    self.valid_options = [:class_name, :foreign_key, :select, :conditions, :include, :extend, :readonly, :validate, :references]
5 6 7 8

    # Set by subclasses
    class_attribute :macro

9
    attr_reader :model, :name, :options, :reflection
10 11 12 13 14 15 16

    def self.build(model, name, options)
      new(model, name, options).build
    end

    def initialize(model, name, options)
      @model, @name, @options = model, name, options
17 18 19 20
    end

    def mixin
      @model.generated_feature_methods
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
    end

    def build
      validate_options
      reflection = model.create_reflection(self.class.macro, name, options, model)
      define_accessors
      reflection
    end

    private

      def validate_options
        options.assert_valid_keys(self.class.valid_options)
      end

      def define_accessors
        define_readers
        define_writers
      end

      def define_readers
        name = self.name
J
Josh Susser 已提交
43
        mixin.redefine_method(name) do |*params|
44 45 46 47 48 49
          association(name).reader(*params)
        end
      end

      def define_writers
        name = self.name
J
Josh Susser 已提交
50
        mixin.redefine_method("#{name}=") do |value|
51 52 53
          association(name).writer(value)
        end
      end
54 55 56 57 58 59 60

      def dependent_restrict_raises?
        ActiveRecord::Base.dependent_restrict_raises == true
      end

      def dependent_restrict_deprecation_warning
        if dependent_restrict_raises?
61 62 63
          msg = "In the next release, `:dependent => :restrict` will not raise a `DeleteRestrictionError`. "\
                "Instead, it will add an error on the model. To fix this warning, make sure your code " \
                "isn't relying on a `DeleteRestrictionError` and then add " \
64 65 66 67
                "`config.active_record.dependent_restrict_raises = false` to your application config."
          ActiveSupport::Deprecation.warn msg
        end
      end
68 69 70 71 72 73 74 75 76

      def define_restrict_dependency_method
        name = self.name
        mixin.redefine_method(dependency_method_name) do
          # has_many or has_one associations
          if send(name).respond_to?(:exists?) ? send(name).exists? : !send(name).nil?
            if dependent_restrict_raises?
              raise ActiveRecord::DeleteRestrictionError.new(name)
            else
77 78
              key  = association(name).reflection.macro == :has_one ? "one" : "many"
              errors.add(:base, :"restrict_dependent_destroy.#{key}", :record => name)
79 80 81 82 83
              return false
            end
          end
        end
      end
84
  end
85
end