-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommand.php
More file actions
136 lines (114 loc) · 4.31 KB
/
Command.php
File metadata and controls
136 lines (114 loc) · 4.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php
declare(strict_types=1);
namespace TypistTech\PhpMatrix\Console;
use InvalidArgumentException;
use RuntimeException;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command as BaseCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use TypistTech\PhpMatrix\Versions;
#[AsCommand(
name: 'php-matrix',
description: 'List PHP versions that satisfy the given constraint.',
)]
class Command extends BaseCommand
{
private const string HELP = <<<'HELP'
Want to support php-matrix?
---------------------------
Here are some ways you can help:
- Star or contribute to <info>php-matrix</info> on GitHub:
<href=https://github.com/typisttech/php-matrix>https://github.com/typisttech/php-matrix</>
- Sponsor <comment>Tang Rufus</comment> via GitHub:
<href=https://github.com/sponsors/tangrufus>https://github.com/sponsors/tangrufus</>
HELP;
private const string CONSTRAINT_ARGUMENT_NAME = 'constraint';
private const string CONSTRAINT_ARGUMENT_DESCRIPTION = 'The version constraint.';
private const string SOURCE_OPTION_NAME = 'source';
private const string MODE_OPTION_NAME = 'mode';
public function __construct(
private readonly MatrixFactory $matrixFactory = new MatrixFactory,
) {
parent::__construct();
}
protected function configure(): void
{
$this
->setHelp(self::HELP)
->addArgument(
self::CONSTRAINT_ARGUMENT_NAME,
InputArgument::REQUIRED,
self::CONSTRAINT_ARGUMENT_DESCRIPTION
)
->addOption(
self::SOURCE_OPTION_NAME,
null,
InputOption::VALUE_REQUIRED,
Source::description(),
Source::Auto->value,
)->addOption(
self::MODE_OPTION_NAME,
null,
InputOption::VALUE_REQUIRED,
Mode::description(),
Mode::MinorOnly->value,
);
}
protected function initialize(InputInterface $input, OutputInterface $output): void
{
parent::initialize($input, $output);
$sourceOpt = $input->getOption(self::SOURCE_OPTION_NAME);
$source = Source::tryFrom($sourceOpt);
if ($source === null) {
$message = sprintf(
'Error! Invalid %1$s \'%2$s\'. Available %1$ss: [%3$s]',
self::SOURCE_OPTION_NAME,
$sourceOpt,
implode(', ', array_column(Source::cases(), 'value')),
);
throw new InvalidArgumentException($message);
}
$modeOpt = $input->getOption(self::MODE_OPTION_NAME);
$mode = Mode::tryFrom($modeOpt);
if ($mode === null) {
$message = sprintf(
'Error! Invalid %1$s \'%2$s\'. Available %1$ss: [%3$s]',
self::MODE_OPTION_NAME,
$modeOpt,
implode(', ', array_column(Mode::cases(), 'value')),
);
throw new InvalidArgumentException($message);
}
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$source = Source::from(
$input->getOption(self::SOURCE_OPTION_NAME)
);
$mode = Mode::from(
$input->getOption(self::MODE_OPTION_NAME)
);
$matrix = $this->matrixFactory->make($source, $mode);
$constraint = $input->getArgument(self::CONSTRAINT_ARGUMENT_NAME);
$versions = $matrix->satisfiedBy($constraint);
if (empty($versions)) {
throw new RuntimeException(
sprintf("Error! No PHP versions could satisfy the constraint '%s'.", $constraint)
);
}
$result = json_encode(
(object) [
self::CONSTRAINT_ARGUMENT_NAME => $constraint,
'versions' => Versions::sort(...$versions),
'lowest' => Versions::lowest(...$versions),
'highest' => Versions::highest(...$versions),
],
JSON_THROW_ON_ERROR | JSON_PRETTY_PRINT
);
$output->writeln($result);
return BaseCommand::SUCCESS;
}
}