94 lines
3.3 KiB
PHP
94 lines
3.3 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 Symfony\Component\Console\Input\InputArgument;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
use Thelia\Core\Event\Module\ModuleToggleActivationEvent;
|
|
use Thelia\Core\Event\TheliaEvents;
|
|
use Thelia\Model\ModuleQuery;
|
|
use Thelia\Module\BaseModule;
|
|
|
|
/**
|
|
* activates a module
|
|
*
|
|
* Class ModuleActivateCommand
|
|
* @package Thelia\Command
|
|
* @author Etienne Roudeix <eroudeix@openstudio.fr>
|
|
*
|
|
*/
|
|
class ModuleActivateCommand extends BaseModuleGenerate
|
|
{
|
|
protected function configure()
|
|
{
|
|
$this
|
|
->setName("module:activate")
|
|
->setDescription("Activates a module")
|
|
->addOption(
|
|
"with-dependencies",
|
|
null,
|
|
InputOption::VALUE_NONE,
|
|
'activate module recursively'
|
|
)
|
|
->addArgument(
|
|
"module",
|
|
InputArgument::REQUIRED,
|
|
"module to activate"
|
|
);
|
|
}
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
{
|
|
$moduleCode = $this->formatModuleName($input->getArgument("module"));
|
|
|
|
$module = ModuleQuery::create()->findOneByCode($moduleCode);
|
|
|
|
if (null === $module) {
|
|
throw new \RuntimeException(sprintf("module %s not found", $moduleCode));
|
|
}
|
|
|
|
if ($module->getActivate() == BaseModule::IS_ACTIVATED) {
|
|
throw new \RuntimeException(sprintf("module %s is already actived", $moduleCode));
|
|
}
|
|
|
|
|
|
try {
|
|
$event = new ModuleToggleActivationEvent($module->getId());
|
|
if ($input->getOption("with-dependencies")) {
|
|
$event->setRecursive(true);
|
|
}
|
|
|
|
$this->getDispatcher()->dispatch(TheliaEvents::MODULE_TOGGLE_ACTIVATION, $event);
|
|
} catch (\Exception $e) {
|
|
throw new \RuntimeException(
|
|
sprintf(
|
|
"Activation fail with Exception : [%d] %s",
|
|
$e->getCode(),
|
|
$e->getMessage()
|
|
)
|
|
);
|
|
}
|
|
|
|
//impossible to change output class in CommandTester...
|
|
if (method_exists($output, "renderBlock")) {
|
|
$output->renderBlock(array(
|
|
'',
|
|
sprintf("Activation succeed for module %s", $moduleCode),
|
|
''
|
|
), "bg=green;fg=black");
|
|
}
|
|
}
|
|
}
|