nested_attributes.rb 17.5 KB
Newer Older
J
Jeremy Kemper 已提交
1 2
require 'active_support/core_ext/hash/except'
require 'active_support/core_ext/object/try'
3
require 'active_support/core_ext/object/blank'
J
Jeremy Kemper 已提交
4

5 6
module ActiveRecord
  module NestedAttributes #:nodoc:
7 8 9
    class TooManyRecords < ActiveRecordError
    end

10
    extend ActiveSupport::Concern
11 12

    included do
13 14
      class_inheritable_accessor :nested_attributes_options, :instance_writer => false
      self.nested_attributes_options = {}
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
    end

    # == Nested Attributes
    #
    # Nested attributes allow you to save attributes on associated records
    # through the parent. By default nested attribute updating is turned off,
    # you can enable it using the accepts_nested_attributes_for class method.
    # When you enable nested attributes an attribute writer is defined on
    # the model.
    #
    # The attribute writer is named after the association, which means that
    # in the following example, two new methods are added to your model:
    # <tt>author_attributes=(attributes)</tt> and
    # <tt>pages_attributes=(attributes)</tt>.
    #
    #   class Book < ActiveRecord::Base
    #     has_one :author
    #     has_many :pages
    #
    #     accepts_nested_attributes_for :author, :pages
    #   end
    #
    # Note that the <tt>:autosave</tt> option is automatically enabled on every
    # association that accepts_nested_attributes_for is used for.
    #
    # === One-to-one
    #
    # Consider a Member model that has one Avatar:
    #
    #   class Member < ActiveRecord::Base
    #     has_one :avatar
    #     accepts_nested_attributes_for :avatar
    #   end
    #
    # Enabling nested attributes on a one-to-one association allows you to
    # create the member and avatar in one go:
    #
52
    #   params = { :member => { :name => 'Jack', :avatar_attributes => { :icon => 'smiling' } } }
P
Pratik Naik 已提交
53
    #   member = Member.create(params[:member])
54 55
    #   member.avatar.id # => 2
    #   member.avatar.icon # => 'smiling'
56 57 58
    #
    # It also allows you to update the avatar through the member:
    #
P
Pratik Naik 已提交
59 60
    #   params = { :member => { :avatar_attributes => { :id => '2', :icon => 'sad' } } }
    #   member.update_attributes params[:member]
61
    #   member.avatar.icon # => 'sad'
62 63 64 65 66 67 68 69 70 71 72
    #
    # By default you will only be able to set and update attributes on the
    # associated model. If you want to destroy the associated model through the
    # attributes hash, you have to enable it first using the
    # <tt>:allow_destroy</tt> option.
    #
    #   class Member < ActiveRecord::Base
    #     has_one :avatar
    #     accepts_nested_attributes_for :avatar, :allow_destroy => true
    #   end
    #
73
    # Now, when you add the <tt>_destroy</tt> key to the attributes hash, with a
74 75
    # value that evaluates to +true+, you will destroy the associated model:
    #
76
    #   member.avatar_attributes = { :id => '2', :_destroy => '1' }
77 78
    #   member.avatar.marked_for_destruction? # => true
    #   member.save
P
Pratik Naik 已提交
79
    #   member.reload.avatar #=> nil
80 81 82 83 84 85 86 87 88
    #
    # Note that the model will _not_ be destroyed until the parent is saved.
    #
    # === One-to-many
    #
    # Consider a member that has a number of posts:
    #
    #   class Member < ActiveRecord::Base
    #     has_many :posts
89
    #     accepts_nested_attributes_for :posts
90 91 92 93 94
    #   end
    #
    # You can now set or update attributes on an associated post model through
    # the attribute hash.
    #
95
    # For each hash that does _not_ have an <tt>id</tt> key a new record will
96
    # be instantiated, unless the hash also contains a <tt>_destroy</tt> key
97 98 99 100 101 102
    # that evaluates to +true+.
    #
    #   params = { :member => {
    #     :name => 'joe', :posts_attributes => [
    #       { :title => 'Kari, the awesome Ruby documentation browser!' },
    #       { :title => 'The egalitarian assumption of the modern citizen' },
103
    #       { :title => '', :_destroy => '1' } # this will be ignored
104
    #     ]
105 106 107
    #   }}
    #
    #   member = Member.create(params['member'])
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
    #   member.posts.length # => 2
    #   member.posts.first.title # => 'Kari, the awesome Ruby documentation browser!'
    #   member.posts.second.title # => 'The egalitarian assumption of the modern citizen'
    #
    # You may also set a :reject_if proc to silently ignore any new record
    # hashes if they fail to pass your criteria. For example, the previous
    # example could be rewritten as:
    #
    #    class Member < ActiveRecord::Base
    #      has_many :posts
    #      accepts_nested_attributes_for :posts, :reject_if => proc { |attributes| attributes['title'].blank? }
    #    end
    #
    #   params = { :member => {
    #     :name => 'joe', :posts_attributes => [
    #       { :title => 'Kari, the awesome Ruby documentation browser!' },
    #       { :title => 'The egalitarian assumption of the modern citizen' },
    #       { :title => '' } # this will be ignored because of the :reject_if proc
    #     ]
    #   }}
    #
    #   member = Member.create(params['member'])
    #   member.posts.length # => 2
    #   member.posts.first.title # => 'Kari, the awesome Ruby documentation browser!'
    #   member.posts.second.title # => 'The egalitarian assumption of the modern citizen'
133
    #
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
    #  Alternatively, :reject_if also accepts a symbol for using methods:
    #
    #    class Member < ActiveRecord::Base
    #      has_many :posts
    #      accepts_nested_attributes_for :posts, :reject_if => :new_record?
    #    end
    #
    #    class Member < ActiveRecord::Base
    #      has_many :posts
    #      accepts_nested_attributes_for :posts, :reject_if => :reject_posts
    #
    #      def reject_posts(attributed)
    #        attributed['title].blank?
    #      end
    #    end
    #
150 151
    # If the hash contains an <tt>id</tt> key that matches an already
    # associated record, the matching record will be modified:
152 153
    #
    #   member.attributes = {
154 155 156 157 158
    #     :name => 'Joe',
    #     :posts_attributes => [
    #       { :id => 1, :title => '[UPDATED] An, as of yet, undisclosed awesome Ruby documentation browser!' },
    #       { :id => 2, :title => '[UPDATED] other post' }
    #     ]
159 160
    #   }
    #
161 162
    #   member.posts.first.title # => '[UPDATED] An, as of yet, undisclosed awesome Ruby documentation browser!'
    #   member.posts.second.title # => '[UPDATED] other post'
163
    #
164 165 166
    # By default the associated records are protected from being destroyed. If
    # you want to destroy any of the associated records through the attributes
    # hash, you have to enable it first using the <tt>:allow_destroy</tt>
167
    # option. This will allow you to also use the <tt>_destroy</tt> key to
168
    # destroy existing records:
169 170 171 172 173 174
    #
    #   class Member < ActiveRecord::Base
    #     has_many :posts
    #     accepts_nested_attributes_for :posts, :allow_destroy => true
    #   end
    #
175
    #   params = { :member => {
176
    #     :posts_attributes => [{ :id => '2', :_destroy => '1' }]
177 178
    #   }}
    #
179 180 181 182
    #   member.attributes = params['member']
    #   member.posts.detect { |p| p.id == 2 }.marked_for_destruction? # => true
    #   member.posts.length #=> 2
    #   member.save
P
Pratik Naik 已提交
183
    #   member.reload.posts.length # => 1
184 185 186 187 188 189 190 191
    #
    # === Saving
    #
    # All changes to models, including the destruction of those marked for
    # destruction, are saved and destroyed automatically and atomically when
    # the parent model is saved. This happens inside the transaction initiated
    # by the parents save method. See ActiveRecord::AutosaveAssociation.
    module ClassMethods
192 193
      REJECT_ALL_BLANK_PROC = proc { |attributes| attributes.all? { |_, value| value.blank? } }

194 195 196
      # Defines an attributes writer for the specified association(s). If you
      # are using <tt>attr_protected</tt> or <tt>attr_accessible</tt>, then you
      # will need to add the attribute writer to the allowed list.
197 198 199 200
      #
      # Supported options:
      # [:allow_destroy]
      #   If true, destroys any members from the attributes hash with a
201
      #   <tt>_destroy</tt> key and a value that evaluates to +true+
202 203
      #   (eg. 1, '1', true, or 'true'). This option is off by default.
      # [:reject_if]
204 205 206 207 208
      #   Allows you to specify a Proc or a Symbol pointing to a method
      #   that checks whether a record should be built for a certain attribute
      #   hash. The hash is passed to the supplied Proc or the method
      #   and it should return either +true+ or +false+. When no :reject_if
      #   is specified, a record will be built for all attribute hashes that
209
      #   do not have a <tt>_destroy</tt> value that evaluates to true.
210 211
      #   Passing <tt>:all_blank</tt> instead of a Proc will create a proc
      #   that will reject a record where all the attributes are blank.
212 213 214 215 216 217
      # [:limit]
      #   Allows you to specify the maximum number of the associated records that
      #   can be processes with the nested attributes. If the size of the
      #   nested attributes array exceeds the specified limit, NestedAttributes::TooManyRecords
      #   exception is raised. If omitted, any number associations can be processed.
      #   Note that the :limit option is only applicable to one-to-many associations.
218
      # [:update_only]
219 220 221
      #   Allows you to specify that an existing record may only be updated.
      #   A new record may only be created when there is no existing record.
      #   This option only works for one-to-one associations and is ignored for
222
      #   collection associations. This option is off by default.
223 224
      #
      # Examples:
225 226
      #   # creates avatar_attributes=
      #   accepts_nested_attributes_for :avatar, :reject_if => proc { |attributes| attributes['name'].blank? }
227 228
      #   # creates avatar_attributes=
      #   accepts_nested_attributes_for :avatar, :reject_if => :all_blank
229 230
      #   # creates avatar_attributes= and posts_attributes=
      #   accepts_nested_attributes_for :avatar, :posts, :allow_destroy => true
231
      def accepts_nested_attributes_for(*attr_names)
232
        options = { :allow_destroy => false, :update_only => false }
233
        options.update(attr_names.extract_options!)
234
        options.assert_valid_keys(:allow_destroy, :reject_if, :limit, :update_only)
235
        options[:reject_if] = REJECT_ALL_BLANK_PROC if options[:reject_if] == :all_blank
236 237 238 239

        attr_names.each do |association_name|
          if reflection = reflect_on_association(association_name)
            reflection.options[:autosave] = true
240
            add_autosave_association_callbacks(reflection)
241
            nested_attributes_options[association_name.to_sym] = options
242
            type = (reflection.collection? ? :collection : :one_to_one)
243 244

            # def pirate_attributes=(attributes)
245
            #   assign_nested_attributes_for_one_to_one_association(:pirate, attributes)
246
            # end
247
            class_eval <<-eoruby, __FILE__, __LINE__ + 1
248 249 250
              if method_defined?(:#{association_name}_attributes=)
                remove_method(:#{association_name}_attributes=)
              end
251
              def #{association_name}_attributes=(attributes)
252
                assign_nested_attributes_for_#{type}_association(:#{association_name}, attributes)
253
              end
254
            eoruby
255 256 257 258 259 260 261
          else
            raise ArgumentError, "No association found for name `#{association_name}'. Has it been defined yet?"
          end
        end
      end
    end

262 263 264
    # Returns ActiveRecord::AutosaveAssociation::marked_for_destruction? It's
    # used in conjunction with fields_for to build a form element for the
    # destruction of this association.
265 266
    #
    # See ActionView::Helpers::FormHelper::fields_for for more info.
267
    def _destroy
268 269 270 271 272
      marked_for_destruction?
    end

    private

273 274
    # Attribute hash keys that should not be assigned as normal attributes.
    # These hash keys are nested attributes implementation details.
275
    UNASSIGNABLE_KEYS = %w( id _destroy )
276 277 278

    # Assigns the given attributes to the association.
    #
279 280
    # If update_only is false and the given attributes include an <tt>:id</tt>
    # that matches the existing record’s id, then the existing record will be
281 282
    # modified. If update_only is true, a new record is only created when no
    # object exists. Otherwise a new record will be built.
283
    #
284 285 286
    # If the given attributes include a matching <tt>:id</tt> attribute, or
    # update_only is true, and a <tt>:_destroy</tt> key set to a truthy value,
    # then the existing record will be marked for destruction.
287
    def assign_nested_attributes_for_one_to_one_association(association_name, attributes)
288
      options = nested_attributes_options[association_name]
289
      attributes = attributes.with_indifferent_access
290
      check_existing_record = (options[:update_only] || !attributes['id'].blank?)
291

292 293 294
      if check_existing_record && (record = send(association_name)) &&
          (options[:update_only] || record.id.to_s == attributes['id'].to_s)
        assign_to_or_mark_for_destruction(record, attributes, options[:allow_destroy])
295 296 297 298

      elsif attributes['id']
        raise_nested_attributes_record_not_found(association_name, attributes['id'])

299 300 301 302
      elsif !reject_new_record?(association_name, attributes)
        method = "build_#{association_name}"
        if respond_to?(method)
          send(method, attributes.except(*UNASSIGNABLE_KEYS))
303
        else
304
          raise ArgumentError, "Cannot build association #{association_name}. Are you trying to build a polymorphic one-to-one association?"
305
        end
306 307 308 309 310
      end
    end

    # Assigns the given attributes to the collection association.
    #
311 312 313
    # Hashes with an <tt>:id</tt> value matching an existing associated record
    # will update that record. Hashes without an <tt>:id</tt> value will build
    # a new record for the association. Hashes with a matching <tt>:id</tt>
314
    # value and a <tt>:_destroy</tt> key set to a truthy value will mark the
315
    # matched record for destruction.
316 317 318 319
    #
    # For example:
    #
    #   assign_nested_attributes_for_collection_association(:people, {
320 321
    #     '1' => { :id => '1', :name => 'Peter' },
    #     '2' => { :name => 'John' },
322
    #     '3' => { :id => '2', :_destroy => true }
323 324
    #   })
    #
325
    # Will update the name of the Person with ID 1, build a new associated
P
Pratik Naik 已提交
326
    # person with the name `John', and mark the associated Person with ID 2
327 328 329 330 331 332 333
    # for destruction.
    #
    # Also accepts an Array of attribute hashes:
    #
    #   assign_nested_attributes_for_collection_association(:people, [
    #     { :id => '1', :name => 'Peter' },
    #     { :name => 'John' },
334
    #     { :id => '2', :_destroy => true }
335
    #   ])
336
    def assign_nested_attributes_for_collection_association(association_name, attributes_collection)
337
      options = nested_attributes_options[association_name]
338

339 340
      unless attributes_collection.is_a?(Hash) || attributes_collection.is_a?(Array)
        raise ArgumentError, "Hash or Array expected, got #{attributes_collection.class.name} (#{attributes_collection.inspect})"
341 342
      end

343 344 345 346
      if options[:limit] && attributes_collection.size > options[:limit]
        raise TooManyRecords, "Maximum #{options[:limit]} records are allowed. Got #{attributes_collection.size} records instead."
      end

347 348
      if attributes_collection.is_a? Hash
        attributes_collection = attributes_collection.sort_by { |index, _| index.to_i }.map { |_, attributes| attributes }
349 350
      end

351 352 353 354 355 356 357 358 359
      association = send(association_name)

      existing_records = if association.loaded?
        association.to_a
      else
        attribute_ids = attributes_collection.map {|a| a['id'] || a[:id] }.compact
        attribute_ids.present? ? association.all(:conditions => {:id => attribute_ids}) : []
      end

360
      attributes_collection.each do |attributes|
361
        attributes = attributes.with_indifferent_access
362

363 364
        if attributes['id'].blank?
          unless reject_new_record?(association_name, attributes)
365
            association.build(attributes.except(*UNASSIGNABLE_KEYS))
366
          end
367 368
        elsif existing_record = existing_records.detect { |record| record.id.to_s == attributes['id'].to_s }
          association.send(:add_record_to_target_with_callbacks, existing_record) unless association.loaded?
369
          assign_to_or_mark_for_destruction(existing_record, attributes, options[:allow_destroy])
370 371
        else
          raise_nested_attributes_record_not_found(association_name, attributes['id'])
372
        end
373 374 375
      end
    end

376
    # Updates a record with the +attributes+ or marks it for destruction if
377
    # +allow_destroy+ is +true+ and has_destroy_flag? returns +true+.
378
    def assign_to_or_mark_for_destruction(record, attributes, allow_destroy)
379
      if has_destroy_flag?(attributes) && allow_destroy
380 381
        record.mark_for_destruction
      else
382
        record.attributes = attributes.except(*UNASSIGNABLE_KEYS)
383 384
      end
    end
385

386 387
    # Determines if a hash contains a truthy _destroy key.
    def has_destroy_flag?(hash)
388
      ConnectionAdapters::Column.value_to_boolean(hash['_destroy'])
389 390 391
    end

    # Determines if a new record should be build by checking for
392
    # has_destroy_flag? or if a <tt>:reject_if</tt> proc exists for this
393 394
    # association and evaluates to +true+.
    def reject_new_record?(association_name, attributes)
395 396 397 398
      has_destroy_flag?(attributes) || call_reject_if(association_name, attributes)
    end

    def call_reject_if(association_name, attributes)
399
      case callback = nested_attributes_options[association_name][:reject_if]
400 401 402
      when Symbol
        method(callback).arity == 0 ? send(callback) : send(callback, attributes)
      when Proc
403
        callback.call(attributes)
404
      end
405
    end
406 407 408 409 410

    def raise_nested_attributes_record_not_found(association_name, record_id)
      reflection = self.class.reflect_on_association(association_name)
      raise RecordNotFound, "Couldn't find #{reflection.klass.name} with ID=#{record_id} for #{self.class.name} with ID=#{id}"
    end
411
  end
412
end