MigrateMessageController.php

Same filename in this branch
  1. 11.x core/modules/migrate_drupal_ui/src/Controller/MigrateMessageController.php
Same filename and directory in other branches
  1. 10 core/modules/migrate/src/Controller/MigrateMessageController.php
  2. 10 core/modules/migrate_drupal_ui/src/Controller/MigrateMessageController.php

Namespace

Drupal\migrate\Controller

File

core/modules/migrate/src/Controller/MigrateMessageController.php

View source
<?php

namespace Drupal\migrate\Controller;

use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\Database\Connection;
use Drupal\Core\Database\DatabaseConnectionRefusedException;
use Drupal\Core\Database\DatabaseNotFoundException;
use Drupal\Core\Form\FormBuilderInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Url;
use Drupal\migrate\Exception\RequirementsException;
use Drupal\migrate\Plugin\MigrationInterface;
use Drupal\migrate\Plugin\MigrationPluginManagerInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
// cspell:ignore sourceid

/**
 * Provides controller methods for the Message form.
 */
class MigrateMessageController extends ControllerBase {
    
    /**
     * Constructs a MigrateController.
     *
     * @param \Drupal\Core\Database\Connection $database
     *   A database connection.
     * @param \Drupal\Core\Form\FormBuilderInterface $formBuilder
     *   The form builder service.
     * @param \Drupal\migrate\Plugin\MigrationPluginManagerInterface $migrationPluginManager
     *   The migration plugin manager.
     */
    public function __construct(Connection $database, FormBuilderInterface $formBuilder, MigrationPluginManagerInterface $migrationPluginManager) {
        $this->formBuilder = $formBuilder;
    }
    
    /**
     * Displays an overview of migrate messages.
     *
     * @return array
     *   A render array as expected by
     *   \Drupal\Core\Render\RendererInterface::render().
     */
    public function overview() : array {
        // Check if there are migrate_message tables.
        $tables = $this->database
            ->schema()
            ->findTables('migrate_message_%');
        if (empty($tables)) {
            $build['no_tables'] = [
                '#type' => 'item',
                '#markup' => $this->t('There are no migration message tables.'),
            ];
            return $build;
        }
        // There are migrate_message tables so build the overview form.
        $migrations = $this->migrationPluginManager
            ->createInstances([]);
        $header = [
            $this->t('Migration'),
            $this->t('Machine Name'),
            $this->t('Messages'),
        ];
        // Display the number of messages for each migration.
        $rows = [];
        foreach ($migrations as $id => $migration) {
            $message_count = $migration->getIdMap()
                ->messageCount();
            // The message count is zero when there are no messages or when the
            // message table does not exist.
            if ($message_count == 0) {
                continue;
            }
            $row = [];
            $row['label'] = $migration->label();
            $row['machine_name'] = $id;
            $route_parameters = [
                'migration_id' => $migration->id(),
            ];
            $row['messages'] = [
                'data' => [
                    '#type' => 'link',
                    '#title' => $message_count,
                    '#url' => Url::fromRoute('migrate.messages.detail', $route_parameters),
                ],
            ];
            $rows[] = $row;
        }
        $build['migrations_table'] = [
            '#type' => 'table',
            '#header' => $header,
            '#rows' => $rows,
            '#empty' => $this->t('No migration messages available.'),
        ];
        $build['message_pager'] = [
            '#type' => 'pager',
        ];
        return $build;
    }
    
    /**
     * Displays a listing of migration messages for the given migration ID.
     *
     * @param string $migration_id
     *   A migration ID.
     * @param \Symfony\Component\HttpFoundation\Request $request
     *   The request.
     *
     * @return array
     *   A render array.
     */
    public function details(string $migration_id, Request $request) : array {
        
        /** @var \Drupal\migrate\Plugin\MigrationInterface $migration */
        $migration = $this->migrationPluginManager
            ->createInstance($migration_id);
        if (!$migration) {
            throw new NotFoundHttpException();
        }
        // Get the map and message table names.
        $map_table = $migration->getIdMap()
            ->mapTableName();
        $message_table = $migration->getIdMap()
            ->messageTableName();
        // If the map table does not exist then do not continue.
        if (!$this->database
            ->schema()
            ->tableExists($map_table)) {
            throw new NotFoundHttpException();
        }
        // If there is a map table but no message table display an error.
        if (!$this->database
            ->schema()
            ->tableExists($message_table)) {
            $this->messenger()
                ->addError($this->t('The message table is missing for this migration.'));
            return [];
        }
        // Create the column header names.
        $header = [];
        $source_plugin = $migration->getSourcePlugin();
        // Create the column header names from the source plugin fields() method.
        // Fallback to the source_id name when the source ID is missing from
        // fields() method.
        try {
            $fields = $source_plugin->fields();
        } catch (DatabaseConnectionRefusedException|DatabaseNotFoundException|RequirementsException|\PDOException $e) {
        }
        $source_id_field_names = array_keys($source_plugin->getIds());
        $count = 1;
        foreach ($source_id_field_names as $source_id_field_name) {
            $display_name = preg_replace([
                '/^[Tt]he /',
                '/\\.$/',
            ], '', $fields[$source_id_field_name] ?? $source_id_field_name);
            $header[] = [
                'data' => ucfirst($display_name),
                'field' => 'sourceid' . $count++,
                'class' => [
                    RESPONSIVE_PRIORITY_MEDIUM,
                ],
            ];
        }
        $header[] = [
            'data' => $this->t('Severity level'),
            'field' => 'level',
            'class' => [
                RESPONSIVE_PRIORITY_LOW,
            ],
        ];
        $header[] = [
            'data' => $this->t('Message'),
            'field' => 'message',
        ];
        $levels = [
            MigrationInterface::MESSAGE_ERROR => $this->t('Error'),
            MigrationInterface::MESSAGE_WARNING => $this->t('Warning'),
            MigrationInterface::MESSAGE_NOTICE => $this->t('Notice'),
            MigrationInterface::MESSAGE_INFORMATIONAL => $this->t('Info'),
        ];
        // Gets each message row and the source ID(s) for that message.
        $query = $this->database
            ->select($message_table, 'msg')
            ->extend('\\Drupal\\Core\\Database\\Query\\PagerSelectExtender')
            ->extend('\\Drupal\\Core\\Database\\Query\\TableSortExtender');
        // Not all messages have a matching row in the map table.
        $query->leftJoin($map_table, 'map', 'msg.source_ids_hash = map.source_ids_hash');
        $query->fields('msg');
        $query->fields('map');
        $filter = $this->buildFilterQuery($request);
        if (!empty($filter['where'])) {
            $query->where($filter['where'], $filter['args']);
        }
        $result = $query->limit(50)
            ->orderByHeader($header)
            ->execute();
        // Build the rows to display.
        $rows = [];
        $add_explanation = FALSE;
        $num_ids = count($source_id_field_names);
        foreach ($result as $message_row) {
            $new_row = [];
            for ($count = 1; $count <= $num_ids; $count++) {
                $map_key = 'sourceid' . $count;
                $new_row[$map_key] = $message_row->{$map_key} ?? NULL;
                if (empty($new_row[$map_key])) {
                    $new_row[$map_key] = $this->t('Not available');
                    $add_explanation = TRUE;
                }
            }
            $new_row['level'] = $levels[$message_row->level];
            $new_row['message'] = $message_row->message;
            $rows[] = $new_row;
        }
        // Build the complete form.
        $build['message_filter_form'] = $this->formBuilder
            ->getForm('Drupal\\migrate\\Form\\MessageForm');
        $build['message_table'] = [
            '#type' => 'table',
            '#header' => $header,
            '#rows' => $rows,
            '#empty' => $this->t('No messages for this migration.'),
            '#attributes' => [
                'id' => 'admin-migrate-msg',
                'class' => [
                    'admin-migrate-msg',
                ],
            ],
        ];
        $build['message_pager'] = [
            '#type' => 'pager',
        ];
        if ($add_explanation) {
            $build['explanation'] = [
                '#type' => 'item',
                '#markup' => $this->t("When there is an error processing a row, the migration system saves the error message but not the source ID(s) of the row. That is why some messages in this table have 'Not available' in the source ID column(s)."),
            ];
        }
        return $build;
    }
    
    /**
     * Builds a query for migrate message administration.
     *
     * @param \Symfony\Component\HttpFoundation\Request $request
     *   The request.
     *
     * @return array|null
     *   An associative array with keys 'where' and 'args' or NULL if there were
     *   no filters set.
     */
    protected function buildFilterQuery(Request $request) : ?array {
        $session_filters = $request->getSession()
            ->get('migration_messages_overview_filter', []);
        if (empty($session_filters)) {
            return NULL;
        }
        // Build query.
        $where = $args = [];
        foreach ($session_filters as $filter) {
            $filter_where = [];
            switch ($filter['type']) {
                case 'array':
                    foreach ($filter['value'] as $value) {
                        $filter_where[] = $filter['where'];
                        $args[] = $value;
                    }
                    break;
                case 'string':
                    $filter_where[] = $filter['where'];
                    $args[] = '%' . $filter['value'] . '%';
                    break;
                default:
                    $filter_where[] = $filter['where'];
                    $args[] = $filter['value'];
            }
            if (!empty($filter_where)) {
                $where[] = '(' . implode(' OR ', $filter_where) . ')';
            }
        }
        $where = !empty($where) ? implode(' AND ', $where) : '';
        return [
            'where' => $where,
            'args' => $args,
        ];
    }
    
    /**
     * Gets the title for the details page.
     *
     * @param string $migration_id
     *   A migration ID.
     *
     * @return \Drupal\Core\StringTranslation\TranslatableMarkup
     *   The translated title.
     */
    public function title(string $migration_id) : TranslatableMarkup {
        return $this->t('Messages of %migration', [
            '%migration' => $migration_id,
        ]);
    }

}

Classes

Title Deprecated Summary
MigrateMessageController Provides controller methods for the Message form.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.