environment = $kernelEnvironment; $this->entityManager = $entityManager; parent::__construct(); } /** * {@inheritdoc} */ protected function configure() { $this ->setName('kimai:reset:' . $this->getEnvName()) ->setAliases(['kimai:reset-' . $this->getEnvName()]) ->setDescription('Resets the "' . $this->getEnvName() . '" environment') ->setHelp( <<-n switch to skip the question. EOT ) ->addOption('no-cache', null, InputOption::VALUE_NONE, 'Skip cache flushing') ; } /** * Make sure that this command CANNOT be executed in production. * It can't work, as the fixtures bundle is not available in production. * * @return bool */ public function isEnabled() { return $this->environment !== 'prod'; } /** * @param InputInterface $input * @param OutputInterface $output * @return int|null */ protected function execute(InputInterface $input, OutputInterface $output) { $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 1; } } if ($this->askConfirmation($input, $output, 'Do you want to drop and re-create the schema y/N ?')) { try { $command = $this->getApplication()->find('doctrine:schema:drop'); $command->run(new ArrayInput(['--force' => true]), $output); } catch (Exception $ex) { $io->error('Failed to drop database schema: ' . $ex->getMessage()); return 2; } try { $command = $this->getApplication()->find('doctrine:query: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 3; } try { $command = $this->getApplication()->find('doctrine:query: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 4; } 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 5; } } try { $this->loadData($input, $output); } catch (Exception $ex) { $io->error('Failed to import data: ' . $ex->getMessage()); return 6; } 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 7; } } return 0; } /** * @param InputInterface $input * @param OutputInterface $output * @param string $question * @param bool $default * @return bool */ private function askConfirmation(InputInterface $input, OutputInterface $output, $question, $default = false) { if (!$input->isInteractive()) { return true; } /** @var QuestionHelper $questionHelper */ $questionHelper = $this->getHelperSet()->get('question'); $question = new ConfirmationQuestion('' . $question . '', $default); return $questionHelper->ask($input, $output, $question); } abstract protected function getEnvName(): string; abstract protected function loadData(InputInterface $input, OutputInterface $output): void; }