Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console / src / Command / Debug / MigrateCommand.php
diff --git a/vendor/drupal/console/src/Command/Debug/MigrateCommand.php b/vendor/drupal/console/src/Command/Debug/MigrateCommand.php
new file mode 100644 (file)
index 0000000..01f2604
--- /dev/null
@@ -0,0 +1,85 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Debug\MigrateCommand.
+ */
+
+namespace Drupal\Console\Command\Debug;
+
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+use Drupal\Console\Command\Shared\MigrationTrait;
+use Drupal\Console\Annotations\DrupalCommand;
+use Drupal\Console\Core\Command\Command;
+use Drupal\migrate\Plugin\MigrationPluginManagerInterface;
+
+/**
+ * @DrupalCommand(
+ *     extension = "migrate",
+ *     extensionType = "module"
+ * )
+ */
+class MigrateCommand extends Command
+{
+    use MigrationTrait;
+
+    /**
+     * @var MigrationPluginManagerInterface $pluginManagerMigration
+     */
+    protected $pluginManagerMigration;
+
+    /**
+     * MigrateCommand constructor.
+     *
+     * @param MigrationPluginManagerInterface $pluginManagerMigration
+     */
+    public function __construct(
+        MigrationPluginManagerInterface $pluginManagerMigration
+    ) {
+        $this->pluginManagerMigration = $pluginManagerMigration;
+        parent::__construct();
+    }
+
+    protected function configure()
+    {
+        $this
+            ->setName('debug:migrate')
+            ->setDescription($this->trans('commands.debug.migrate.description'))
+            ->addArgument(
+                'tag',
+                InputArgument::OPTIONAL,
+                $this->trans('commands.debug.migrate.arguments.tag')
+            )
+            ->setAliases(['mid']);
+    }
+
+    protected function execute(InputInterface $input, OutputInterface $output)
+    {
+        $drupal_version = 'Drupal ' . $input->getArgument('tag');
+
+        $migrations = $this->getMigrations($drupal_version);
+
+
+        $tableHeader = [
+          $this->trans('commands.debug.migrate.messages.id'),
+          $this->trans('commands.debug.migrate.messages.description'),
+          $this->trans('commands.debug.migrate.messages.tags'),
+        ];
+
+        $tableRows = [];
+        if (empty($migrations)) {
+            $this->getIo()->error(
+                sprintf(
+                    $this->trans('commands.debug.migrate.messages.no-migrations'),
+                    count($migrations)
+                )
+            );
+        }
+        foreach ($migrations as $migration_id => $migration) {
+            $tableRows[] = [$migration_id, $migration['description'], $migration['tags']];
+        }
+        $this->getIo()->table($tableHeader, $tableRows, 'compact');
+    }
+}