You are here

MigrationExecuteForm.php in Migrate Tools 8.5

Same filename and directory in other branches
  1. 8.4 src/Form/MigrationExecuteForm.php

File

src/Form/MigrationExecuteForm.php
View source
<?php

namespace Drupal\migrate_tools\Form;

use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\migrate\MigrateMessage;
use Drupal\migrate\Plugin\MigrationInterface;
use Drupal\migrate\Plugin\MigrationPluginManagerInterface;
use Drupal\migrate_tools\MigrateBatchExecutable;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * This form is specifically for configuring process pipelines.
 */
class MigrationExecuteForm extends FormBase {

  /**
   * Plugin manager for migration plugins.
   *
   * @var \Drupal\migrate\Plugin\MigrationPluginManagerInterface
   */
  protected $migrationPluginManager;

  /**
   * Constructs a new MigrationExecuteForm object.
   *
   * @param \Drupal\migrate\Plugin\MigrationPluginManagerInterface $migration_plugin_manager
   *   The plugin manager for config entity-based migrations.
   * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
   *   The current route match.
   */
  public function __construct(MigrationPluginManagerInterface $migration_plugin_manager, RouteMatchInterface $route_match) {
    $this->migrationPluginManager = $migration_plugin_manager;
    $this->routeMatch = $route_match;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('plugin.manager.migration'), $container
      ->get('current_route_match'));
  }

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'migration_execute_form';
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form = $form ?: [];

    /** @var \Drupal\migrate_plus\Entity\MigrationInterface $migration */
    $migration = $this
      ->getRouteMatch()
      ->getParameter('migration');
    $form['#title'] = $this
      ->t('Execute migration %label', [
      '%label' => $migration
        ->label(),
    ]);
    $form = $this
      ->buildFormOperations($form, $form_state);
    $form = $this
      ->buildFormOptions($form, $form_state);
    $form['submit'] = [
      '#type' => 'submit',
      '#value' => $this
        ->t('Execute'),
    ];
    return $form;
  }

  /**
   * Build the operation form field.
   *
   * @param array $form
   *   The execution form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The form state.
   *
   * @return array
   *   The execution form updated with the operations.
   */
  protected function buildFormOperations(array $form, FormStateInterface $form_state) {

    // Build the migration execution form.
    $options = [
      'import' => $this
        ->t('Import'),
      'rollback' => $this
        ->t('Rollback'),
      'stop' => $this
        ->t('Stop'),
      'reset' => $this
        ->t('Reset'),
    ];
    $form['operation'] = [
      '#type' => 'radios',
      '#title' => $this
        ->t('Operation'),
      '#description' => $this
        ->t('Choose an operation to run.'),
      '#options' => $options,
      '#default_value' => 'import',
      '#required' => TRUE,
      'import' => [
        '#description' => $this
          ->t('Imports all previously unprocessed records from the source, plus any records marked for update, into destination Drupal objects.'),
      ],
      'rollback' => [
        '#description' => $this
          ->t('Deletes all Drupal objects created by the import.'),
      ],
      'stop' => [
        '#description' => $this
          ->t('Cleanly interrupts any import or rollback processes that may currently be running.'),
      ],
      'reset' => [
        '#description' => $this
          ->t('Sometimes a process may fail to stop cleanly, and be left stuck in an Importing or Rolling Back status. Choose Reset to clear the status and permit other operations to proceed.'),
      ],
    ];
    return $form;
  }

  /**
   * Build the execution options form field.
   *
   * @param array $form
   *   The execution form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The form state.
   *
   * @return array
   *   The execution form updated with the execution options.
   */
  protected function buildFormOptions(array $form, FormStateInterface $form_state) {
    $form['options'] = [
      '#type' => 'details',
      '#title' => $this
        ->t('Additional execution options'),
      '#open' => FALSE,
    ];
    $form['options']['update'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Update'),
      '#description' => $this
        ->t('Check this box to update all previously-imported content in addition to importing new content. Leave unchecked to only import new content'),
    ];
    $form['options']['force'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Ignore dependencies'),
      '#description' => $this
        ->t('Check this box to ignore dependencies when running imports - all tasks will run whether or not their dependent tasks have completed.'),
    ];
    $form['options']['limit'] = [
      '#type' => 'number',
      '#title' => $this
        ->t('Limit to:'),
      '#size' => 10,
      '#description' => $this
        ->t('Set a limit of how many items to process for each migration task.'),
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $operation = $form_state
      ->getValue('operation');
    if ($form_state
      ->getValue('limit')) {
      $limit = $form_state
        ->getValue('limit');
    }
    else {
      $limit = 0;
    }
    if ($form_state
      ->getValue('update')) {
      $update = $form_state
        ->getValue('update');
    }
    else {
      $update = 0;
    }
    if ($form_state
      ->getValue('force')) {
      $force = $form_state
        ->getValue('force');
    }
    else {
      $force = 0;
    }
    $migration = $this
      ->getRouteMatch()
      ->getParameter('migration');
    if ($migration) {

      /** @var \Drupal\migrate\Plugin\MigrationInterface $migration_plugin */
      $migration_plugin = $this->migrationPluginManager
        ->createInstance($migration
        ->id(), $migration
        ->toArray());
      $migrateMessage = new MigrateMessage();
      switch ($operation) {
        case 'import':
          $options = [
            'limit' => $limit,
            'update' => $update,
            'force' => $force,
          ];
          $executable = new MigrateBatchExecutable($migration_plugin, $migrateMessage, $options);
          $executable
            ->batchImport();
          break;
        case 'rollback':
          $options = [
            'limit' => $limit,
            'update' => $update,
            'force' => $force,
          ];
          $executable = new MigrateBatchExecutable($migration_plugin, $migrateMessage, $options);
          $executable
            ->rollback();
          break;
        case 'stop':
          $migration_plugin
            ->interruptMigration(MigrationInterface::RESULT_STOPPED);
          break;
        case 'reset':
          $migration_plugin
            ->setStatus(MigrationInterface::STATUS_IDLE);
          break;
      }
    }
  }

}

Classes

Namesort descending Description
MigrationExecuteForm This form is specifically for configuring process pipelines.