121 lines
5.2 KiB
PHP
121 lines
5.2 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* */
|
|
/* Thelia */
|
|
/* */
|
|
/* Copyright (c) OpenStudio */
|
|
/* email : info@thelia.net */
|
|
/* web : http://www.thelia.net */
|
|
/* */
|
|
/* This program is free software; you can redistribute it and/or modify */
|
|
/* it under the terms of the GNU General Public License as published by */
|
|
/* the Free Software Foundation; either version 3 of the License */
|
|
/* */
|
|
/* This program is distributed in the hope that it will be useful, */
|
|
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
|
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
|
/* GNU General Public License for more details. */
|
|
/* */
|
|
/* You should have received a copy of the GNU General Public License */
|
|
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
/* */
|
|
/*************************************************************************************/
|
|
namespace Thelia\Command;
|
|
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Symfony\Component\Filesystem\Filesystem;
|
|
|
|
/**
|
|
* generate a new Module
|
|
*
|
|
* Class ModuleGenerateCommand
|
|
* @package Thelia\Command
|
|
* @author Manuel Raynaud <mraynaud@openstudio.fr>
|
|
*/
|
|
class ModuleGenerateCommand extends BaseModuleGenerate
|
|
{
|
|
protected function configure()
|
|
{
|
|
$this
|
|
->setName("module:generate")
|
|
->setDescription("generate all needed files for creating a new Module")
|
|
->addArgument(
|
|
"name" ,
|
|
InputArgument::REQUIRED,
|
|
"name wanted for your Module"
|
|
)
|
|
;
|
|
}
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
{
|
|
$this->module = $this->formatModuleName($input->getArgument("name"));
|
|
$this->moduleDirectory = THELIA_MODULE_DIR . DIRECTORY_SEPARATOR . $this->module;
|
|
$this->verifyExistingModule();
|
|
|
|
$this->createDirectories();
|
|
$this->createFiles();
|
|
if (method_exists($this, "renderBlock")) {
|
|
//impossible to change output class in CommandTester...
|
|
$output->renderBlock(array(
|
|
'',
|
|
sprintf("module %s create with success", $this->module),
|
|
"You can now configure your module and complete module.xml file",
|
|
''
|
|
), "bg=green;fg=black");
|
|
}
|
|
|
|
}
|
|
|
|
private function createDirectories()
|
|
{
|
|
$fs = new Filesystem();
|
|
|
|
$fs->mkdir($this->moduleDirectory);
|
|
|
|
foreach ($this->neededDirectories as $directory) {
|
|
$fs->mkdir($this->moduleDirectory . DIRECTORY_SEPARATOR . $directory);
|
|
}
|
|
|
|
}
|
|
|
|
private function createFiles()
|
|
{
|
|
$fs = new Filesystem();
|
|
|
|
try {
|
|
$skeletonDir = str_replace("/", DIRECTORY_SEPARATOR, THELIA_ROOT . "/core/lib/Thelia/Command/Skeleton/Module/");
|
|
|
|
$fs->copy($skeletonDir . "config.xml", $this->moduleDirectory . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "config.xml");
|
|
|
|
$moduleContent = file_get_contents($skeletonDir . "module.xml");
|
|
|
|
$moduleContent = str_replace("%%CLASSNAME%%", $this->module, $moduleContent);
|
|
$moduleContent = str_replace("%%NAMESPACE%%", $this->module, $moduleContent);
|
|
|
|
file_put_contents($this->moduleDirectory . DIRECTORY_SEPARATOR . "Config". DIRECTORY_SEPARATOR . "module.xml", $moduleContent);
|
|
|
|
$classContent = file_get_contents($skeletonDir . "Class.php");
|
|
|
|
$classContent = str_replace("%%CLASSNAME%%", $this->module, $classContent);
|
|
$classContent = str_replace("%%NAMESPACE%%", $this->module, $classContent);
|
|
|
|
file_put_contents($this->moduleDirectory . DIRECTORY_SEPARATOR . $this->module.".php", $classContent);
|
|
|
|
$schemaContent = file_get_contents($skeletonDir . "schema.xml");
|
|
|
|
$schemaContent = str_replace("%%CONFIG_DIR%%", THELIA_CONF_DIR, $schemaContent);
|
|
$schemaContent = str_replace("%%NAMESPACE%%", $this->module, $schemaContent);
|
|
|
|
file_put_contents($this->moduleDirectory . DIRECTORY_SEPARATOR . "Config". DIRECTORY_SEPARATOR . "schema.xml", $schemaContent);
|
|
} catch (\Exception $ex) {
|
|
$fs->remove($this->moduleDirectory);
|
|
|
|
throw $ex;
|
|
}
|
|
}
|
|
|
|
}
|