class Spreadsheet in Migrate Spreadsheet 8
Same name and namespace in other branches
- 2.0.x src/Plugin/migrate/source/Spreadsheet.php \Drupal\migrate_spreadsheet\Plugin\migrate\source\Spreadsheet
Provides a source plugin that migrate from spreadsheet files.
This source plugin uses the PhpOffice/PhpSpreadsheet library to read spreadsheet files.
Plugin annotation
@MigrateSource(
id = "spreadsheet"
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\migrate\Plugin\migrate\source\SourcePluginBase implements RollbackAwareInterface, MigrateSourceInterface
- class \Drupal\migrate_spreadsheet\Plugin\migrate\source\Spreadsheet implements ConfigurablePluginInterface, ContainerFactoryPluginInterface
- class \Drupal\migrate\Plugin\migrate\source\SourcePluginBase implements RollbackAwareInterface, MigrateSourceInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of Spreadsheet
1 string reference to 'Spreadsheet'
- migrate_spreadsheet.schema.yml in config/
schema/ migrate_spreadsheet.schema.yml - config/schema/migrate_spreadsheet.schema.yml
File
- src/
Plugin/ migrate/ source/ Spreadsheet.php, line 27
Namespace
Drupal\migrate_spreadsheet\Plugin\migrate\sourceView source
class Spreadsheet extends SourcePluginBase implements ConfigurablePluginInterface, ContainerFactoryPluginInterface {
/**
* The file system service.
*
* @var \Drupal\Core\File\FileSystemInterface
*/
protected $fileSystem;
/**
* The migrate spreadsheet iterator.
*
* @var \Drupal\migrate_spreadsheet\SpreadsheetIteratorInterface
*/
protected $spreadsheetIterator;
/**
* Flag to determine if the iterator has been initialized.
*
* @var bool
*/
protected $iteratorIsInitialized = FALSE;
/**
* Constructs a spreadsheet migration source plugin object.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\migrate\Plugin\MigrationInterface $migration
* The current migration.
* @param \Drupal\Core\File\FileSystemInterface $file_system
* The file system service.
* @param \Drupal\migrate_spreadsheet\SpreadsheetIteratorInterface $spreadsheet_iterator
* The migrate spreadsheet iterator.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration, FileSystemInterface $file_system, SpreadsheetIteratorInterface $spreadsheet_iterator) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $migration);
$this
->setConfiguration($configuration);
$this->fileSystem = $file_system;
$this->spreadsheetIterator = $spreadsheet_iterator;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration = NULL) {
return new static($configuration, $plugin_id, $plugin_definition, $migration, $container
->get('file_system'), new SpreadsheetIterator());
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [
'file' => NULL,
'worksheet' => NULL,
'origin' => 'A2',
'header_row' => NULL,
'columns' => [],
'keys' => [],
'row_index_column' => NULL,
];
}
/**
* {@inheritdoc}
*/
public function setConfiguration(array $configuration) {
$this->configuration = NestedArray::mergeDeep($this
->defaultConfiguration(), $configuration);
}
/**
* {@inheritdoc}
*/
public function getConfiguration() {
return $this->configuration;
}
/**
* {@inheritdoc}
*/
public function __toString() {
return $this->configuration['file'] . ':' . $this->configuration['worksheet'];
}
/**
* {@inheritdoc}
*/
public function getIds() {
$config = $this
->getConfiguration();
if (empty($config['keys'])) {
if (empty($config['row_index_column'])) {
throw new \RuntimeException("Row index should act as key but no name has been provided. Set 'row_index_column' in source config to provide a name for this column.");
}
// If no keys are defined, we'll use the 'zero based' index of the
// spreadsheet current row.
return [
$config['row_index_column'] => [
'type' => 'integer',
],
];
}
return $config['keys'];
}
/**
* {@inheritdoc}
*/
public function fields() {
// No column headers provided in config, read worksheet for header row.
if (!($columns = $this
->getConfiguration()['columns'])) {
$this
->initializeIterator();
$columns = array_keys($this->spreadsheetIterator
->getHeaders());
}
// Add $row_index_column if it's been configured.
if ($row_index_column = $this
->getConfiguration()['row_index_column']) {
$columns[] = $row_index_column;
}
return array_combine($columns, $columns);
}
/**
* {@inheritdoc}
*/
public function initializeIterator() {
if (!$this->iteratorIsInitialized) {
$configuration = $this
->getConfiguration();
$configuration['worksheet'] = $this
->loadWorksheet();
$configuration['keys'] = array_keys($configuration['keys']);
// The 'file' and 'plugin' items are not part of iterator configuration.
unset($configuration['file'], $configuration['plugin']);
$this->spreadsheetIterator
->setConfiguration($configuration);
// Flag that the iterator has been initialized.
$this->iteratorIsInitialized = TRUE;
}
return $this->spreadsheetIterator;
}
/**
* Loads the worksheet.
*
* @return \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet
* The source worksheet.
*
* @throws \Drupal\migrate\MigrateException
* When it's impossible to load the file or the worksheet does not exist.
*/
protected function loadWorksheet() {
$config = $this
->getConfiguration();
// Check that the file exists.
if (!file_exists($config['file'])) {
throw new MigrateException("File with path '{$config['file']}' doesn't exist.");
}
// Check that a non-empty worksheet has been passed.
if (empty($config['worksheet'])) {
throw new MigrateException('No worksheet was passed.');
}
// Load the workbook.
try {
$file_path = $this->fileSystem
->realpath($config['file']);
// Identify the type of the input file.
$type = IOFactory::identify($file_path);
// Create a new Reader of the file type.
/** @var \PhpOffice\PhpSpreadsheet\Reader\BaseReader $reader */
$reader = IOFactory::createReader($type);
// Advise the Reader that we only want to load cell data.
$reader
->setReadDataOnly(TRUE);
// Advise the Reader of which worksheet we want to load.
$reader
->setLoadSheetsOnly($config['worksheet']);
/** @var \PhpOffice\PhpSpreadsheet\Spreadsheet $workbook */
$workbook = $reader
->load($file_path);
return $workbook
->getSheet(0);
} catch (\Exception $e) {
$class = get_class($e);
throw new MigrateException("Got '{$class}', message '{$e->getMessage()}'.");
}
}
/**
* {@inheritdoc}
*/
public function calculateDependencies() {
return [];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
SourcePluginBase:: |
protected | property | The backend cache. | |
SourcePluginBase:: |
protected | property | Whether this instance should cache the source count. | 1 |
SourcePluginBase:: |
protected | property | Key to use for caching counts. | |
SourcePluginBase:: |
protected | property | The current row from the query. | |
SourcePluginBase:: |
protected | property | The primary key of the current row. | |
SourcePluginBase:: |
protected | property | Information on the property used as the high-water mark. | |
SourcePluginBase:: |
protected | property | The key-value storage for the high-water value. | |
SourcePluginBase:: |
protected | property | The migration ID map. | |
SourcePluginBase:: |
protected | property | The iterator to iterate over the source rows. | |
SourcePluginBase:: |
protected | property | Flags whether source plugin will read the map row and add to data row. | |
SourcePluginBase:: |
protected | property | The entity migration object. | |
SourcePluginBase:: |
protected | property | The module handler service. | 2 |
SourcePluginBase:: |
protected | property | The high water mark at the beginning of the import operation. | |
SourcePluginBase:: |
protected | property | Whether this instance should not attempt to count the source. | 1 |
SourcePluginBase:: |
protected | property | Flags whether to track changes to incoming data. | 1 |
SourcePluginBase:: |
protected | function | Check if the incoming data is newer than what we've previously imported. | |
SourcePluginBase:: |
public | function | Gets the source count. | 4 |
SourcePluginBase:: |
public | function | ||
SourcePluginBase:: |
protected | function | Gets the source count checking if the source is countable or using the iterator_count function. | 1 |
SourcePluginBase:: |
protected | function | Position the iterator to the following row. | 1 |
SourcePluginBase:: |
protected | function | Gets the cache object. | |
SourcePluginBase:: |
public | function | Gets the currentSourceIds data member. | |
SourcePluginBase:: |
protected | function | The current value of the high water mark. | |
SourcePluginBase:: |
protected | function | Get the name of the field used as the high watermark. | |
SourcePluginBase:: |
protected | function | Get information on the property used as the high watermark. | |
SourcePluginBase:: |
protected | function | Get the high water storage object. | 1 |
SourcePluginBase:: |
protected | function | Returns the iterator that will yield the row arrays to be processed. | |
SourcePluginBase:: |
protected | function | Gets the module handler. | |
SourcePluginBase:: |
public | function |
Gets the source module providing the source data. Overrides MigrateSourceInterface:: |
|
SourcePluginBase:: |
public | function | Gets the iterator key. | |
SourcePluginBase:: |
public | function | The migration iterates over rows returned by the source plugin. This method determines the next row which will be processed and imported into the system. | |
SourcePluginBase:: |
public | function |
Performs post-rollback tasks. Overrides RollbackAwareInterface:: |
|
SourcePluginBase:: |
public | function |
Adds additional data to the row. Overrides MigrateSourceInterface:: |
50 |
SourcePluginBase:: |
public | function |
Performs pre-rollback tasks. Overrides RollbackAwareInterface:: |
|
SourcePluginBase:: |
public | function | Rewinds the iterator. | |
SourcePluginBase:: |
protected | function | Checks if the incoming row has changed since our last import. | |
SourcePluginBase:: |
protected | function | Save the new high water mark. | |
SourcePluginBase:: |
public | function | Checks whether the iterator is currently valid. | |
Spreadsheet:: |
protected | property | The file system service. | |
Spreadsheet:: |
protected | property | Flag to determine if the iterator has been initialized. | |
Spreadsheet:: |
protected | property | The migrate spreadsheet iterator. | |
Spreadsheet:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: |
|
Spreadsheet:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
Spreadsheet:: |
public | function |
Gets default configuration for this plugin. Overrides ConfigurablePluginInterface:: |
|
Spreadsheet:: |
public | function |
Returns available fields on the source. Overrides MigrateSourceInterface:: |
|
Spreadsheet:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurablePluginInterface:: |
|
Spreadsheet:: |
public | function |
Defines the source fields uniquely identifying a source row. Overrides MigrateSourceInterface:: |
|
Spreadsheet:: |
public | function |
Initializes the iterator with the source data. Overrides SourcePluginBase:: |
|
Spreadsheet:: |
protected | function | Loads the worksheet. | |
Spreadsheet:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurablePluginInterface:: |
|
Spreadsheet:: |
public | function |
Constructs a spreadsheet migration source plugin object. Overrides SourcePluginBase:: |
|
Spreadsheet:: |
public | function |
Allows class to decide how it will react when it is treated like a string. Overrides MigrateSourceInterface:: |
|
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |