Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add an inspect command #868

Merged
merged 3 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions phpstan.neon.dist
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,5 @@ parameters:
path: 'tests/Configuration/DefaultConfigurationTest.php'
- message: '#Cannot access offset#'
path: 'tests/AutoReview/GAE2ECollector.php'
- message: '#normalizeSymbolsRegistryReference#'
path: 'tests/Console/Command/AddInspectCommandIntegrationTest.php'
6 changes: 6 additions & 0 deletions src/Console/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
use Fidry\Console\Application\Application as FidryApplication;
use Humbug\PhpScoper\Console\Command\AddPrefixCommand;
use Humbug\PhpScoper\Console\Command\InitCommand;
use Humbug\PhpScoper\Console\Command\InspectCommand;
use Humbug\PhpScoper\Console\Command\InspectSymbolCommand;
use Humbug\PhpScoper\Container;
use Symfony\Component\Console\Helper\FormatterHelper;
Expand Down Expand Up @@ -103,6 +104,11 @@ public function getCommands(): array
$this,
$this->container->getConfigurationFactory(),
),
new InspectCommand(
$this->container->getFileSystem(),
$this->container->getScoperFactory(),
$this->container->getConfigurationFactory(),
),
new InspectSymbolCommand(
$this->container->getFileSystem(),
$this->container->getConfigurationFactory(),
Expand Down
252 changes: 252 additions & 0 deletions src/Console/Command/InspectCommand.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,252 @@
<?php

declare(strict_types=1);

/*
* This file is part of the humbug/php-scoper package.
*
* Copyright (c) 2017 Théo FIDRY <[email protected]>,
* Pádraic Brady <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Humbug\PhpScoper\Console\Command;

use Fidry\Console\Command\Command;
use Fidry\Console\Command\CommandAware;
use Fidry\Console\Command\CommandAwareness;
use Fidry\Console\Command\Configuration as CommandConfiguration;
use Fidry\Console\ExitCode;
use Fidry\Console\Input\IO;
use Humbug\PhpScoper\Configuration\Configuration;
use Humbug\PhpScoper\Configuration\ConfigurationFactory;
use Humbug\PhpScoper\Console\ConfigLoader;
use Humbug\PhpScoper\Scoper\ScoperFactory;
use Humbug\PhpScoper\Symbol\SymbolsRegistry;
use InvalidArgumentException;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\Filesystem\Path;
use Symfony\Component\VarDumper\Cloner\VarCloner;
use Symfony\Component\VarDumper\Dumper\CliDumper;
use function array_key_exists;
use function Safe\getcwd;
use function sprintf;
use const DIRECTORY_SEPARATOR;

/**
* @private
*/
final class InspectCommand implements Command, CommandAware
{
use CommandAwareness;

private const FILE_PATH_ARG = 'file-path';
private const PREFIX_OPT = 'prefix';
private const CONFIG_FILE_OPT = 'config';
private const NO_CONFIG_OPT = 'no-config';

public function __construct(
private readonly Filesystem $fileSystem,
private readonly ScoperFactory $scoperFactory,
private readonly ConfigurationFactory $configFactory,
) {
}

public function getConfiguration(): CommandConfiguration
{
return new CommandConfiguration(
'inspect',
'Outputs the processed file content based on the configuration.',
'',
[
new InputArgument(
self::FILE_PATH_ARG,
InputArgument::REQUIRED,
'The file path to process.',
),
],
[
ChangeableDirectory::createOption(),
new InputOption(
self::PREFIX_OPT,
'p',
InputOption::VALUE_REQUIRED,
'The namespace prefix to add.',
'',
),
new InputOption(
self::CONFIG_FILE_OPT,
'c',
InputOption::VALUE_REQUIRED,
sprintf(
'Configuration file. Will use "%s" if found by default.',
ConfigurationFactory::DEFAULT_FILE_NAME,
),
),
new InputOption(
self::NO_CONFIG_OPT,
null,
InputOption::VALUE_NONE,
'Do not look for a configuration file.',
),
],
);
}

public function execute(IO $io): int
{
$io->newLine();

ChangeableDirectory::changeWorkingDirectory($io);

// Only get current working directory _after_ we changed to the desired
// working directory
$cwd = getcwd();

$filePath = $this->getFilePath($io, $cwd);
$config = $this->retrieveConfig($io, [$filePath], $cwd);

if (array_key_exists($filePath, $config->getExcludedFilesWithContents())) {
$io->writeln('The file was ignored as part of the excluded files.');

return ExitCode::SUCCESS;
}

$symbolsRegistry = new SymbolsRegistry();
$fileContents = $config->getFilesWithContents()[$filePath][1];

$scoppedContents = $this->scopeFile($config, $symbolsRegistry, $filePath, $fileContents);

$this->printScoppedContents($io, $scoppedContents, $symbolsRegistry);

return ExitCode::SUCCESS;
}

/**
* @param list<non-empty-string> $paths
*/
private function retrieveConfig(IO $io, array $paths, string $cwd): Configuration
{
$configLoader = new ConfigLoader(
$this->getCommandRegistry(),
$this->fileSystem,
$this->configFactory,
);

return $configLoader->loadConfig(
$io,
$io->getOption(self::PREFIX_OPT)->asString(),
$io->getOption(self::NO_CONFIG_OPT)->asBoolean(),
$this->getConfigFilePath($io, $cwd),
ConfigurationFactory::DEFAULT_FILE_NAME,
true,
$paths,
$cwd,
);
}

/**
* @return non-empty-string|null
*/
private function getConfigFilePath(IO $io, string $cwd): ?string
{
$configFilePath = (string) $io->getOption(self::CONFIG_FILE_OPT)->asNullableString();

return '' === $configFilePath ? null : $this->canonicalizePath($configFilePath, $cwd);
}

/**
* @return non-empty-string
*/
private function getFilePath(IO $io, string $cwd): string
{
return $this->canonicalizePath(
$io->getArgument(self::FILE_PATH_ARG)->asNonEmptyString(),
$cwd,
);
}

/**
* @return non-empty-string Absolute canonical path
*/
private function canonicalizePath(string $path, string $cwd): string
{
$canonicalPath = Path::canonicalize(
$this->fileSystem->isAbsolutePath($path)
? $path
: $cwd.DIRECTORY_SEPARATOR.$path,
);

if ('' === $canonicalPath) {
throw new InvalidArgumentException('Cannot canonicalize empty path and empty working directory');
}

return $canonicalPath;
}

private function scopeFile(
Configuration $config,
SymbolsRegistry $symbolsRegistry,
string $filePath,
string $fileContents,
): string {
$scoper = $this->scoperFactory->createScoper(
$config,
$symbolsRegistry,
);

return $scoper->scope(
$filePath,
$fileContents,
);
}

private function printScoppedContents(
IO $io,
string $scoppedContents,
SymbolsRegistry $symbolsRegistry,
): void {
if ($io->isQuiet()) {
$io->writeln($scoppedContents, OutputInterface::VERBOSITY_QUIET);
} else {
$io->writeln([
'Scopped contents:',
'',
'<comment>"""</comment>',
$scoppedContents,
'<comment>"""</comment>',
]);

$io->writeln([
'',
'Symbols Registry:',
'',
'<comment>"""</comment>',
self::exportSymbolsRegistry($symbolsRegistry, $io),
'<comment>"""</comment>',
]);
}
}

private static function exportSymbolsRegistry(SymbolsRegistry $symbolsRegistry, IO $io): string
{
$cloner = new VarCloner();
$cloner->setMaxItems(-1);
$cloner->setMaxString(-1);

$cliDumper = new CliDumper();
if ($io->isDecorated()) {
$cliDumper->setColors(true);
}

return (string) $cliDumper->dump(
$cloner->cloneVar($symbolsRegistry),
true,
);
}
}
Loading
Loading