View source
<?php
namespace Drupal\migrate_tools\Controller;
use Drupal\Component\Utility\Html;
use Drupal\Component\Utility\Xss;
use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
use Drupal\Core\Routing\CurrentRouteMatch;
use Drupal\Core\Url;
use Drupal\migrate\MigrateMessage;
use Drupal\migrate\Plugin\MigrationPluginManagerInterface;
use Drupal\migrate_plus\Entity\MigrationGroupInterface;
use Drupal\migrate_plus\Entity\MigrationInterface;
use Drupal\migrate_tools\MigrateBatchExecutable;
use Symfony\Component\DependencyInjection\ContainerInterface;
class MigrationController extends ControllerBase implements ContainerInjectionInterface {
protected $migrationPluginManager;
protected $currentRouteMatch;
public function __construct(MigrationPluginManagerInterface $migration_plugin_manager, CurrentRouteMatch $currentRouteMatch) {
$this->migrationPluginManager = $migration_plugin_manager;
$this->currentRouteMatch = $currentRouteMatch;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('plugin.manager.migration'), $container
->get('current_route_match'));
}
public function overview(MigrationGroupInterface $migration_group, MigrationInterface $migration) {
$build['overview'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Overview'),
];
$build['overview']['group'] = [
'#title' => $this
->t('Group:'),
'#markup' => Xss::filterAdmin($migration_group
->label()),
'#type' => 'item',
];
$build['overview']['description'] = [
'#title' => $this
->t('Description:'),
'#markup' => Xss::filterAdmin($migration
->label()),
'#type' => 'item',
];
$migration_plugin = $this->migrationPluginManager
->createInstance($migration
->id(), $migration
->toArray());
$migration_dependencies = $migration_plugin
->getMigrationDependencies();
if (!empty($migration_dependencies['required'])) {
$build['overview']['dependencies'] = [
'#title' => $this
->t('Migration Dependencies'),
'#markup' => Xss::filterAdmin(implode(', ', $migration_dependencies['required'])),
'#type' => 'item',
];
}
if (!empty($migration_dependencies['optional'])) {
$build['overview']['soft_dependencies'] = [
'#title' => $this
->t('Soft Migration Dependencies'),
'#markup' => Xss::filterAdmin(implode(', ', $migration_dependencies['optional'])),
'#type' => 'item',
];
}
return $build;
}
public function source(MigrationGroupInterface $migration_group, MigrationInterface $migration) {
$build['source'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Source'),
'#group' => 'detail',
'#description' => $this
->t('<p>These are the fields available from the source of this migration task. The machine names listed here may be used as sources in the process pipeline.</p>'),
'#attributes' => [
'id' => 'migration-detail-source',
],
];
$migration_plugin = $this->migrationPluginManager
->createInstance($migration
->id(), $migration
->toArray());
$source = $migration_plugin
->getSourcePlugin();
$build['source']['query'] = [
'#type' => 'item',
'#title' => $this
->t('Query'),
'#markup' => '<pre>' . Xss::filterAdmin($source) . '</pre>',
];
$header = [
$this
->t('Machine name'),
$this
->t('Description'),
];
$rows = [];
foreach ($source
->fields($migration_plugin) as $machine_name => $description) {
$rows[] = [
[
'data' => Html::escape($machine_name),
],
[
'data' => Xss::filterAdmin($description),
],
];
}
$build['source']['fields'] = [
'#theme' => 'table',
'#header' => $header,
'#rows' => $rows,
'#empty' => $this
->t('No fields'),
];
return $build;
}
public function run(MigrationGroupInterface $migration_group, MigrationInterface $migration) {
$migrateMessage = new MigrateMessage();
$options = [];
$migration_plugin = $this->migrationPluginManager
->createInstance($migration
->id(), $migration
->toArray());
$executable = new MigrateBatchExecutable($migration_plugin, $migrateMessage, $options);
$executable
->batchImport();
$route_parameters = [
'migration_group' => $migration_group,
'migration' => $migration
->id(),
];
return batch_process(Url::fromRoute('entity.migration.process', $route_parameters));
}
public function process(MigrationGroupInterface $migration_group, MigrationInterface $migration) {
$migration_plugin = $this->migrationPluginManager
->createInstance($migration
->id(), $migration
->toArray());
$build['process'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Process'),
];
$header = [
$this
->t('Destination'),
$this
->t('Source'),
$this
->t('Process plugin'),
$this
->t('Default'),
];
$rows = [];
foreach ($migration_plugin
->getProcess() as $destination_id => $process_line) {
$row = [];
$row[] = [
'data' => Html::escape($destination_id),
];
if (isset($process_line[0]['source'])) {
if (is_array($process_line[0]['source'])) {
$process_line[0]['source'] = implode(', ', $process_line[0]['source']);
}
$row[] = [
'data' => Xss::filterAdmin($process_line[0]['source']),
];
}
else {
$row[] = '';
}
if (isset($process_line[0]['plugin'])) {
$process_line_plugins = [];
foreach ($process_line as $process_line_row) {
$process_line_plugins[] = Xss::filterAdmin($process_line_row['plugin']);
}
$row[] = [
'data' => implode(', ', $process_line_plugins),
];
}
else {
$row[] = '';
}
if (isset($process_line[0]['default_value'])) {
$row[] = [
'data' => Xss::filterAdmin($process_line[0]['default_value']),
];
}
else {
$row[] = '';
}
$rows[] = $row;
}
$build['process']['fields'] = [
'#theme' => 'table',
'#header' => $header,
'#rows' => $rows,
'#empty' => $this
->t('No process defined.'),
];
$build['process']['run'] = [
'#type' => 'link',
'#title' => $this
->t('Run'),
'#url' => Url::fromRoute('entity.migration.process.run', [
'migration_group' => $migration_group
->id(),
'migration' => $migration
->id(),
]),
];
return $build;
}
public function destination(MigrationGroupInterface $migration_group, MigrationInterface $migration) {
$migration_plugin = $this->migrationPluginManager
->createInstance($migration
->id(), $migration
->toArray());
$build['destination'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Destination'),
'#group' => 'detail',
'#description' => $this
->t('<p>These are the fields available in the destination plugin of this migration task. The machine names are those available to be used as the keys in the process pipeline.</p>'),
'#attributes' => [
'id' => 'migration-detail-destination',
],
];
$destination = $migration_plugin
->getDestinationPlugin();
$build['destination']['type'] = [
'#type' => 'item',
'#title' => $this
->t('Type'),
'#markup' => Xss::filterAdmin($destination
->getPluginId()),
];
$header = [
$this
->t('Machine name'),
$this
->t('Description'),
];
$rows = [];
$destination_fields = $destination
->fields() ?: [];
foreach ($destination_fields as $machine_name => $description) {
$rows[] = [
[
'data' => Html::escape($machine_name),
],
[
'data' => Xss::filterAdmin($description),
],
];
}
$build['destination']['fields'] = [
'#theme' => 'table',
'#header' => $header,
'#rows' => $rows,
'#empty' => $this
->t('No fields'),
];
return $build;
}
}