-
Couldn't load subscription status.
- Fork 17
Added sorting options to ibexa:debug:config
#631
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
base: main
Are you sure you want to change the base?
Changes from all commits
0d8ec98
9e3d91a
0fa0622
0b3ce1d
907d617
7202bcd
5ea5d4d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,6 +8,7 @@ | |
| namespace Ibexa\Bundle\Core\Command; | ||
|
|
||
| use Ibexa\Contracts\Core\SiteAccess\ConfigResolverInterface; | ||
| use Ibexa\Core\Base\Exceptions\InvalidArgumentException; | ||
| use Ibexa\Core\MVC\Symfony\SiteAccess; | ||
| use Symfony\Component\Console\Attribute\AsCommand; | ||
| use Symfony\Component\Console\Command\Command; | ||
|
|
@@ -69,6 +70,18 @@ public function configure(): void | |
| InputOption::VALUE_REQUIRED, | ||
| 'Set a different namespace than the default "ibexa.site_access.config" used by SiteAccess settings.' | ||
| ); | ||
| $this->addOption( | ||
| 'sort', | ||
| null, | ||
| InputOption::VALUE_REQUIRED, | ||
| 'Sort list of hashes by this key, ascending. For example: --sort position' | ||
| ); | ||
| $this->addOption( | ||
| 'reverse-sort', | ||
| null, | ||
| InputOption::VALUE_NONE, | ||
| 'Reverse the sorting to descending. For example: --sort priority --reverse-sort' | ||
| ); | ||
| $this->setHelp( | ||
| <<<EOM | ||
| Outputs a given config resolver parameter, more commonly known as a SiteAccess setting. | ||
|
|
@@ -93,8 +106,34 @@ protected function execute(InputInterface $input, OutputInterface $output): int | |
| $parameter = $input->getArgument('parameter'); | ||
| $namespace = $input->getOption('namespace'); | ||
| $scope = $input->getOption('scope'); | ||
| $sort = $input->getOption('sort'); | ||
| $parameterData = $this->configResolver->getParameter($parameter, $namespace, $scope); | ||
|
|
||
| if (null !== $sort && !empty($parameterData)) { | ||
| if (!is_array($parameterData)) { | ||
| throw new InvalidArgumentException('--sort', "'$parameter' isn't a list. Sort can be used only on a list."); | ||
| } | ||
| if (!array_is_list($parameterData)) { | ||
| throw new InvalidArgumentException('--sort', "'$parameter' is a hash but sort can be used only on a list (an array with numeral keys incremented from zero)."); | ||
| } | ||
| foreach ($parameterData as $item) { | ||
| if (!is_array($item) || array_is_list($item)) { | ||
| throw new InvalidArgumentException('--sort', "'$parameter' list items aren't all hashes. Sort can be used only on a list of hashes."); | ||
| } | ||
| if (!array_key_exists($sort, $item)) { | ||
| throw new InvalidArgumentException('--sort', "'$sort' property doesn't exist on each '$parameter' list item."); | ||
| } | ||
| if (!is_scalar($item[$sort])) { | ||
| throw new InvalidArgumentException('--sort', "'$sort' properties aren't always scalar and can't be sorted."); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of letting these input-validation exceptions bubble, you could catch them, print a styled error, and return Command::INVALID or use Command::FAILURE for runtime errors. |
||
| } | ||
| } | ||
| if ($input->getOption('reverse-sort')) { | ||
| usort($parameterData, static fn (array $a, array $b): int => $b[$sort] <=> $a[$sort]); | ||
| } else { | ||
| usort($parameterData, static fn (array $a, array $b): int => $a[$sort] <=> $b[$sort]); | ||
| } | ||
| } | ||
|
|
||
| // In case of json output return early with no newlines and only the parameter data | ||
| if ($input->getOption('json')) { | ||
| $output->write(json_encode($parameterData)); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For CLI argument validation you could use a
Symfony\Component\Console\Exception\InvalidArgumentException. It integrates better with Console error styling and exit codes.