Files
ezmigrationbundle/Command/MigrateCommand.php
T

265 lines
10 KiB
PHP

<?php
namespace Kaliop\eZMigrationBundle\Command;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Input\InputOption;
use Kaliop\eZMigrationBundle\API\Value\MigrationDefinition;
use Kaliop\eZMigrationBundle\API\Value\Migration;
use Symfony\Component\Process\ProcessBuilder;
use Symfony\Component\Process\PhpExecutableFinder;
/**
* Command to execute the available migration definitions.
*/
class MigrateCommand extends AbstractCommand
{
// in between QUIET and NORMAL
const VERBOSITY_CHILD = 0.5;
/** @var OutputInterface $output */
protected $output;
protected $verbosity = OutputInterface::VERBOSITY_NORMAL;
/**
* Set up the command.
*
* Define the name, options and help text.
*/
protected function configure()
{
parent::configure();
$this
->setName('kaliop:migration:migrate')
->setAliases(array('kaliop:migration:update'))
->setDescription('Execute available migration definitions.')
->addOption(
'path',
null,
InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY,
"The directory or file to load the migration definitions from"
)
// nb: when adding options, remember to forward them to sub-commands executed in 'separate-process' mode
->addOption('default-language', null, InputOption::VALUE_REQUIRED, "Default language code that will be used if no language is provided in migration steps")
->addOption('ignore-failures', null, InputOption::VALUE_NONE, "Keep executing migrations even if one fails")
->addOption('clear-cache', null, InputOption::VALUE_NONE, "Clear the cache after the command finishes")
->addOption('no-interaction', 'n', InputOption::VALUE_NONE, "Do not ask any interactive question")
->addOption('no-transactions', 'u', InputOption::VALUE_NONE, "Do not use a repository transaction to wrap each migration. Unsafe, but needed for legacy slot handlers")
->addOption('separate-process', 'p', InputOption::VALUE_NONE, "Use a separate php process to run each migration. Safe if your migration leak memory. A tad slower")
->addOption('child', null, InputOption::VALUE_NONE, "*DO NOT USE* Internal option for when forking separate processes")
->setHelp(<<<EOT
The <info>kaliop:migration:migrate</info> command loads and executes migrations:
<info>./ezpublish/console kaliop:migration:migrate</info>
You can optionally specify the path to migration definitions with <info>--path</info>:
<info>./ezpublish/console kaliop:migrations:migrate --path=/path/to/bundle/version_directory --path=/path/to/bundle/version_directory/single_migration_file</info>
EOT
);
}
/**
* Execute the command.
*
* @param InputInterface $input
* @param OutputInterface $output
* @return null|int null or 0 if everything went fine, or an error code
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->setOutput($output);
$this->setVerbosity($output->getVerbosity());
if ($input->getOption('child')) {
$this->setVerbosity(self::VERBOSITY_CHILD);
}
$migrationsService = $this->getMigrationService();
$paths = $input->getOption('path');
$migrationDefinitions = $migrationsService->getMigrationsDefinitions($paths);
$migrations = $migrationsService->getMigrations();
// filter away all migrations except 'to do' ones
$toExecute = array();
foreach($migrationDefinitions as $name => $migrationDefinition) {
if (!isset($migrations[$name]) || (($migration = $migrations[$name]) && $migration->status == Migration::STATUS_TODO)) {
$toExecute[$name] = $migrationsService->parseMigrationDefinition($migrationDefinition);
}
}
// if user wants to execute 'all' migrations: look for some which are registered in the database even if not
// found by the loader
if (empty($paths)) {
foreach ($migrations as $migration) {
if ($migration->status == Migration::STATUS_TODO && !isset($toExecute[$migration->name])) {
$migrationDefinitions = $migrationsService->getMigrationsDefinitions(array($migration->path));
if (count($migrationDefinitions)) {
$migrationDefinition = reset($migrationDefinitions);
$toExecute[$migration->name] = $migrationsService->parseMigrationDefinition($migrationDefinition);
} else {
// q: shall we raise a warning here ?
}
}
}
}
ksort($toExecute);
if (!count($toExecute)) {
$output->writeln('<info>No migrations to execute</info>');
return;
}
$this->writeln("\n <info>==</info> Migrations to be executed\n");
$data = array();
$i = 1;
foreach($toExecute as $name => $migrationDefinition) {
$notes = '';
if ($migrationDefinition->status != MigrationDefinition::STATUS_PARSED) {
$notes = '<error>' . $migrationDefinition->parsingError . '</error>';
}
$data[] = array(
$i++,
$name,
$notes
);
}
if (!$input->getOption('child')) {
$table = $this->getHelperSet()->get('table');
$table
->setHeaders(array('#', 'Migration', 'Notes'))
->setRows($data);
$table->render($output);
}
$this->writeln('');
// ask user for confirmation to make changes
if ($input->isInteractive() && !$input->getOption('no-interaction')) {
$dialog = $this->getHelperSet()->get('dialog');
if (!$dialog->askConfirmation(
$output,
'<question>Careful, the database will be modified. Do you want to continue Y/N ?</question>',
false
)
) {
$output->writeln('<error>Migration execution cancelled!</error>');
return 0;
}
} else {
$this->writeln("=============================================\n");
}
if ($input->getOption('separate-process')) {
$builder = new ProcessBuilder();
$executableFinder = new PhpExecutableFinder();
if (false !== $php = $executableFinder->find()) {
$builder->setPrefix($php);
}
// mandatory args and options
$builderArgs = array(
$_SERVER['argv'][0], // sf console
$_SERVER['argv'][1], // name of sf command
'--env=' . $this->getContainer()->get('kernel')->getEnvironment(), // sf env
'--child'
);
// 'optional' options
// note: options 'clear-cache', 'ignore-failures' and 'no-transactions' we never propagate
if ($input->getOption('default-language')) {
$builderArgs[]='--default-language='.$input->getOption('default-language');
}
if ($input->getOption('no-transactions')) {
$builderArgs[]='--no-transactions';
}
}
foreach($toExecute as $name => $migrationDefinition) {
// let's skip migrations that we know are invalid - user was warned and he decided to proceed anyway
if ($migrationDefinition->status == MigrationDefinition::STATUS_INVALID) {
$output->writeln("<comment>Skipping $name</comment>\n");
continue;
}
$this->writeln("<info>Processing $name</info>");
if ($input->getOption('separate-process')) {
$process = $builder
->setArguments(array_merge($builderArgs, array('--path=' . $migrationDefinition->path)))
->getProcess();
$this->writeln('<info>Executing: ' . $process->getCommandLine() . '</info>', OutputInterface::VERBOSITY_VERBOSE);
$process->run();
$output->write($process->getOutput());
if (!$process->isSuccessful()) {
$err = $process->getErrorOutput();
if ($input->getOption('ignore-failures')) {
$output->writeln("\n<error>Migration failed! Reason: " . $err . "</error>\n");
continue;
}
$output->writeln("\n<error>Migration aborted! Reason: " . $err . "</error>");
return 1;
}
} else {
try {
$migrationsService->executeMigration(
$migrationDefinition,
!$input->getOption('no-transactions'),
$input->getOption('default-language')
);
} catch(\Exception $e) {
if ($input->getOption('ignore-failures')) {
$output->writeln("\n<error>Migration failed! Reason: " . $e->getMessage() . "</error>\n");
continue;
}
$output->writeln("\n<error>Migration aborted! Reason: " . $e->getMessage() . "</error>");
return 1;
}
}
$this->writeln('');
}
if ($input->getOption('clear-cache')) {
$command = $this->getApplication()->find('cache:clear');
$inputArray = new ArrayInput(array('command' => 'cache:clear'));
$command->run($inputArray, $output);
}
}
/**
* Small tricks to allow us to lower verbosity between NORMAL and QUIET and have a decent writeln API, even with old SF versions
* @param $message
* @param int $verbosity
*/
protected function writeln($message, $verbosity=OutputInterface::VERBOSITY_NORMAL)
{
if ($this->verbosity >= $verbosity) {
$this->output->writeln($message);
}
}
protected function setOutput(OutputInterface $output)
{
$this->output = $output;
}
protected function setVerbosity($verbosity)
{
$this->verbosity = $verbosity;
}
}