Actualización

This commit is contained in:
Xes
2025-04-10 12:24:57 +02:00
parent 8969cc929d
commit 45420b6f0d
39760 changed files with 4303286 additions and 0 deletions

View File

@@ -0,0 +1,172 @@
<?php
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\EasyExtendsBundle\Generator;
use Sonata\EasyExtendsBundle\Bundle\BundleMetadata;
use Symfony\Component\Console\Output\OutputInterface;
class PHPCRGenerator implements GeneratorInterface
{
/**
* @var string
*/
protected $DocumentTemplate;
/**
* @var string
*/
protected $DocumentRepositoryTemplate;
public function __construct()
{
$this->DocumentTemplate = file_get_contents(__DIR__.'/../Resources/skeleton/phpcr/document.mustache');
$this->DocumentRepositoryTemplate = file_get_contents(__DIR__.'/../Resources/skeleton/phpcr/repository.mustache');
}
/**
* {@inheritdoc}
*/
public function generate(OutputInterface $output, BundleMetadata $bundleMetadata)
{
$this->generateMappingDocumentFiles($output, $bundleMetadata);
$this->generateDocumentFiles($output, $bundleMetadata);
$this->generateDocumentRepositoryFiles($output, $bundleMetadata);
}
/**
* @param OutputInterface $output
* @param BundleMetadata $bundleMetadata
*/
public function generateMappingDocumentFiles(OutputInterface $output, BundleMetadata $bundleMetadata)
{
$output->writeln(' - Copy Document files');
$files = $bundleMetadata->getPhpcrMetadata()->getDocumentMappingFiles();
foreach ($files as $file) {
// copy mapping definition
$fileName = substr($file->getFileName(), 0, strrpos($file->getFileName(), '.'));
$dest_file = sprintf('%s/%s', $bundleMetadata->getPhpcrMetadata()->getExtendedMappingDocumentDirectory(), $fileName);
$src_file = sprintf('%s/%s', $bundleMetadata->getPhpcrMetadata()->getMappingDocumentDirectory(), $file->getFileName());
if (is_file($dest_file)) {
$output->writeln(sprintf(' ~ <info>%s</info>', $fileName));
} else {
$output->writeln(sprintf(' + <info>%s</info>', $fileName));
$mappingEntityTemplate = file_get_contents($src_file);
$string = Mustache::replace($mappingEntityTemplate, array(
'namespace' => $bundleMetadata->getExtendedNamespace(),
));
file_put_contents($dest_file, $string);
}
}
}
/**
* @param OutputInterface $output
* @param BundleMetadata $bundleMetadata
*/
public function generateDocumentFiles(OutputInterface $output, BundleMetadata $bundleMetadata)
{
$output->writeln(' - Generating Document files');
$names = $bundleMetadata->getPhpcrMetadata()->getDocumentNames();
foreach ($names as $name) {
$extendedName = $name;
$dest_file = sprintf('%s/%s.php', $bundleMetadata->getPhpcrMetadata()->getExtendedDocumentDirectory(), $name);
$src_file = sprintf('%s/%s.php', $bundleMetadata->getPhpcrMetadata()->getDocumentDirectory(), $extendedName);
if (!is_file($src_file)) {
$extendedName = 'Base'.$name;
$src_file = sprintf('%s/%s.php', $bundleMetadata->getPhpcrMetadata()->getDocumentDirectory(), $extendedName);
if (!is_file($src_file)) {
$output->writeln(sprintf(' ! <info>%s</info>', $extendedName));
continue;
}
}
if (is_file($dest_file)) {
$output->writeln(sprintf(' ~ <info>%s</info>', $name));
} else {
$output->writeln(sprintf(' + <info>%s</info>', $name));
$string = Mustache::replace($this->getDocumentTemplate(), array(
'extended_namespace' => $bundleMetadata->getExtendedNamespace(),
'name' => $name != $extendedName ? $extendedName : $name,
'class' => $name,
'extended_name' => $name == $extendedName ? 'Base'.$name : $extendedName,
'namespace' => $bundleMetadata->getNamespace(),
));
file_put_contents($dest_file, $string);
}
}
}
/**
* @param OutputInterface $output
* @param BundleMetadata $bundleMetadata
*/
public function generateDocumentRepositoryFiles(OutputInterface $output, BundleMetadata $bundleMetadata)
{
$output->writeln(' - Generating Document repository files');
$names = $bundleMetadata->getPhpcrMetadata()->getDocumentNames();
foreach ($names as $name) {
$dest_file = sprintf('%s/%sRepository.php', $bundleMetadata->getPhpcrMetadata()->getExtendedDocumentDirectory(), $name);
$src_file = sprintf('%s/Base%sRepository.php', $bundleMetadata->getPhpcrMetadata()->getDocumentDirectory(), $name);
if (!is_file($src_file)) {
$output->writeln(sprintf(' ! <info>%sRepository</info>', $name));
continue;
}
if (is_file($dest_file)) {
$output->writeln(sprintf(' ~ <info>%sRepository</info>', $name));
} else {
$output->writeln(sprintf(' + <info>%sRepository</info>', $name));
$string = Mustache::replace($this->getDocumentRepositoryTemplate(), array(
'extended_namespace' => $bundleMetadata->getExtendedNamespace(),
'name' => $name,
'namespace' => $bundleMetadata->getNamespace(),
));
file_put_contents($dest_file, $string);
}
}
}
/**
* @return string
*/
public function getDocumentTemplate()
{
return $this->DocumentTemplate;
}
/**
* @return string
*/
public function getDocumentRepositoryTemplate()
{
return $this->DocumentRepositoryTemplate;
}
}