Sha256: 2b5c8d6eed654bdb0d1608fcb9c24eac52b86a72a70e7d7de9803dcddc2025d4

Contents?: true

Size: 1.95 KB

Versions: 14

Compression:

Stored size: 1.95 KB

Contents

# frozen_string_literal: true

module ActiveRecord
  module AttributeMethods
    module Write
      extend ActiveSupport::Concern

      included do
        attribute_method_suffix "="
      end

      module ClassMethods # :nodoc:
        private

          def define_method_attribute=(name)
            ActiveModel::AttributeMethods::AttrNames.define_attribute_accessor_method(
              generated_attribute_methods, name, writer: true,
            ) do |temp_method_name, attr_name_expr|
              generated_attribute_methods.module_eval <<-RUBY, __FILE__, __LINE__ + 1
                def #{temp_method_name}(value)
                  name = #{attr_name_expr}
                  _write_attribute(name, value)
                end
              RUBY
            end
          end
      end

      # Updates the attribute identified by <tt>attr_name</tt> with the
      # specified +value+. Empty strings for Integer and Float columns are
      # turned into +nil+.
      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
        _write_attribute(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:
        sync_with_transaction_state if @transaction_state&.finalized?
        @attributes.write_from_user(attr_name.to_s, value)
        value
      end

      private
        def write_attribute_without_type_cast(attr_name, value)
          sync_with_transaction_state if @transaction_state&.finalized?
          @attributes.write_cast_value(attr_name.to_s, value)
          value
        end

        # Dispatch target for <tt>*=</tt> attribute methods.
        def attribute=(attribute_name, value)
          _write_attribute(attribute_name, value)
        end
    end
  end
end

Version data entries

14 entries across 14 versions & 4 rubygems

Version Path
activerecord-6.0.2.2 lib/active_record/attribute_methods/write.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attribute_methods/write.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/attribute_methods/write.rb
activerecord-6.0.2.1 lib/active_record/attribute_methods/write.rb
activerecord-6.0.2 lib/active_record/attribute_methods/write.rb
activerecord-6.0.2.rc2 lib/active_record/attribute_methods/write.rb
activerecord-6.0.2.rc1 lib/active_record/attribute_methods/write.rb
activerecord-6.0.1 lib/active_record/attribute_methods/write.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activerecord-6.0.0/lib/active_record/attribute_methods/write.rb
activerecord-6.0.1.rc1 lib/active_record/attribute_methods/write.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activerecord-6.0.0/lib/active_record/attribute_methods/write.rb
activerecord-6.0.0 lib/active_record/attribute_methods/write.rb
activerecord-6.0.0.rc2 lib/active_record/attribute_methods/write.rb
activerecord-6.0.0.rc1 lib/active_record/attribute_methods/write.rb