class ImportPartialCommand in Tome 8
Contains the tome:import-partial command.
@internal
Hierarchy
- class \Drupal\tome_base\CommandBase extends \Symfony\Component\Console\Command\Command uses ExecutableFinderTrait, ProcessTrait
- class \Drupal\tome_sync\Commands\ImportCommand
- class \Drupal\tome_sync\Commands\ImportPartialCommand
- class \Drupal\tome_sync\Commands\ImportCommand
Expanded class hierarchy of ImportPartialCommand
1 string reference to 'ImportPartialCommand'
- tome_sync.services.yml in modules/
tome_sync/ tome_sync.services.yml - modules/tome_sync/tome_sync.services.yml
1 service uses ImportPartialCommand
File
- modules/
tome_sync/ src/ Commands/ ImportPartialCommand.php, line 19
Namespace
Drupal\tome_sync\CommandsView source
class ImportPartialCommand extends ImportCommand {
/**
* The content hasher.
*
* @var \Drupal\tome_sync\ContentHasherInterface
*/
protected $contentHasher;
/**
* Constructs an ImportPartialCommand instance.
*
* @param \Drupal\tome_sync\ImporterInterface $importer
* The importer.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
* @param \Drupal\Core\State\StateInterface $state
* The state system.
* @param \Drupal\tome_sync\ContentHasherInterface $content_hasher
* The content hasher.
*/
public function __construct(ImporterInterface $importer, EntityTypeManagerInterface $entity_type_manager, StateInterface $state, ContentHasherInterface $content_hasher) {
parent::__construct($importer, $entity_type_manager, $state);
$this->contentHasher = $content_hasher;
}
/**
* {@inheritdoc}
*/
protected function configure() {
$this
->setName('tome:import-partial')
->setDescription('Imports only changed config, content, and files.')
->addOption('process-count', NULL, InputOption::VALUE_OPTIONAL, 'Limits the number of processes to run concurrently.', self::PROCESS_COUNT)
->addOption('entity-count', NULL, InputOption::VALUE_OPTIONAL, 'The number of entities to export per process.', self::ENTITY_COUNT)
->addOption('yes', 'y', InputOption::VALUE_NONE, 'Assume "yes" as answer to all prompts,');
}
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output) {
if (!$this->contentHasher
->hashesExist()) {
$this
->io()
->error('No content hashes exist to perform a partial import. Please run a full Tome install and export (i.e. "drush tome:install && drush tome:export"), which will ensure hashes exist in the database and filesystem.');
return 1;
}
$options = $input
->getOptions();
$change_list = $this->contentHasher
->getChangelist();
if (empty($change_list['modified']) && empty($change_list['deleted']) && empty($change_list['added'])) {
$this
->io()
->success('No content has been changed or deleted. There may be config and file changes to import.');
}
if (!empty($change_list['modified'])) {
$this
->io()
->section('Modified');
$this
->io()
->listing($change_list['modified']);
}
if (!empty($change_list['added'])) {
$this
->io()
->section('Added');
$this
->io()
->listing($change_list['added']);
}
if (!empty($change_list['deleted'])) {
$this
->io()
->section('Deleted');
$this
->io()
->listing($change_list['deleted']);
}
if (!$options['yes'] && !$this
->io()
->confirm('Your local site\'s config, content, and files will be deleted or updated.', FALSE)) {
return 0;
}
if (!$this
->checkImportingState($options)) {
return 0;
}
$this->state
->set(ImporterInterface::STATE_KEY_IMPORTING, TRUE);
$delete_content = [];
foreach ($change_list['deleted'] as $content_name) {
list($entity_type_id, $uuid, $langcode) = TomeSyncHelper::getPartsFromContentName($content_name);
$results = $this->entityTypeManager
->getStorage($entity_type_id)
->getQuery()
->condition('uuid', $uuid)
->execute();
if (count($results) === 1) {
$id = reset($results);
$name = $entity_type_id . ':' . $id;
if ($langcode) {
$name .= ':' . $langcode;
}
$delete_content[] = $name;
}
}
if (!$this
->deleteContent($delete_content, $options['entity-count'], $options['process-count'])) {
return 1;
}
$this
->prepareConfigForImport();
if (!$this
->runCommand($this->executable . " config:import --partial -y", NULL, NULL)) {
return 1;
}
$chunked_names = $this->importer
->getChunkedNames();
foreach ($chunked_names as $i => $chunk) {
foreach ($chunk as $j => $name) {
if (!in_array($name, $change_list['modified'], TRUE) && !in_array($name, $change_list['added'], TRUE)) {
unset($chunked_names[$i][$j]);
}
}
$chunked_names[$i] = array_values($chunked_names[$i]);
}
if (!$this
->importChunks($chunked_names, $options['entity-count'], $options['process-count'])) {
return 1;
}
$this->importer
->importFiles();
if (!$this
->runCommand($this->executable . " tome:import-complete")) {
return 1;
}
$this->state
->set(ImporterInterface::STATE_KEY_IMPORTING, FALSE);
$this
->io()
->success('Imported config, content, and files.');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CommandBase:: |
protected | property | The current executable path. | |
CommandBase:: |
protected | property | The IO decorator. | |
CommandBase:: |
protected | function | ||
CommandBase:: |
protected | function |
Returns the IO decorator, for reporting errors. Overrides ProcessTrait:: |
|
ExecutableFinderTrait:: |
protected | function | Finds an executable string for the current process. | |
ImportCommand:: |
protected | property | The entity type manager. | |
ImportCommand:: |
protected | property | The importer. | |
ImportCommand:: |
protected | property | The state system. | |
ImportCommand:: |
protected | function | Checks the importing state and prompts the user if applicable. | |
ImportCommand:: |
protected | function | Deletes content using sub-processes. | |
ImportCommand:: |
constant | The default number of entities to import in each process. | ||
ImportCommand:: |
protected | function | Imports chunks of content using sub-processes. | |
ImportCommand:: |
protected | function | Prepares config for import by copying some directly from the source. | |
ImportCommand:: |
constant | The default number of processes to invoke. | ||
ImportPartialCommand:: |
protected | property | The content hasher. | |
ImportPartialCommand:: |
protected | function |
Overrides ImportCommand:: |
|
ImportPartialCommand:: |
protected | function |
Overrides ImportCommand:: |
|
ImportPartialCommand:: |
public | function |
Constructs an ImportPartialCommand instance. Overrides ImportCommand:: |
|
ProcessTrait:: |
protected | function | Displays errors using the IO component. | |
ProcessTrait:: |
protected | function | Runs a single command and outputs errors if encountered. | |
ProcessTrait:: |
protected | function | Runs commands with concurrency. |