Files
kimai2/src/Command/ReloadCommand.php

163 lines
4.9 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 Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\StringInput;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
use Symfony\Component\HttpKernel\KernelInterface;
/**
* Command used to update a Kimai installation.
*
* @codeCoverageIgnore
*/
final class ReloadCommand extends Command
{
public const ERROR_CACHE_CLEAN = 2;
public const ERROR_CACHE_WARMUP = 4;
public const ERROR_LINT_CONFIG = 8;
public const ERROR_LINT_TRANSLATIONS = 16;
/**
* Returns the base directory to the Kimai installation.
*
* @return string
*/
protected function getRootDirectory(): string
{
/** @var Application $application */
$application = $this->getApplication();
return $application->getKernel()->getProjectDir();
}
/**
* {@inheritdoc}
*/
protected function configure()
{
$this
->setName('kimai:reload')
->setDescription('Reload Kimai caches')
->setHelp('This command will validate the configurations and translations and then clear and rebuild the application cache.')
;
}
/**
* @param InputInterface $input
* @param OutputInterface $output
* @return int|null
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$io = new SymfonyStyle($input, $output);
$io->title('Reloading configurations ...');
// many users execute the bin/console command from arbitrary locations
$path = getcwd();
\chdir($this->getRootDirectory());
try {
$command = $this->getApplication()->find('lint:yaml');
$cmdInput = new StringInput('lint:yaml --parse-tags config');
$cmdInput->setInteractive(false);
if (0 !== $command->run($cmdInput, $output)) {
throw new \RuntimeException('Config file seems to be invalid');
}
$io->writeln('');
} catch (\Exception $ex) {
$io->error($ex->getMessage());
return self::ERROR_LINT_CONFIG;
}
try {
$command = $this->getApplication()->find('lint:xliff');
$cmdInput = new StringInput('lint:xliff translations');
$cmdInput->setInteractive(false);
if (0 !== $command->run($cmdInput, $output)) {
throw new \RuntimeException('Translation files seem to be invalid');
}
$io->writeln('');
} catch (\Exception $ex) {
$io->error($ex->getMessage());
return self::ERROR_LINT_TRANSLATIONS;
}
/** @var Application $application */
$application = $this->getApplication();
/** @var KernelInterface $kernel */
$kernel = $application->getKernel();
$environment = $kernel->getEnvironment();
// flush the cache, in case values from the database are cached
$cacheResult = $this->rebuildCaches($environment, $io, $input, $output);
chdir($path);
if ($cacheResult !== 0) {
$io->warning(
[
'Cache could not be rebuilt.',
'Please run the cache commands manually:',
'bin/console cache:clear --env=' . $environment . PHP_EOL .
'bin/console cache:warmup --env=' . $environment
]
);
return $cacheResult;
}
$io->success(
sprintf('Kimai config was reloaded')
);
return 0;
}
protected function rebuildCaches(string $environment, SymfonyStyle $io, InputInterface $input, OutputInterface $output)
{
$io->text('Rebuilding your cache, please be patient ...');
$command = $this->getApplication()->find('cache:clear');
try {
if (0 !== $command->run(new ArrayInput(['--env' => $environment]), $output)) {
throw new \RuntimeException('Could not clear cache, missing permissions?');
}
} catch (\Exception $ex) {
$io->error($ex->getMessage());
return self::ERROR_CACHE_CLEAN;
}
$command = $this->getApplication()->find('cache:warmup');
try {
if (0 !== $command->run(new ArrayInput(['--env' => $environment]), $output)) {
throw new \RuntimeException('Could not warmup cache, missing permissions?');
}
} catch (\Exception $ex) {
$io->error($ex->getMessage());
return self::ERROR_CACHE_WARMUP;
}
return 0;
}
}