123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\Form\Command;
- use Symfony\Component\Console\Command\Command;
- use Symfony\Component\Console\Exception\InvalidArgumentException;
- 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 Symfony\Component\Console\Style\SymfonyStyle;
- use Symfony\Component\Form\Console\Helper\DescriptorHelper;
- use Symfony\Component\Form\Extension\Core\CoreExtension;
- use Symfony\Component\Form\FormRegistryInterface;
- use Symfony\Component\Form\FormTypeInterface;
- use Symfony\Component\HttpKernel\Debug\FileLinkFormatter;
- /**
- * A console command for retrieving information about form types.
- *
- * @author Yonel Ceruto <yonelceruto@gmail.com>
- */
- class DebugCommand extends Command
- {
- protected static $defaultName = 'debug:form';
- private $formRegistry;
- private $namespaces;
- private $types;
- private $extensions;
- private $guessers;
- private $fileLinkFormatter;
- public function __construct(FormRegistryInterface $formRegistry, array $namespaces = ['Symfony\Component\Form\Extension\Core\Type'], array $types = [], array $extensions = [], array $guessers = [], FileLinkFormatter $fileLinkFormatter = null)
- {
- parent::__construct();
- $this->formRegistry = $formRegistry;
- $this->namespaces = $namespaces;
- $this->types = $types;
- $this->extensions = $extensions;
- $this->guessers = $guessers;
- $this->fileLinkFormatter = $fileLinkFormatter;
- }
- /**
- * {@inheritdoc}
- */
- protected function configure()
- {
- $this
- ->setDefinition([
- new InputArgument('class', InputArgument::OPTIONAL, 'The form type class'),
- new InputArgument('option', InputArgument::OPTIONAL, 'The form type option'),
- new InputOption('show-deprecated', null, InputOption::VALUE_NONE, 'Display deprecated options in form types'),
- new InputOption('format', null, InputOption::VALUE_REQUIRED, 'The output format (txt or json)', 'txt'),
- ])
- ->setDescription('Display form type information')
- ->setHelp(<<<'EOF'
- The <info>%command.name%</info> command displays information about form types.
- <info>php %command.full_name%</info>
- The command lists all built-in types, services types, type extensions and
- guessers currently available.
- <info>php %command.full_name% Symfony\Component\Form\Extension\Core\Type\ChoiceType</info>
- <info>php %command.full_name% ChoiceType</info>
- The command lists all defined options that contains the given form type,
- as well as their parents and type extensions.
- <info>php %command.full_name% ChoiceType choice_value</info>
- Use the <info>--show-deprecated</info> option to display form types with
- deprecated options or the deprecated options of the given form type:
- <info>php %command.full_name% --show-deprecated</info>
- <info>php %command.full_name% ChoiceType --show-deprecated</info>
- The command displays the definition of the given option name.
- <info>php %command.full_name% --format=json</info>
- The command lists everything in a machine readable json format.
- EOF
- )
- ;
- }
- /**
- * {@inheritdoc}
- */
- protected function execute(InputInterface $input, OutputInterface $output)
- {
- $io = new SymfonyStyle($input, $output);
- if (null === $class = $input->getArgument('class')) {
- $object = null;
- $options['core_types'] = $this->getCoreTypes();
- $options['service_types'] = array_values(array_diff($this->types, $options['core_types']));
- if ($input->getOption('show-deprecated')) {
- $options['core_types'] = $this->filterTypesByDeprecated($options['core_types']);
- $options['service_types'] = $this->filterTypesByDeprecated($options['service_types']);
- }
- $options['extensions'] = $this->extensions;
- $options['guessers'] = $this->guessers;
- foreach ($options as $k => $list) {
- sort($options[$k]);
- }
- } else {
- if (!class_exists($class) || !is_subclass_of($class, FormTypeInterface::class)) {
- $class = $this->getFqcnTypeClass($input, $io, $class);
- }
- $resolvedType = $this->formRegistry->getType($class);
- if ($option = $input->getArgument('option')) {
- $object = $resolvedType->getOptionsResolver();
- if (!$object->isDefined($option)) {
- $message = sprintf('Option "%s" is not defined in "%s".', $option, \get_class($resolvedType->getInnerType()));
- if ($alternatives = $this->findAlternatives($option, $object->getDefinedOptions())) {
- if (1 === \count($alternatives)) {
- $message .= "\n\nDid you mean this?\n ";
- } else {
- $message .= "\n\nDid you mean one of these?\n ";
- }
- $message .= implode("\n ", $alternatives);
- }
- throw new InvalidArgumentException($message);
- }
- $options['type'] = $resolvedType->getInnerType();
- $options['option'] = $option;
- } else {
- $object = $resolvedType;
- }
- }
- $helper = new DescriptorHelper($this->fileLinkFormatter);
- $options['format'] = $input->getOption('format');
- $options['show_deprecated'] = $input->getOption('show-deprecated');
- $helper->describe($io, $object, $options);
- return 0;
- }
- private function getFqcnTypeClass(InputInterface $input, SymfonyStyle $io, string $shortClassName): string
- {
- $classes = [];
- sort($this->namespaces);
- foreach ($this->namespaces as $namespace) {
- if (class_exists($fqcn = $namespace.'\\'.$shortClassName)) {
- $classes[] = $fqcn;
- } elseif (class_exists($fqcn = $namespace.'\\'.ucfirst($shortClassName))) {
- $classes[] = $fqcn;
- } elseif (class_exists($fqcn = $namespace.'\\'.ucfirst($shortClassName).'Type')) {
- $classes[] = $fqcn;
- } elseif ('type' === substr($shortClassName, -4) && class_exists($fqcn = $namespace.'\\'.ucfirst(substr($shortClassName, 0, -4).'Type'))) {
- $classes[] = $fqcn;
- }
- }
- if (0 === $count = \count($classes)) {
- $message = sprintf("Could not find type \"%s\" into the following namespaces:\n %s", $shortClassName, implode("\n ", $this->namespaces));
- $allTypes = array_merge($this->getCoreTypes(), $this->types);
- if ($alternatives = $this->findAlternatives($shortClassName, $allTypes)) {
- if (1 === \count($alternatives)) {
- $message .= "\n\nDid you mean this?\n ";
- } else {
- $message .= "\n\nDid you mean one of these?\n ";
- }
- $message .= implode("\n ", $alternatives);
- }
- throw new InvalidArgumentException($message);
- }
- if (1 === $count) {
- return $classes[0];
- }
- if (!$input->isInteractive()) {
- throw new InvalidArgumentException(sprintf("The type \"%s\" is ambiguous.\n\nDid you mean one of these?\n %s.", $shortClassName, implode("\n ", $classes)));
- }
- return $io->choice(sprintf("The type \"%s\" is ambiguous.\n\nSelect one of the following form types to display its information:", $shortClassName), $classes, $classes[0]);
- }
- private function getCoreTypes(): array
- {
- $coreExtension = new CoreExtension();
- $loadTypesRefMethod = (new \ReflectionObject($coreExtension))->getMethod('loadTypes');
- $loadTypesRefMethod->setAccessible(true);
- $coreTypes = $loadTypesRefMethod->invoke($coreExtension);
- $coreTypes = array_map(function (FormTypeInterface $type) { return \get_class($type); }, $coreTypes);
- sort($coreTypes);
- return $coreTypes;
- }
- private function filterTypesByDeprecated(array $types): array
- {
- $typesWithDeprecatedOptions = [];
- foreach ($types as $class) {
- $optionsResolver = $this->formRegistry->getType($class)->getOptionsResolver();
- foreach ($optionsResolver->getDefinedOptions() as $option) {
- if ($optionsResolver->isDeprecated($option)) {
- $typesWithDeprecatedOptions[] = $class;
- break;
- }
- }
- }
- return $typesWithDeprecatedOptions;
- }
- private function findAlternatives(string $name, array $collection): array
- {
- $alternatives = [];
- foreach ($collection as $item) {
- $lev = levenshtein($name, $item);
- if ($lev <= \strlen($name) / 3 || false !== strpos($item, $name)) {
- $alternatives[$item] = isset($alternatives[$item]) ? $alternatives[$item] - $lev : $lev;
- }
- }
- $threshold = 1e3;
- $alternatives = array_filter($alternatives, function ($lev) use ($threshold) { return $lev < 2 * $threshold; });
- ksort($alternatives, \SORT_NATURAL | \SORT_FLAG_CASE);
- return array_keys($alternatives);
- }
- }
|