* fix order of destroying form elements * API documentation - fixes #1949 * make command path independent * use PhpSubprocess to execute migrations * allow to configure optional SAML attributes * fix deprecation * unify wording of exported state - fixes #5392
154 lines
5.2 KiB
PHP
154 lines
5.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Command;
|
|
|
|
use Exception;
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
use Symfony\Component\Console\Command\Command;
|
|
use Symfony\Component\Console\Helper\QuestionHelper;
|
|
use Symfony\Component\Console\Input\ArrayInput;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Symfony\Component\Console\Question\ConfirmationQuestion;
|
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
|
|
|
/**
|
|
* Base class for all re-installation commands, which are not used during application runtime.
|
|
* @codeCoverageIgnore
|
|
*/
|
|
abstract class AbstractResetCommand extends Command
|
|
{
|
|
public function __construct(private readonly string $kernelEnvironment)
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
protected function configure(): void
|
|
{
|
|
$this
|
|
->setHelp(
|
|
<<<EOT
|
|
This command will drop and re-create the database and its schemas, load data and clear the cache.
|
|
Use the <info>-n</info> switch to skip the question.
|
|
EOT
|
|
)
|
|
->addOption('no-cache', null, InputOption::VALUE_NONE, 'Skip cache flushing')
|
|
;
|
|
}
|
|
|
|
public function isEnabled(): bool
|
|
{
|
|
return $this->kernelEnvironment !== 'prod';
|
|
}
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
|
{
|
|
$io = new SymfonyStyle($input, $output);
|
|
|
|
if ($this->askConfirmation($input, $output, 'Do you want to create the database y/N ?')) {
|
|
try {
|
|
$command = $this->getApplication()->find('doctrine:database:create');
|
|
$options = ['--if-not-exists' => true];
|
|
$command->run(new ArrayInput($options), $output);
|
|
} catch (Exception $ex) {
|
|
$io->error('Failed to create database: ' . $ex->getMessage());
|
|
|
|
return Command::FAILURE;
|
|
}
|
|
}
|
|
|
|
if ($this->askConfirmation($input, $output, 'Do you want to drop and re-create the schema y/N ?')) {
|
|
if (($result = $this->dropSchema($io, $output)) !== Command::SUCCESS) {
|
|
return $result;
|
|
}
|
|
|
|
try {
|
|
$command = $this->getApplication()->find('doctrine:migrations:migrate');
|
|
$cmdInput = new ArrayInput([]);
|
|
$cmdInput->setInteractive(false);
|
|
$command->run($cmdInput, $output);
|
|
} catch (Exception $ex) {
|
|
$io->error('Failed to execute a migrations: ' . $ex->getMessage());
|
|
|
|
return Command::FAILURE;
|
|
}
|
|
}
|
|
|
|
try {
|
|
$this->loadData($input, $output);
|
|
} catch (Exception $ex) {
|
|
$io->error('Failed to import data: ' . $ex->getMessage());
|
|
|
|
return Command::FAILURE;
|
|
}
|
|
|
|
if (!$input->getOption('no-cache')) {
|
|
$command = $this->getApplication()->find('cache:clear');
|
|
try {
|
|
$command->run(new ArrayInput([]), $output);
|
|
} catch (Exception $ex) {
|
|
$io->error('Failed to clear cache: ' . $ex->getMessage());
|
|
|
|
return Command::FAILURE;
|
|
}
|
|
}
|
|
|
|
return Command::SUCCESS;
|
|
}
|
|
|
|
protected function dropSchema(SymfonyStyle $io, OutputInterface $output): int
|
|
{
|
|
try {
|
|
$command = $this->getApplication()->find('doctrine:schema:drop');
|
|
$command->run(new ArrayInput(['--force' => true, '--full-database' => true]), $output);
|
|
} catch (Exception $ex) {
|
|
$io->error('Failed to drop database schema: ' . $ex->getMessage());
|
|
|
|
return Command::FAILURE;
|
|
}
|
|
|
|
try {
|
|
$command = $this->getApplication()->find('dbal:run-sql');
|
|
$command->run(new ArrayInput(['sql' => 'DROP TABLE IF EXISTS migration_versions']), $output);
|
|
} catch (Exception $ex) {
|
|
$io->error('Failed to drop migration_versions table: ' . $ex->getMessage());
|
|
|
|
return Command::FAILURE;
|
|
}
|
|
|
|
try {
|
|
$command = $this->getApplication()->find('dbal:run-sql');
|
|
$command->run(new ArrayInput(['sql' => 'DROP TABLE IF EXISTS kimai2_sessions']), $output);
|
|
} catch (Exception $ex) {
|
|
$io->error('Failed to drop kimai2_sessions table: ' . $ex->getMessage());
|
|
|
|
return Command::FAILURE;
|
|
}
|
|
|
|
return Command::SUCCESS;
|
|
}
|
|
|
|
private function askConfirmation(InputInterface $input, OutputInterface $output, string $question): bool
|
|
{
|
|
if (!$input->isInteractive()) {
|
|
return true;
|
|
}
|
|
|
|
/** @var QuestionHelper $questionHelper */
|
|
$questionHelper = $this->getHelperSet()->get('question');
|
|
$question = new ConfirmationQuestion('<question>' . $question . '</question>', false);
|
|
|
|
return $questionHelper->ask($input, $output, $question);
|
|
}
|
|
|
|
abstract protected function loadData(InputInterface $input, OutputInterface $output): void;
|
|
}
|