Sha256: d6e09692bd6ee7c4ac70a758b1530215b5bdb76ef46684a81e514b8970c3d57a

Contents?: true

Size: 1.2 KB

Versions: 72

Compression:

Stored size: 1.2 KB

Contents

# frozen_string_literal: true

module ActiveRecord
  module LegacyYamlAdapter
    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
        if coder["attributes"].is_a?(ActiveModel::AttributeSet)
          Rails420.convert(klass, coder)
        else
          Rails41.convert(klass, coder)
        end
      end
    end

    module Rails420
      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
      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

72 entries across 72 versions & 6 rubygems

Version Path
activerecord-6.0.6.1 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.0.6 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.0.5.1 lib/active_record/legacy_yaml_adapter.rb
activerecord-5.2.8.1 lib/active_record/legacy_yaml_adapter.rb
activerecord-5.2.8 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.0.5 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.0.4.8 lib/active_record/legacy_yaml_adapter.rb
activerecord-5.2.7.1 lib/active_record/legacy_yaml_adapter.rb
activerecord-5.2.7 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.0.4.7 lib/active_record/legacy_yaml_adapter.rb
activerecord-5.2.6.3 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.0.4.6 lib/active_record/legacy_yaml_adapter.rb
activerecord-5.2.6.2 lib/active_record/legacy_yaml_adapter.rb
activerecord-5.2.6.1 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.0.4.5 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.0.4.4 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.0.4.3 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.0.4.2 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.0.4.1 lib/active_record/legacy_yaml_adapter.rb
activerecord-6.0.4 lib/active_record/legacy_yaml_adapter.rb