| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-core/Classes/Command/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3/cms-core/Classes/Command/ListCommand.php |
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Core\Command;
use Psr\Container\ContainerInterface;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Command\ListCommand as SymfonyListCommand;
use Symfony\Component\Console\Helper\DescriptorHelper;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use TYPO3\CMS\Core\Command\Descriptor\TextDescriptor;
use TYPO3\CMS\Core\Console\CommandRegistry;
use TYPO3\CMS\Core\Core\BootService;
/**
* ListCommand displays the list of all available commands for the application.
*/
class ListCommand extends SymfonyListCommand
{
protected ContainerInterface $failsafeContainer;
protected BootService $bootService;
public function __construct(ContainerInterface $failsafeContainer, BootService $bootService)
{
$this->failsafeContainer = $failsafeContainer;
$this->bootService = $bootService;
parent::__construct();
}
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output): int
{
$degraded = false;
try {
$container = $this->bootService->getContainer();
} catch (\Throwable $e) {
$container = $this->failsafeContainer;
$degraded = true;
}
$commandRegistry = $container->get(CommandRegistry::class);
$helper = new DescriptorHelper();
$helper->register('txt', new TextDescriptor($commandRegistry, $degraded));
$helper->describe($output, $this->getApplication(), [
'format' => $input->getOption('format'),
'raw_text' => $input->getOption('raw'),
'namespace' => $input->getArgument('namespace'),
]);
return Command::SUCCESS;
}
}