Sha256: 150737f8b9fea0421bfbd98d29c09900d79bdccfbd00c5de07e96beac58dc83d

Contents?: true

Size: 1.77 KB

Versions: 15

Compression:

Stored size: 1.77 KB

Contents

require "active_support/core_ext/hash/keys"

# Added ActiveModel AttributeAssignment to support Rails 4.
# In Rails 5 this is built in to ActiveModel, but our behavior
# in ActiveRemote is different.
module ActiveRemote
  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 <tt>ActiveModel::ForbiddenAttributesError</tt>
    # 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)
      if !new_attributes.respond_to?(:stringify_keys)
        raise ArgumentError, "When assigning attributes, you must pass a hash as an argument."
      end
      return if new_attributes.nil? || new_attributes.empty?

      attributes = new_attributes.stringify_keys
      _assign_attributes(sanitize_for_mass_assignment(attributes))
    end

    private

    def _assign_attributes(attributes)
      attributes.each do |name, value|
        _assign_attribute(name, value)
      end
    end

    # ActiveRemote silently ignores unknown attributes, unlike ActiveModel
    # Consider changing ActiveRemote to behave the same
    def _assign_attribute(name, value)
      public_send("#{name}=", value) if respond_to?("#{name}=")
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
active_remote-3.3.3 lib/active_remote/attribute_assignment.rb
active_remote-3.3.2 lib/active_remote/attribute_assignment.rb
active_remote-3.3.1 lib/active_remote/attribute_assignment.rb
active_remote-3.3.0 lib/active_remote/attribute_assignment.rb
active_remote-3.2.2 lib/active_remote/attribute_assignment.rb
active_remote-3.2.1 lib/active_remote/attribute_assignment.rb
active_remote-3.2.0 lib/active_remote/attribute_assignment.rb
active_remote-3.2.0.pre lib/active_remote/attribute_assignment.rb
active_remote-3.1.3 lib/active_remote/attribute_assignment.rb
active_remote-3.1.2 lib/active_remote/attribute_assignment.rb
active_remote-3.1.2.pre lib/active_remote/attribute_assignment.rb
active_remote-3.1.1 lib/active_remote/attribute_assignment.rb
active_remote-3.1.0 lib/active_remote/attribute_assignment.rb
active_remote-3.0.0 lib/active_remote/attribute_assignment.rb
active_remote-3.0.0.pre1 lib/active_remote/attribute_assignment.rb