Move the d8_config source plugin to the migrate module

Created on 14 February 2025, about 2 months ago

Problem/Motivation

The current plan is to remove the migrate_drupal module in Drupal 12. But there are parts of that module that we want to keep. In particular (this issue) we want to keep the d8_config source plugin (Drupal\migrate_drupal\Plugin\migrate\source\d8\Config).

Proposed resolution

  1. Copy Drupal\migrate_drupal\Plugin\migrate\source\d8\Config to the migrate module from the migrate_drupal module. Update for current coding standards.
  2. Deprecate the class in migrate_drupal and remove the plugin annotation/attribute.

Remaining tasks

User interface changes

None

Introduced terminology

None

API changes

One or more class will be moved to a different namespace.

Data model changes

None

Release notes snippet

TBD

πŸ“Œ Task
Status

Active

Version

11.0 πŸ”₯

Component

migration system

Created by

πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @benjifisher
  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    There are some differences between this issue and πŸ“Œ Move content_entity source plugin to migrate module Active .

    The plugin ID d8_config is outdated. As part of this issue, do we want the new plugin ID to be config or drupal_config? If so, do we still want to remove the plugin annotation (or attribute after πŸ“Œ Convert MigrateSource plugin discovery to attributes Active ) from the existing class?

    This class extends DrupalSqlBase, and we probably do not want to keep that class. Should we migrate some parts of that class (properties, methods) into the new plugin class? Should we create traits?

    My initial thought is that we want to leave as much as possible behind. That means that the new plugin is more of a re-implementation than a straight move, which also argues in favor of choosing a new plugin ID. For example, DrupalSqlBase implements Drupal\Component\Plugin\DependentPluginInterface and uses Drupal\Core\Entity\DependencyTrait:

      public function calculateDependencies() {
        // Generic handling for Drupal source plugin constants.
        if (isset($this->configuration['constants']['entity_type'])) {
          $this->addDependency('module', $this->entityTypeManager->getDefinition($this->configuration['constants']['entity_type'])->getProvider());
        }
        if (isset($this->configuration['constants']['module'])) {
          $this->addDependency('module', $this->configuration['constants']['module']);
        }
        return $this->dependencies;
      }
    

    I think the new plugin does not need that.

  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    More on the same point: the constructor for DrupalSqlBase sets the $entityTypeManager property, which is not used in the Config class.

    The getSystemData() and variableGet() methods will not work with a D8+ source because they need the system and variable database tables. Most of the other methods in the class depend on getSystemData().

    Also, DrupalSqlBase extends SqlBase in the migrate module. The base class defines getDatabase(), which is the basis for connecting to a secondary database. So the new class can extend SqlBase directly and still generate config items from the current database or another one.

  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    I suggested a couple of different plugin IDs, but I think I prefer config_entity as a counterpart to the existing content_entity source plugin.

  • πŸ‡ΊπŸ‡ΈUnited States nicxvan

    I vote for config_entity i think the parallel makes sense.

  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    I am going to start work on this issue.

  • Merge request !11271Resolve #3506605 "Config entity source" β†’ (Open) created by benjifisher
  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    I think that https://git.drupalcode.org/project/drupal/-/merge_requests/11271 does most of the work: it creates the new source plugin and deprecates the old one.

    I created a draft change record and used it in the deprecation notice.

    I still have to update the tests: mark the old ones as @group legacy and copy them to the migrate module.

  • Pipeline finished with Failed
    about 1 month ago
    Total: 131s
    #432252
  • Pipeline finished with Failed
    about 1 month ago
    Total: 112s
    #433136
  • Pipeline finished with Failed
    about 1 month ago
    Total: 563s
    #433163
  • Pipeline finished with Success
    about 1 month ago
    Total: 433s
    #433830
  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    I think the MR is ready for review.

    I am updating the issue summary with some of the points we discussed in the comments.

    I had to update one existing test, which checks all the source plugins provided by the migrate module. I think the updates are straightforward, but someone should review them.

    The hardest part is that phpcs checks for the first @see comment after a @deprecated comment and complains if it references a class instead of a URL (for the change record). At first, when I added the @deprecated comment, I did not know this and I did not add an @see comment for the change record.

Production build 0.71.5 2024