Sha256: 32e4a92c3ff1e3c59c076630b61983a456fb11a6a91c7e1cb78537011f36baf8

Contents?: true

Size: 1.42 KB

Versions: 20

Compression:

Stored size: 1.42 KB

Contents

# frozen_string_literal: true

module ActiveRecord
  module LegacyYamlAdapter # :nodoc:
    def self.convert(klass, coder)
      return coder unless coder.is_a?(Psych::Coder)

      case coder["active_record_yaml_version"]
      when 1, 2 then coder
      else
        ActiveSupport::Deprecation.warn(<<-MSG.squish)
          YAML loading from legacy format older than Rails 5.0 is deprecated
          and will be removed in Rails 6.2.
        MSG
        if coder["attributes"].is_a?(ActiveModel::AttributeSet)
          Rails420.convert(klass, coder)
        else
          Rails41.convert(klass, coder)
        end
      end
    end

    module Rails420 # :nodoc:
      def self.convert(klass, coder)
        attribute_set = coder["attributes"]

        klass.attribute_names.each do |attr_name|
          attribute = attribute_set[attr_name]
          if attribute.type.is_a?(Delegator)
            type_from_klass = klass.type_for_attribute(attr_name)
            attribute_set[attr_name] = attribute.with_type(type_from_klass)
          end
        end

        coder
      end
    end

    module Rails41 # :nodoc:
      def self.convert(klass, coder)
        attributes = klass.attributes_builder
          .build_from_database(coder["attributes"])
        new_record = coder["attributes"][klass.primary_key].blank?

        {
          "attributes" => attributes,
          "new_record" => new_record,
        }
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 3 rubygems

Version Path
activerecord-6.1.4.7 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.4.6 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.4.5 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.4.4 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.4.3 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.4.2 lib/active_record/legacy_yaml_adapter.rb
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/activerecord-6.1.4.1/lib/active_record/legacy_yaml_adapter.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/activerecord-6.1.4.1/lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.4.1 lib/active_record/legacy_yaml_adapter.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/activerecord-6.1.4/lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.4 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.3.2 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.3.1 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.3 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.2.1 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.2 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.1 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.0 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.0.rc2 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.1.0.rc1 lib/active_record/legacy_yaml_adapter.rb