setHelp( <<-n 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 . '', false); return $questionHelper->ask($input, $output, $question); } abstract protected function loadData(InputInterface $input, OutputInterface $output): void; }