Files
2025-08-14 22:41:49 +02:00

172 lines
6.3 KiB
PHP

<?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\Command;
use Sonata\EasyExtendsBundle\Bundle\BundleMetadata;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\HttpKernel\Bundle\BundleInterface;
/**
* Generate Application entities from bundle entities.
*
* @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
*/
class GenerateCommand extends ContainerAwareCommand
{
/**
* {@inheritdoc}
*/
protected function configure()
{
$this
->setName('sonata:easy-extends:generate')
->setHelp(<<<'EOT'
The <info>easy-extends:generate:entities</info> command generating a valid bundle structure from a Vendor Bundle.
<info>ie: ./app/console sonata:easy-extends:generate SonataUserBundle</info>
EOT
);
$this->setDescription('Create entities used by Sonata\'s bundles');
$this->addArgument('bundle', InputArgument::IS_ARRAY, 'The bundle name to "easy-extends"');
$this->addOption('dest', 'd', InputOption::VALUE_OPTIONAL, 'The base folder where the Application will be created', false);
$this->addOption('namespace', 'ns', InputOption::VALUE_OPTIONAL, 'The namespace for the classes', false);
}
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$destOption = $input->getOption('dest');
if ($destOption) {
$dest = realpath($destOption);
if (false === $dest) {
throw new \RuntimeException(sprintf('The provided destination folder \'%s\' does not exist!', $destOption));
}
} else {
$dest = $this->getContainer()->get('kernel')->getRootDir();
}
$namespace = $input->getOption('namespace');
if ($namespace) {
if (!preg_match('/^(?:(?:[[:alnum:]]+|:vendor)\\\\?)+$/', $namespace)) {
throw new \InvalidArgumentException('The provided namespace \'%s\' is not a valid namespace!', $namespace);
}
} else {
$namespace = 'Application\:vendor';
}
$configuration = array(
'application_dir' => sprintf('%s%s%s', $dest, DIRECTORY_SEPARATOR, str_replace('\\', DIRECTORY_SEPARATOR, $namespace)),
'namespace' => $namespace,
);
$bundleNames = $input->getArgument('bundle');
if (empty($bundleNames)) {
$output->writeln('');
$output->writeln('<error>You must provide a bundle name!</error>');
$output->writeln('');
$output->writeln(' Bundles availables :');
/** @var BundleInterface $bundle */
foreach ($this->getContainer()->get('kernel')->getBundles() as $bundle) {
$bundleMetadata = new BundleMetadata($bundle, $configuration);
if (!$bundleMetadata->isExtendable()) {
continue;
}
$output->writeln(sprintf(' - %s', $bundle->getName()));
}
$output->writeln('');
} else {
foreach ($bundleNames as $bundleName) {
$processed = $this->generate($bundleName, $configuration, $output);
if (!$processed) {
throw new \RuntimeException(sprintf('<error>The bundle \'%s\' does not exist or not defined in the kernel file!</error>', $bundleName));
}
}
}
$output->writeln('done!');
}
/**
* Generates a bundle entities from a bundle name.
*
* @param string $bundleName
* @param array $configuration
* @param OutputInterface $output
*
* @return bool
*/
protected function generate($bundleName, array $configuration, $output)
{
$processed = false;
/** @var BundleInterface $bundle */
foreach ($this->getContainer()->get('kernel')->getBundles() as $bundle) {
if ($bundle->getName() != $bundleName) {
continue;
}
$processed = true;
$bundleMetadata = new BundleMetadata($bundle, $configuration);
// generate the bundle file
if (!$bundleMetadata->isExtendable()) {
$output->writeln(sprintf('Ignoring bundle : "<comment>%s</comment>"', $bundleMetadata->getClass()));
continue;
}
// generate the bundle file
if (!$bundleMetadata->isValid()) {
$output->writeln(sprintf('%s : <comment>wrong folder structure</comment>', $bundleMetadata->getClass()));
continue;
}
$output->writeln(sprintf('Processing bundle : "<info>%s</info>"', $bundleMetadata->getName()));
$this->getContainer()->get('sonata.easy_extends.generator.bundle')
->generate($output, $bundleMetadata);
$output->writeln(sprintf('Processing Doctrine ORM : "<info>%s</info>"', $bundleMetadata->getName()));
$this->getContainer()->get('sonata.easy_extends.generator.orm')
->generate($output, $bundleMetadata);
$output->writeln(sprintf('Processing Doctrine ODM : "<info>%s</info>"', $bundleMetadata->getName()));
$this->getContainer()->get('sonata.easy_extends.generator.odm')
->generate($output, $bundleMetadata);
$output->writeln(sprintf('Processing Doctrine PHPCR : "<info>%s</info>"', $bundleMetadata->getName()));
$this->getContainer()->get('sonata.easy_extends.generator.phpcr')
->generate($output, $bundleMetadata);
$output->writeln(sprintf('Processing Serializer config : "<info>%s</info>"', $bundleMetadata->getName()));
$this->getContainer()->get('sonata.easy_extends.generator.serializer')
->generate($output, $bundleMetadata);
$output->writeln('');
}
return $processed;
}
}