You are here

MigrateTemplateStorage.php in Migrate Manifest 8

Same filename and directory in other branches
  1. 8.2 src/MigrateTemplateStorage.php
  2. 3.x src/MigrateTemplateStorage.php

File

src/MigrateTemplateStorage.php
View source
<?php

namespace Drupal\migrate_manifest;

use Drupal\Component\Serialization\Yaml;
use Drupal\Core\Extension\ModuleHandlerInterface;

/**
 * Storage to access migration template configuration in enabled extensions.
 *
 * Direct copy of the template storage removed from core.
 * @see https://www.drupal.org/node/2676258
 */
class MigrateTemplateStorage implements MigrateTemplateStorageInterface {

  /**
   * Extension sub-directory containing default configuration for migrations.
   */
  const MIGRATION_TEMPLATE_DIRECTORY = 'migrations';

  /**
   * Template subdirectory.
   *
   * @var string
   */
  protected $directory;

  /**
   * @var \Drupal\Core\Extension\ModuleHandlerInterface
   */
  protected $moduleHandler;

  /**
   * {@inheritdoc}
   */
  public function __construct(ModuleHandlerInterface $module_handler, $directory = self::MIGRATION_TEMPLATE_DIRECTORY) {
    $this->moduleHandler = $module_handler;
    $this->directory = $directory;
  }

  /**
   * {@inheritdoc}
   */
  public function findTemplatesByTag($tag) {
    $templates = $this
      ->getAllTemplates();
    $matched_templates = [];
    foreach ($templates as $template_name => $template) {
      if (!empty($template['migration_tags'])) {
        if (in_array($tag, $template['migration_tags'])) {
          $matched_templates[$template_name] = $template;
        }
      }
    }
    return $matched_templates;
  }

  /**
   * {@inheritdoc}
   */
  public function getTemplateByName($name) {
    $templates = $this
      ->getAllTemplates();
    return isset($templates[$name]) ? $templates[$name] : NULL;
  }

  /**
   * {@inheritdoc}
   */
  public function getAllTemplates() {
    $templates = [];
    foreach ($this->moduleHandler
      ->getModuleDirectories() as $directory) {
      $full_directory = $directory . '/' . $this->directory;
      if (file_exists($full_directory)) {
        $files = scandir($full_directory);
        foreach ($files as $file) {
          if ($file[0] !== '.' && preg_match('/\\.yml$/', $file)) {
            $templates[basename($file, '.yml')] = Yaml::decode(file_get_contents("{$full_directory}/{$file}"));
          }
        }
      }
    }
    return $templates;
  }

}

Classes

Namesort descending Description
MigrateTemplateStorage Storage to access migration template configuration in enabled extensions.