Last active
April 24, 2025 10:20
-
-
Save Sebobo/055d47e87f7dfdf2f1f8b85a65214078 to your computer and use it in GitHub Desktop.
Import & export of subtrees in Neos 8.x
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace MyVendor\ImportExport\Command; | |
use Neos\ContentRepository\Domain\Service\ContextFactoryInterface; | |
use Neos\ContentRepository\Domain\Service\ImportExport\NodeExportService; | |
use Neos\ContentRepository\Domain\Service\ImportExport\NodeImportService; | |
use Neos\Flow\Annotations as Flow; | |
use Neos\Flow\Cli\CommandController; | |
use Neos\Neos\Domain\Repository\SiteRepository; | |
use Neos\Neos\Domain\Service\ContentContext; | |
use Neos\Utility\Files; | |
/** | |
* @Flow\Scope("singleton") | |
*/ | |
class ContentCommandController extends CommandController | |
{ | |
/** | |
* @Flow\Inject | |
* @var ContextFactoryInterface | |
*/ | |
protected $contextFactory; | |
/** | |
* @Flow\Inject | |
* @var SiteRepository | |
*/ | |
protected $siteRepository; | |
/** | |
* @Flow\Inject | |
* | |
* @var NodeExportService | |
*/ | |
protected $nodeExportService; | |
/** | |
* @Flow\Inject | |
* @var NodeImportService | |
*/ | |
protected $nodeImportService; | |
/** | |
* Export node tree from given source node to XML | |
* | |
* @param string $siteNodeName Site node name | |
* @param string $sourceNodeIdentifier Node identifier of starting point node | |
* @param string $filename Filename to write XML to. Resources directory will be created at same path of Filename | |
* @param boolean $tidy | |
* @param string $nodeTypeFilter | |
* @param string $workspace | |
* @throws \Neos\Flow\Mvc\Exception\StopActionException | |
*/ | |
public function exportCommand($siteNodeName, $sourceNodeIdentifier, $filename, $tidy = true, $nodeTypeFilter = null, $workspace = null) | |
{ | |
$site = $this->siteRepository->findOneByNodeName($siteNodeName); | |
if ($site === null) { | |
$this->outputLine('<error>No site with node name "%s" found</error>', [$siteNodeName]); | |
$this->quit(1); | |
} | |
/** @var ContentContext $contentContext */ | |
$contentContext = $this->contextFactory->create([ | |
'workspaceName' => $workspace, | |
'currentSite' => $site, | |
'invisibleContentShown' => true, | |
'inaccessibleContentShown' => true | |
]); | |
$sourceNode = $contentContext->getNodeByIdentifier($sourceNodeIdentifier); | |
if ($sourceNode === null) { | |
$this->outputLine('<error>No node with identifier "%s" found</error>', [$sourceNodeIdentifier]); | |
$this->quit(1); | |
} | |
$resourcesPath = Files::concatenatePaths([dirname($filename), 'Resources']); | |
Files::createDirectoryRecursively($resourcesPath); | |
$xmlWriter = new \XMLWriter(); | |
$xmlWriter->openUri($filename); | |
$xmlWriter->setIndent($tidy); | |
$xmlWriter->startDocument('1.0', 'UTF-8'); | |
$this->nodeExportService->export($sourceNode->getPath(), $contentContext->getWorkspaceName(), $xmlWriter, $tidy, true, $resourcesPath, $nodeTypeFilter); | |
$xmlWriter->flush(); | |
$this->outputLine('Export finished'); | |
} | |
/** | |
* Import node tree from given XML file into target node | |
* | |
* @param string $siteNodeName Site node name | |
* @param string $targetNodeIdentifier Target node identifier under which the node tree will be imported | |
* @param string $filename Filename to read XML from | |
* @throws \Neos\Flow\Mvc\Exception\StopActionException | |
*/ | |
public function importCommand($siteNodeName, $targetNodeIdentifier, $filename) | |
{ | |
if (! is_file($filename)) { | |
$this->outputLine('<error>File "%s" not found</error>', [$filename]); | |
$this->quit(1); | |
} | |
$site = $this->siteRepository->findOneByNodeName($siteNodeName); | |
if ($site === null) { | |
$this->outputLine('<error>No site with node name "%s" found</error>', [$siteNodeName]); | |
$this->quit(1); | |
} | |
/** @var ContentContext $contentContext */ | |
$contentContext = $this->contextFactory->create([ | |
'currentSite' => $site, | |
'invisibleContentShown' => true, | |
'inaccessibleContentShown' => true | |
]); | |
$targetNode = $contentContext->getNodeByIdentifier($targetNodeIdentifier); | |
if ($targetNode === null) { | |
$this->outputLine('<error>No node with identifier "%s" found</error>', [$targetNodeIdentifier]); | |
$this->quit(1); | |
} | |
$xmlReader = new \XMLReader(); | |
if ($xmlReader->open($filename, null, LIBXML_PARSEHUGE) === false) { | |
$this->outputLine('<error>Error: XMLReader could not open "%s"</error>', [$filename]); | |
$this->quit(1); | |
} | |
$this->nodeImportService->import($xmlReader, $targetNode->getPath(), dirname($filename) . '/Resources'); | |
$this->outputLine('Import finished'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment