This commit is contained in:
Xes
2025-08-14 22:41:49 +02:00
parent 2de81ccc46
commit 8ce45119b6
39774 changed files with 4309466 additions and 0 deletions

View File

@@ -0,0 +1,125 @@
<?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 SerializerGenerator implements GeneratorInterface
{
/**
* @var string
*/
protected $entitySerializerTemplate;
/**
* @var string
*/
protected $documentSerializerTemplate;
public function __construct()
{
$this->entitySerializerTemplate = file_get_contents(__DIR__.'/../Resources/skeleton/serializer/entity.mustache');
$this->documentSerializerTemplate = file_get_contents(__DIR__.'/../Resources/skeleton/serializer/document.mustache');
}
/**
* {@inheritdoc}
*/
public function generate(OutputInterface $output, BundleMetadata $bundleMetadata)
{
$this->generateOrmSerializer($output, $bundleMetadata);
$this->generateOdmSerializer($output, $bundleMetadata);
$this->generatePhpcrSerializer($output, $bundleMetadata);
}
/**
* @param OutputInterface $output
* @param BundleMetadata $bundleMetadata
*/
protected function generateOrmSerializer(OutputInterface $output, BundleMetadata $bundleMetadata)
{
$names = $bundleMetadata->getOrmMetadata()->getEntityNames();
if (is_array($names) && count($names) > 0) {
$output->writeln(' - Generating ORM serializer files');
foreach ($names as $name) {
$destFile = sprintf('%s/Entity.%s.xml', $bundleMetadata->getOrmMetadata()->getExtendedSerializerDirectory(), $name);
$this->writeSerializerFile($output, $bundleMetadata, $this->entitySerializerTemplate, $destFile, $name);
}
}
}
/**
* @param OutputInterface $output
* @param BundleMetadata $bundleMetadata
*/
protected function generateOdmSerializer(OutputInterface $output, BundleMetadata $bundleMetadata)
{
$names = $bundleMetadata->getOdmMetadata()->getDocumentNames();
if (is_array($names) && count($names) > 0) {
$output->writeln(' - Generating ODM serializer files');
foreach ($names as $name) {
$destFile = sprintf('%s/Document.%s.xml', $bundleMetadata->getOdmMetadata()->getExtendedSerializerDirectory(), $name);
$this->writeSerializerFile($output, $bundleMetadata, $this->documentSerializerTemplate, $destFile, $name);
}
}
}
/**
* @param OutputInterface $output
* @param BundleMetadata $bundleMetadata
*/
protected function generatePhpcrSerializer(OutputInterface $output, BundleMetadata $bundleMetadata)
{
$names = $bundleMetadata->getPhpcrMetadata()->getDocumentNames();
if (is_array($names) && count($names) > 0) {
$output->writeln(' - Generating PHPCR serializer files');
foreach ($names as $name) {
$destFile = sprintf('%s/Document.%s.xml', $bundleMetadata->getPhpcrMetadata()->getExtendedSerializerDirectory(), $name);
$this->writeSerializerFile($output, $bundleMetadata, $this->documentSerializerTemplate, $destFile, $name);
}
}
}
/**
* @param OutputInterface $output
* @param BundleMetadata $bundleMetadata
* @param string $template
* @param string $destFile
* @param string $name
*/
protected function writeSerializerFile(OutputInterface $output, BundleMetadata $bundleMetadata, $template, $destFile, $name)
{
if (is_file($destFile)) {
$output->writeln(sprintf(' ~ <info>%s</info>', $name));
} else {
$output->writeln(sprintf(' + <info>%s</info>', $name));
$string = Mustache::replace($template, array(
'name' => $name,
'namespace' => $bundleMetadata->getExtendedNamespace(),
'root_name' => strtolower(preg_replace('/[A-Z]/', '_\\0', $name)),
));
file_put_contents($destFile, $string);
}
}
}