Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@..
Decoded Output download
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace RectorPrefix202406\Symfony\Component\Console\Command;
use RectorPrefix202406\Symfony\Component\Console\Attribute\AsCommand;
use RectorPrefix202406\Symfony\Component\Console\Input\InputArgument;
use RectorPrefix202406\Symfony\Component\Console\Input\InputInterface;
use RectorPrefix202406\Symfony\Component\Console\Input\InputOption;
use RectorPrefix202406\Symfony\Component\Console\Output\ConsoleOutputInterface;
use RectorPrefix202406\Symfony\Component\Console\Output\OutputInterface;
use RectorPrefix202406\Symfony\Component\Process\Process;
/**
* Dumps the completion script for the current shell.
*
* @author Wouter de Jong <[email protected]>
*/
final class DumpCompletionCommand extends Command
{
/**
* @deprecated since Symfony 6.1
*/
protected static $defaultName = 'completion';
/**
* @deprecated since Symfony 6.1
*/
protected static $defaultDescription = 'Dump the shell completion script';
/**
* @var mixed[]
*/
private $supportedShells;
protected function configure() : void
{
$fullCommand = $_SERVER['PHP_SELF'];
$commandName = asename($fullCommand);
$fullCommand = @
ealpath($fullCommand) ?: $fullCommand;
$shell = $this->guessShell();
switch ($shell) {
case 'fish':
[$rcFile, $completionFile] = ['~/.config/fish/config.fish', "/etc/fish/completions/{$commandName}.fish"];
break;
case 'zsh':
[$rcFile, $completionFile] = ['~/.zshrc', '$fpath[1]/_' . $commandName];
break;
default:
[$rcFile, $completionFile] = ['~/.bashrc', "/etc/bash_completion.d/{$commandName}"];
break;
}
$supportedShells = \implode(', ', $this->getSupportedShells());
$this->setHelp(<<<EOH
The <info>%command.name%</> command dumps the shell completion script required
to use shell autocompletion (currently, {$supportedShells} completion are supported).
<comment>Static installation
-------------------</>
Dump the script to a global completion file and restart your shell:
<info>%command.full_name% {$shell} | sudo tee {$completionFile}</>
Or dump the script to a local file and source it:
<info>%command.full_name% {$shell} > completion.sh</>
<comment># source the file whenever you use the project</>
<info>source completion.sh</>
<comment># or add this line at the end of your "{$rcFile}" file:</>
<info>source /path/to/completion.sh</>
<comment>Dynamic installation
--------------------</>
Add this to the end of your shell configuration file (e.g. <info>"{$rcFile}"</>):
<info>eval "\$({$fullCommand} completion {$shell})"</>
EOH
)->addArgument('shell', InputArgument::OPTIONAL, 'The shell type (e.g. "bash"), the value of the "$SHELL" env var will be used if this is not given', null, \Closure::fromCallable([$this, 'getSupportedShells']))->addOption('debug', null, InputOption::VALUE_NONE, 'Tail the completion debug log');
}
protected function execute(InputInterface $input, OutputInterface $output) : int
{
$commandName = asename($_SERVER['argv'][0]);
if ($input->getOption('debug')) {
$this->tailDebugLog($commandName, $output);
return 0;
}
$shell = $input->getArgument('shell') ?? self::guessShell();
$completionFile = __DIR__ . '/../Resources/completion.' . $shell;
if (!ile_exists($completionFile)) {
$supportedShells = $this->getSupportedShells();
if ($output instanceof ConsoleOutputInterface) {
$output = $output->getErrorOutput();
}
if ($shell) {
$output->writeln(\sprintf('<error>Detected shell "%s", which is not supported by Symfony shell completion (supported shells: "%s").</>', $shell, \implode('", "', $supportedShells)));
} else {
$output->writeln(\sprintf('<error>Shell not detected, Symfony shell completion only supports "%s").</>', \implode('", "', $supportedShells)));
}
return 2;
}
$output->write(\str_replace(['{{ COMMAND_NAME }}', '{{ VERSION }}'], [$commandName, CompleteCommand::COMPLETION_API_VERSION], ile_get_contents($completionFile)));
return 0;
}
private static function guessShell() : string
{
return asename($_SERVER['SHELL'] ?? '');
}
private function tailDebugLog(string $commandName, OutputInterface $output) : void
{
$debugFile = \sys_get_temp_dir() . '/sf_' . $commandName . '.log';
if (!ile_exists($debugFile)) {
ouch($debugFile);
}
$process = new Process(['tail', '-f', $debugFile], null, null, null, 0);
$process->run(function (string $type, string $line) use($output) : void {
$output->write($line);
});
}
/**
* @return string[]
*/
private function getSupportedShells() : array
{
if (isset($this->supportedShells)) {
return $this->supportedShells;
}
$shells = [];
foreach (new \DirectoryIterator(__DIR__ . '/../Resources/') as $file) {
if (\strncmp($file->getBasename(), 'completion.', \strlen('completion.')) === 0 && $file->isFile()) {
$shells[] = $file->getExtension();
}
}
\sort($shells);
return $this->supportedShells = $shells;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace RectorPrefix202406\Symfony\Component\Console\Command;
use RectorPrefix202406\Symfony\Component\Console\Attribute\AsCommand;
use RectorPrefix202406\Symfony\Component\Console\Input\InputArgument;
use RectorPrefix202406\Symfony\Component\Console\Input\InputInterface;
use RectorPrefix202406\Symfony\Component\Console\Input\InputOption;
use RectorPrefix202406\Symfony\Component\Console\Output\ConsoleOutputInterface;
use RectorPrefix202406\Symfony\Component\Console\Output\OutputInterface;
use RectorPrefix202406\Symfony\Component\Process\Process;
/**
* Dumps the completion script for the current shell.
*
* @author Wouter de Jong <[email protected]>
*/
final class DumpCompletionCommand extends Command
{
/**
* @deprecated since Symfony 6.1
*/
protected static $defaultName = 'completion';
/**
* @deprecated since Symfony 6.1
*/
protected static $defaultDescription = 'Dump the shell completion script';
/**
* @var mixed[]
*/
private $supportedShells;
protected function configure() : void
{
$fullCommand = $_SERVER['PHP_SELF'];
$commandName = \basename($fullCommand);
$fullCommand = @\realpath($fullCommand) ?: $fullCommand;
$shell = $this->guessShell();
switch ($shell) {
case 'fish':
[$rcFile, $completionFile] = ['~/.config/fish/config.fish', "/etc/fish/completions/{$commandName}.fish"];
break;
case 'zsh':
[$rcFile, $completionFile] = ['~/.zshrc', '$fpath[1]/_' . $commandName];
break;
default:
[$rcFile, $completionFile] = ['~/.bashrc', "/etc/bash_completion.d/{$commandName}"];
break;
}
$supportedShells = \implode(', ', $this->getSupportedShells());
$this->setHelp(<<<EOH
The <info>%command.name%</> command dumps the shell completion script required
to use shell autocompletion (currently, {$supportedShells} completion are supported).
<comment>Static installation
-------------------</>
Dump the script to a global completion file and restart your shell:
<info>%command.full_name% {$shell} | sudo tee {$completionFile}</>
Or dump the script to a local file and source it:
<info>%command.full_name% {$shell} > completion.sh</>
<comment># source the file whenever you use the project</>
<info>source completion.sh</>
<comment># or add this line at the end of your "{$rcFile}" file:</>
<info>source /path/to/completion.sh</>
<comment>Dynamic installation
--------------------</>
Add this to the end of your shell configuration file (e.g. <info>"{$rcFile}"</>):
<info>eval "\$({$fullCommand} completion {$shell})"</>
EOH
)->addArgument('shell', InputArgument::OPTIONAL, 'The shell type (e.g. "bash"), the value of the "$SHELL" env var will be used if this is not given', null, \Closure::fromCallable([$this, 'getSupportedShells']))->addOption('debug', null, InputOption::VALUE_NONE, 'Tail the completion debug log');
}
protected function execute(InputInterface $input, OutputInterface $output) : int
{
$commandName = \basename($_SERVER['argv'][0]);
if ($input->getOption('debug')) {
$this->tailDebugLog($commandName, $output);
return 0;
}
$shell = $input->getArgument('shell') ?? self::guessShell();
$completionFile = __DIR__ . '/../Resources/completion.' . $shell;
if (!\file_exists($completionFile)) {
$supportedShells = $this->getSupportedShells();
if ($output instanceof ConsoleOutputInterface) {
$output = $output->getErrorOutput();
}
if ($shell) {
$output->writeln(\sprintf('<error>Detected shell "%s", which is not supported by Symfony shell completion (supported shells: "%s").</>', $shell, \implode('", "', $supportedShells)));
} else {
$output->writeln(\sprintf('<error>Shell not detected, Symfony shell completion only supports "%s").</>', \implode('", "', $supportedShells)));
}
return 2;
}
$output->write(\str_replace(['{{ COMMAND_NAME }}', '{{ VERSION }}'], [$commandName, CompleteCommand::COMPLETION_API_VERSION], \file_get_contents($completionFile)));
return 0;
}
private static function guessShell() : string
{
return \basename($_SERVER['SHELL'] ?? '');
}
private function tailDebugLog(string $commandName, OutputInterface $output) : void
{
$debugFile = \sys_get_temp_dir() . '/sf_' . $commandName . '.log';
if (!\file_exists($debugFile)) {
\touch($debugFile);
}
$process = new Process(['tail', '-f', $debugFile], null, null, null, 0);
$process->run(function (string $type, string $line) use($output) : void {
$output->write($line);
});
}
/**
* @return string[]
*/
private function getSupportedShells() : array
{
if (isset($this->supportedShells)) {
return $this->supportedShells;
}
$shells = [];
foreach (new \DirectoryIterator(__DIR__ . '/../Resources/') as $file) {
if (\strncmp($file->getBasename(), 'completion.', \strlen('completion.')) === 0 && $file->isFile()) {
$shells[] = $file->getExtension();
}
}
\sort($shells);
return $this->supportedShells = $shells;
}
}
Function Calls
None |
Stats
MD5 | fa270ead2de8ed361b092522aec10eb0 |
Eval Count | 0 |
Decode Time | 91 ms |