Sha256: 0def47ca1706e4816132333d1746d2cda83bb20068284dd6c47c5dc850c6ad77

Contents?: true

Size: 1.65 KB

Versions: 27

Compression:

Stored size: 1.65 KB

Contents

# frozen_string_literal: true

module ActiveRecord
  module AttributeMethods
    # = Active Record Attribute Methods \Write
    module Write
      extend ActiveSupport::Concern

      included do
        attribute_method_suffix "=", parameters: "value"
      end

      module ClassMethods # :nodoc:
        private
          def define_method_attribute=(canonical_name, owner:, as: canonical_name)
            ActiveModel::AttributeMethods::AttrNames.define_attribute_accessor_method(
              owner, canonical_name, writer: true,
            ) do |temp_method_name, attr_name_expr|
              owner.define_cached_method(temp_method_name, as: "#{as}=", namespace: :active_record) do |batch|
                batch <<
                  "def #{temp_method_name}(value)" <<
                  "  _write_attribute(#{attr_name_expr}, value)" <<
                  "end"
              end
            end
          end
      end

      # Updates the attribute identified by +attr_name+ using the specified
      # +value+. The attribute value will be type cast upon being read.
      def write_attribute(attr_name, value)
        name = attr_name.to_s
        name = self.class.attribute_aliases[name] || name

        name = @primary_key if name == "id" && @primary_key
        @attributes.write_from_user(name, value)
      end

      # This method exists to avoid the expensive primary_key check internally, without
      # breaking compatibility with the write_attribute API
      def _write_attribute(attr_name, value) # :nodoc:
        @attributes.write_from_user(attr_name, value)
      end

      alias :attribute= :_write_attribute
      private :attribute=
    end
  end
end

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
activerecord-8.0.2 lib/active_record/attribute_methods/write.rb
activerecord-8.0.1 lib/active_record/attribute_methods/write.rb
activerecord-8.0.0.1 lib/active_record/attribute_methods/write.rb
activerecord-7.2.2.1 lib/active_record/attribute_methods/write.rb
activerecord-7.1.5.1 lib/active_record/attribute_methods/write.rb
activerecord-8.0.0 lib/active_record/attribute_methods/write.rb
activerecord-7.2.2 lib/active_record/attribute_methods/write.rb
activerecord-7.1.5 lib/active_record/attribute_methods/write.rb
activerecord-8.0.0.rc2 lib/active_record/attribute_methods/write.rb
activerecord-7.2.1.2 lib/active_record/attribute_methods/write.rb
activerecord-7.1.4.2 lib/active_record/attribute_methods/write.rb
activerecord-8.0.0.rc1 lib/active_record/attribute_methods/write.rb
activerecord-7.2.1.1 lib/active_record/attribute_methods/write.rb
activerecord-7.1.4.1 lib/active_record/attribute_methods/write.rb
activerecord-8.0.0.beta1 lib/active_record/attribute_methods/write.rb
omg-activerecord-8.0.0.alpha9 lib/active_record/attribute_methods/write.rb
omg-activerecord-8.0.0.alpha8 lib/active_record/attribute_methods/write.rb
omg-activerecord-8.0.0.alpha7 lib/active_record/attribute_methods/write.rb
omg-activerecord-8.0.0.alpha4 lib/active_record/attribute_methods/write.rb
omg-activerecord-8.0.0.alpha3 lib/active_record/attribute_methods/write.rb