mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
143 lines
5.3 KiB
PHP
143 lines
5.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\Bundle\FrameworkBundle\Command;
|
|
|
|
use Symfony\Component\Console\Helper\Helper;
|
|
use Symfony\Component\Console\Helper\TableSeparator;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
|
use Symfony\Component\HttpKernel\Kernel;
|
|
use Symfony\Component\HttpKernel\KernelInterface;
|
|
|
|
/**
|
|
* A console command to display information about the current installation.
|
|
*
|
|
* @author Roland Franssen <franssen.roland@gmail.com>
|
|
*
|
|
* @final since version 3.4
|
|
*/
|
|
class AboutCommand extends ContainerAwareCommand
|
|
{
|
|
protected static $defaultName = 'about';
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function configure()
|
|
{
|
|
$this
|
|
->setDescription('Displays information about the current project')
|
|
->setHelp(<<<'EOT'
|
|
The <info>%command.name%</info> command displays information about the current Symfony project.
|
|
|
|
The <info>PHP</info> section displays important configuration that could affect your application. The values might
|
|
be different between web and CLI.
|
|
|
|
The <info>Environment</info> section displays the current environment variables managed by Symfony Dotenv. It will not
|
|
be shown if no variables were found. The values might be different between web and CLI.
|
|
EOT
|
|
)
|
|
;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
{
|
|
$io = new SymfonyStyle($input, $output);
|
|
|
|
/** @var $kernel KernelInterface */
|
|
$kernel = $this->getApplication()->getKernel();
|
|
|
|
$rows = [
|
|
['<info>Symfony</>'],
|
|
new TableSeparator(),
|
|
['Version', Kernel::VERSION],
|
|
['End of maintenance', Kernel::END_OF_MAINTENANCE.(self::isExpired(Kernel::END_OF_MAINTENANCE) ? ' <error>Expired</>' : '')],
|
|
['End of life', Kernel::END_OF_LIFE.(self::isExpired(Kernel::END_OF_LIFE) ? ' <error>Expired</>' : '')],
|
|
new TableSeparator(),
|
|
['<info>Kernel</>'],
|
|
new TableSeparator(),
|
|
['Type', \get_class($kernel)],
|
|
['Name', $kernel->getName()],
|
|
['Environment', $kernel->getEnvironment()],
|
|
['Debug', $kernel->isDebug() ? 'true' : 'false'],
|
|
['Charset', $kernel->getCharset()],
|
|
['Root directory', self::formatPath($kernel->getRootDir(), $kernel->getProjectDir())],
|
|
['Cache directory', self::formatPath($kernel->getCacheDir(), $kernel->getProjectDir()).' (<comment>'.self::formatFileSize($kernel->getCacheDir()).'</>)'],
|
|
['Log directory', self::formatPath($kernel->getLogDir(), $kernel->getProjectDir()).' (<comment>'.self::formatFileSize($kernel->getLogDir()).'</>)'],
|
|
new TableSeparator(),
|
|
['<info>PHP</>'],
|
|
new TableSeparator(),
|
|
['Version', \PHP_VERSION],
|
|
['Architecture', (\PHP_INT_SIZE * 8).' bits'],
|
|
['Intl locale', class_exists('Locale', false) && \Locale::getDefault() ? \Locale::getDefault() : 'n/a'],
|
|
['Timezone', date_default_timezone_get().' (<comment>'.(new \DateTime())->format(\DateTime::W3C).'</>)'],
|
|
['OPcache', \extension_loaded('Zend OPcache') && filter_var(ini_get('opcache.enable'), \FILTER_VALIDATE_BOOLEAN) ? 'true' : 'false'],
|
|
['APCu', \extension_loaded('apcu') && filter_var(ini_get('apc.enabled'), \FILTER_VALIDATE_BOOLEAN) ? 'true' : 'false'],
|
|
['Xdebug', \extension_loaded('xdebug') ? 'true' : 'false'],
|
|
];
|
|
|
|
if ($dotenv = self::getDotenvVars()) {
|
|
$rows = array_merge($rows, [
|
|
new TableSeparator(),
|
|
['<info>Environment (.env)</>'],
|
|
new TableSeparator(),
|
|
], array_map(function ($value, $name) {
|
|
return [$name, $value];
|
|
}, $dotenv, array_keys($dotenv)));
|
|
}
|
|
|
|
$io->table([], $rows);
|
|
}
|
|
|
|
private static function formatPath($path, $baseDir = null)
|
|
{
|
|
return null !== $baseDir ? preg_replace('~^'.preg_quote($baseDir, '~').'~', '.', $path) : $path;
|
|
}
|
|
|
|
private static function formatFileSize($path)
|
|
{
|
|
if (is_file($path)) {
|
|
$size = filesize($path) ?: 0;
|
|
} else {
|
|
$size = 0;
|
|
foreach (new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($path, \RecursiveDirectoryIterator::SKIP_DOTS | \RecursiveDirectoryIterator::FOLLOW_SYMLINKS)) as $file) {
|
|
$size += $file->getSize();
|
|
}
|
|
}
|
|
|
|
return Helper::formatMemory($size);
|
|
}
|
|
|
|
private static function isExpired($date)
|
|
{
|
|
$date = \DateTime::createFromFormat('d/m/Y', '01/'.$date);
|
|
|
|
return false !== $date && new \DateTime() > $date->modify('last day of this month 23:59:59');
|
|
}
|
|
|
|
private static function getDotenvVars()
|
|
{
|
|
$vars = [];
|
|
foreach (explode(',', getenv('SYMFONY_DOTENV_VARS')) as $name) {
|
|
if ('' !== $name && false !== $value = getenv($name)) {
|
|
$vars[$name] = $value;
|
|
}
|
|
}
|
|
|
|
return $vars;
|
|
}
|
|
}
|