You are here

SimpleXml.php in Migrate Plus 8.3

File

src/Plugin/migrate_plus/data_parser/SimpleXml.php
View source
<?php

namespace Drupal\migrate_plus\Plugin\migrate_plus\data_parser;

use Drupal\migrate\MigrateException;
use Drupal\migrate_plus\DataParserPluginBase;

/**
 * Obtain XML data for migration using the SimpleXML API.
 *
 * @DataParser(
 *   id = "simple_xml",
 *   title = @Translation("Simple XML")
 * )
 */
class SimpleXml extends DataParserPluginBase {
  use XmlTrait;

  /**
   * Array of matches from item_selector.
   *
   * @var array
   */
  protected $matches = [];

  /**
   * {@inheritdoc}
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition) {
    parent::__construct($configuration, $plugin_id, $plugin_definition);

    // Suppress errors during parsing, so we can pick them up after.
    libxml_use_internal_errors(TRUE);
  }

  /**
   * {@inheritdoc}
   */
  protected function openSourceUrl($url) {

    // Clear XML error buffer. Other Drupal code that executed during the
    // migration may have polluted the error buffer and could create false
    // positives in our error check below. We are only concerned with errors
    // that occur from attempting to load the XML string into an object here.
    libxml_clear_errors();
    $xml_data = $this
      ->getDataFetcherPlugin()
      ->getResponseContent($url);
    $xml = simplexml_load_string($xml_data);
    $this
      ->registerNamespaces($xml);
    $xpath = $this->configuration['item_selector'];
    $this->matches = $xml
      ->xpath($xpath);
    foreach (libxml_get_errors() as $error) {
      $error_string = self::parseLibXmlError($error);
      throw new MigrateException($error_string);
    }
    return TRUE;
  }

  /**
   * {@inheritdoc}
   */
  protected function fetchNextRow() {
    $target_element = array_shift($this->matches);

    // If we've found the desired element, populate the currentItem and
    // currentId with its data.
    if ($target_element !== FALSE && !is_null($target_element)) {
      foreach ($this
        ->fieldSelectors() as $field_name => $xpath) {
        foreach ($target_element
          ->xpath($xpath) as $value) {
          if ($value
            ->children() && !trim((string) $value)) {
            $this->currentItem[$field_name] = $value;
          }
          else {
            $this->currentItem[$field_name][] = (string) $value;
          }
        }
      }

      // Reduce single-value results to scalars.
      foreach ($this->currentItem as $field_name => $values) {
        if (count($values) == 1) {
          $this->currentItem[$field_name] = reset($values);
        }
      }
    }
  }

}

Classes

Namesort descending Description
SimpleXml Obtain XML data for migration using the SimpleXML API.