Sha256: 67f273ede4e5a59fa0d541fba96412c0eb8497cc07d670bc82f124b047536651

Contents?: true

Size: 1.61 KB

Versions: 17

Compression:

Stored size: 1.61 KB

Contents

# frozen_string_literal: true

require "active_support/core_ext/hash/keys"

module ActiveModel
  module AttributeAssignment
    include ActiveModel::ForbiddenAttributesProtection

    # Allows you to set all the attributes by passing in a hash of attributes with
    # keys matching the attribute names.
    #
    # If the passed hash responds to <tt>permitted?</tt> method and the return value
    # of this method is +false+ an ActiveModel::ForbiddenAttributesError
    # exception is raised.
    #
    #   class Cat
    #     include ActiveModel::AttributeAssignment
    #     attr_accessor :name, :status
    #   end
    #
    #   cat = Cat.new
    #   cat.assign_attributes(name: "Gorby", status: "yawning")
    #   cat.name # => 'Gorby'
    #   cat.status # => 'yawning'
    #   cat.assign_attributes(status: "sleeping")
    #   cat.name # => 'Gorby'
    #   cat.status # => 'sleeping'
    def assign_attributes(new_attributes)
      unless new_attributes.respond_to?(:each_pair)
        raise ArgumentError, "When assigning attributes, you must pass a hash as an argument, #{new_attributes.class} passed."
      end
      return if new_attributes.empty?

      _assign_attributes(sanitize_for_mass_assignment(new_attributes))
    end

    alias attributes= assign_attributes

    private
      def _assign_attributes(attributes)
        attributes.each do |k, v|
          _assign_attribute(k, v)
        end
      end

      def _assign_attribute(k, v)
        setter = :"#{k}="
        if respond_to?(setter)
          public_send(setter, v)
        else
          raise UnknownAttributeError.new(self, k.to_s)
        end
      end
  end
end

Version data entries

17 entries across 17 versions & 4 rubygems

Version Path
activemodel-7.1.5 lib/active_model/attribute_assignment.rb
activemodel-7.1.4.2 lib/active_model/attribute_assignment.rb
activemodel-7.1.4.1 lib/active_model/attribute_assignment.rb
activemodel-7.1.4 lib/active_model/attribute_assignment.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activemodel-7.1.3.4/lib/active_model/attribute_assignment.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/activemodel-7.1.3.4/lib/active_model/attribute_assignment.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/activemodel-7.1.3.4/lib/active_model/attribute_assignment.rb
activemodel-7.1.3.4 lib/active_model/attribute_assignment.rb
activemodel-7.1.3.2 lib/active_model/attribute_assignment.rb
activemodel-7.1.3.1 lib/active_model/attribute_assignment.rb
activemodel-7.1.3 lib/active_model/attribute_assignment.rb
activemodel-7.1.2 lib/active_model/attribute_assignment.rb
activemodel-7.1.1 lib/active_model/attribute_assignment.rb
activemodel-7.1.0 lib/active_model/attribute_assignment.rb
activemodel-7.1.0.rc2 lib/active_model/attribute_assignment.rb
activemodel-7.1.0.rc1 lib/active_model/attribute_assignment.rb
activemodel-7.1.0.beta1 lib/active_model/attribute_assignment.rb