|
| 1 | +<?php |
| 2 | + |
| 3 | +declare(strict_types=1); |
| 4 | + |
| 5 | +namespace SPC\command; |
| 6 | + |
| 7 | +use SPC\store\FileSystem; |
| 8 | +use Symfony\Component\Console\Attribute\AsCommand; |
| 9 | +use Symfony\Component\Console\Input\InputArgument; |
| 10 | +use Symfony\Component\Console\Input\InputOption; |
| 11 | + |
| 12 | +#[AsCommand(name: 'dump-extensions', description: 'Determines the required php extensions')] |
| 13 | +class DumpExtensionsCommand extends BaseCommand |
| 14 | +{ |
| 15 | + protected bool $no_motd = true; |
| 16 | + |
| 17 | + public function configure(): void |
| 18 | + { |
| 19 | + // path to project files or specific composer file |
| 20 | + $this->addArgument('path', InputArgument::OPTIONAL, 'Path to project root', '.'); |
| 21 | + $this->addOption('format', 'F', InputOption::VALUE_REQUIRED, 'Parsed output format', 'default'); |
| 22 | + // output zero extension replacement rather than exit as failure |
| 23 | + $this->addOption('no-ext-output', 'N', InputOption::VALUE_REQUIRED, 'When no extensions found, output default combination (comma separated)'); |
| 24 | + // no dev |
| 25 | + $this->addOption('no-dev', null, null, 'Do not include dev dependencies'); |
| 26 | + // no spc filter |
| 27 | + $this->addOption('no-spc-filter', 'S', null, 'Do not use SPC filter to determine the required extensions'); |
| 28 | + } |
| 29 | + |
| 30 | + public function handle(): int |
| 31 | + { |
| 32 | + $path = FileSystem::convertPath($this->getArgument('path')); |
| 33 | + |
| 34 | + $path_installed = FileSystem::convertPath(rtrim($path, '/\\') . '/vendor/composer/installed.json'); |
| 35 | + $path_lock = FileSystem::convertPath(rtrim($path, '/\\') . '/composer.lock'); |
| 36 | + |
| 37 | + $ext_installed = $this->extractFromInstalledJson($path_installed, !$this->getOption('no-dev')); |
| 38 | + if ($ext_installed === null) { |
| 39 | + if ($this->getOption('format') === 'default') { |
| 40 | + $this->output->writeln('<comment>vendor/composer/installed.json load failed, skipped</comment>'); |
| 41 | + } |
| 42 | + $ext_installed = []; |
| 43 | + } |
| 44 | + |
| 45 | + $ext_lock = $this->extractFromComposerLock($path_lock, !$this->getOption('no-dev')); |
| 46 | + if ($ext_lock === null) { |
| 47 | + $this->output->writeln('<error>composer.lock load failed</error>'); |
| 48 | + return static::FAILURE; |
| 49 | + } |
| 50 | + |
| 51 | + $extensions = array_unique(array_merge($ext_installed, $ext_lock)); |
| 52 | + sort($extensions); |
| 53 | + |
| 54 | + if (empty($extensions)) { |
| 55 | + if ($this->getOption('no-ext-output')) { |
| 56 | + $this->outputExtensions(explode(',', $this->getOption('no-ext-output'))); |
| 57 | + return static::SUCCESS; |
| 58 | + } |
| 59 | + $this->output->writeln('<error>No extensions found</error>'); |
| 60 | + return static::FAILURE; |
| 61 | + } |
| 62 | + |
| 63 | + $this->outputExtensions($extensions); |
| 64 | + return static::SUCCESS; |
| 65 | + } |
| 66 | + |
| 67 | + private function filterExtensions(array $requirements): array |
| 68 | + { |
| 69 | + return array_map( |
| 70 | + fn ($key) => substr($key, 4), |
| 71 | + array_keys( |
| 72 | + array_filter($requirements, function ($key) { |
| 73 | + return str_starts_with($key, 'ext-'); |
| 74 | + }, ARRAY_FILTER_USE_KEY) |
| 75 | + ) |
| 76 | + ); |
| 77 | + } |
| 78 | + |
| 79 | + private function loadJson(string $file): array|bool |
| 80 | + { |
| 81 | + if (!file_exists($file)) { |
| 82 | + return false; |
| 83 | + } |
| 84 | + |
| 85 | + $data = json_decode(file_get_contents($file), true); |
| 86 | + if (!$data) { |
| 87 | + return false; |
| 88 | + } |
| 89 | + return $data; |
| 90 | + } |
| 91 | + |
| 92 | + private function extractFromInstalledJson(string $file, bool $include_dev = true): ?array |
| 93 | + { |
| 94 | + if (!($data = $this->loadJson($file))) { |
| 95 | + return null; |
| 96 | + } |
| 97 | + |
| 98 | + $packages = $data['packages'] ?? []; |
| 99 | + |
| 100 | + if (!$include_dev) { |
| 101 | + $packages = array_filter($packages, fn ($package) => !in_array($package['name'], $data['dev-package-names'] ?? [])); |
| 102 | + } |
| 103 | + |
| 104 | + return array_merge( |
| 105 | + ...array_map(fn ($x) => isset($x['require']) ? $this->filterExtensions($x['require']) : [], $packages) |
| 106 | + ); |
| 107 | + } |
| 108 | + |
| 109 | + private function extractFromComposerLock(string $file, bool $include_dev = true): ?array |
| 110 | + { |
| 111 | + if (!($data = $this->loadJson($file))) { |
| 112 | + return null; |
| 113 | + } |
| 114 | + |
| 115 | + // get packages ext |
| 116 | + $packages = $data['packages'] ?? []; |
| 117 | + $exts = array_merge( |
| 118 | + ...array_map(fn ($package) => $this->filterExtensions($package['require'] ?? []), $packages) |
| 119 | + ); |
| 120 | + |
| 121 | + // get dev packages ext |
| 122 | + if ($include_dev) { |
| 123 | + $packages = $data['packages-dev'] ?? []; |
| 124 | + $exts = array_merge( |
| 125 | + $exts, |
| 126 | + ...array_map(fn ($package) => $this->filterExtensions($package['require'] ?? []), $packages) |
| 127 | + ); |
| 128 | + } |
| 129 | + |
| 130 | + // get require ext |
| 131 | + $platform = $data['platform'] ?? []; |
| 132 | + $exts = array_merge($exts, $this->filterExtensions($platform)); |
| 133 | + |
| 134 | + // get require-dev ext |
| 135 | + if ($include_dev) { |
| 136 | + $platform = $data['platform-dev'] ?? []; |
| 137 | + $exts = array_merge($exts, $this->filterExtensions($platform)); |
| 138 | + } |
| 139 | + |
| 140 | + return $exts; |
| 141 | + } |
| 142 | + |
| 143 | + private function outputExtensions(array $extensions): void |
| 144 | + { |
| 145 | + if (!$this->getOption('no-spc-filter')) { |
| 146 | + $extensions = $this->parseExtensionList($extensions); |
| 147 | + } |
| 148 | + switch ($this->getOption('format')) { |
| 149 | + case 'json': |
| 150 | + $this->output->writeln(json_encode($extensions, JSON_PRETTY_PRINT)); |
| 151 | + break; |
| 152 | + case 'text': |
| 153 | + $this->output->writeln(implode(',', $extensions)); |
| 154 | + break; |
| 155 | + default: |
| 156 | + $this->output->writeln('<info>Required PHP extensions' . ($this->getOption('no-dev') ? ' (without dev)' : '') . ':</info>'); |
| 157 | + $this->output->writeln(implode(',', $extensions)); |
| 158 | + } |
| 159 | + } |
| 160 | +} |
0 commit comments