116 lines
4.0 KiB
PHP
116 lines
4.0 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* This file is part of the Thelia package. */
|
|
/* */
|
|
/* Copyright (c) OpenStudio */
|
|
/* email : dev@thelia.net */
|
|
/* web : http://www.thelia.net */
|
|
/* */
|
|
/* For the full copyright and license information, please view the LICENSE.txt */
|
|
/* file that was distributed with this source code. */
|
|
/*************************************************************************************/
|
|
|
|
namespace Thelia\Command;
|
|
|
|
use Propel\Generator\Command\ModelBuildCommand;
|
|
use Symfony\Component\Console\Helper\FormatterHelper;
|
|
use Symfony\Component\Console\Input\ArrayInput;
|
|
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\Filesystem\Filesystem;
|
|
use Thelia\Core\PropelInitService;
|
|
|
|
/**
|
|
* generate class model for a specific module
|
|
*
|
|
* Class ModuleGenerateModelCommand
|
|
* @package Thelia\Command
|
|
* @author Manuel Raynaud <manu@raynaud.io>
|
|
*/
|
|
class ModuleGenerateModelCommand extends BaseModuleGenerate
|
|
{
|
|
protected function configure()
|
|
{
|
|
$this
|
|
->setName("module:generate:model")
|
|
->setDescription("generate model for a specific module")
|
|
->addArgument(
|
|
"name",
|
|
InputArgument::REQUIRED,
|
|
"module name"
|
|
)
|
|
->addOption(
|
|
"generate-sql",
|
|
null,
|
|
InputOption::VALUE_NONE,
|
|
"with this option generate sql file at the same time"
|
|
)
|
|
;
|
|
}
|
|
|
|
public function execute(InputInterface $input, OutputInterface $output)
|
|
{
|
|
$this->module = $this->formatModuleName($input->getArgument("name"));
|
|
$this->moduleDirectory = THELIA_MODULE_DIR . $this->module;
|
|
|
|
$fs = new Filesystem();
|
|
|
|
if ($fs->exists($this->moduleDirectory) === false) {
|
|
throw new \RuntimeException(sprintf("%s module does not exists", $this->module));
|
|
}
|
|
|
|
if ($fs->exists($this->moduleDirectory . DS . "Config" . DS . "schema.xml") === false) {
|
|
throw new \RuntimeException("schema.xml not found in Config directory. Needed file for generating model");
|
|
}
|
|
|
|
$this->checkModuleSchema();
|
|
|
|
$this->generateModel($output);
|
|
|
|
/** @var FormatterHelper $formatter */
|
|
$formatter = $this->getHelper('formatter');
|
|
$formattedBlock = $formatter->formatBlock(
|
|
'Model generated successfully',
|
|
'bg=green;fg=black'
|
|
);
|
|
$output->writeln($formattedBlock);
|
|
|
|
if ($input->getOption("generate-sql")) {
|
|
$output->writeln(' ');
|
|
$this->generateSql($output);
|
|
}
|
|
}
|
|
|
|
protected function generateSql(OutputInterface $output)
|
|
{
|
|
$command = $this->getApplication()->find("module:generate:sql");
|
|
|
|
$command->run(
|
|
new ArrayInput(array(
|
|
"command" => $command->getName(),
|
|
"name" => $this->module
|
|
)),
|
|
$output
|
|
);
|
|
}
|
|
|
|
protected function generateModel(OutputInterface $output)
|
|
{
|
|
$schemaDir = $this->generateGlobalSchemaForModule();
|
|
|
|
/** @var PropelInitService $propelInitService */
|
|
$propelInitService = $this->getContainer()->get('thelia.propel.init');
|
|
|
|
$propelInitService->runCommand(
|
|
new ModelBuildCommand(),
|
|
[
|
|
"--config-dir" => $propelInitService->getPropelConfigDir(),
|
|
"--schema-dir" => $schemaDir,
|
|
],
|
|
$output
|
|
);
|
|
}
|
|
}
|