JsonDescriptor.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Console\Descriptor;
  11. use Symfony\Component\Console\Application;
  12. use Symfony\Component\Console\Command\Command;
  13. use Symfony\Component\Console\Input\InputArgument;
  14. use Symfony\Component\Console\Input\InputDefinition;
  15. use Symfony\Component\Console\Input\InputOption;
  16. /**
  17. * JSON descriptor.
  18. *
  19. * @author Jean-François Simon <contact@jfsimon.fr>
  20. *
  21. * @internal
  22. */
  23. class JsonDescriptor extends Descriptor
  24. {
  25. /**
  26. * {@inheritdoc}
  27. */
  28. protected function describeInputArgument(InputArgument $argument, array $options = [])
  29. {
  30. $this->writeData($this->getInputArgumentData($argument), $options);
  31. }
  32. /**
  33. * {@inheritdoc}
  34. */
  35. protected function describeInputOption(InputOption $option, array $options = [])
  36. {
  37. $this->writeData($this->getInputOptionData($option), $options);
  38. }
  39. /**
  40. * {@inheritdoc}
  41. */
  42. protected function describeInputDefinition(InputDefinition $definition, array $options = [])
  43. {
  44. $this->writeData($this->getInputDefinitionData($definition), $options);
  45. }
  46. /**
  47. * {@inheritdoc}
  48. */
  49. protected function describeCommand(Command $command, array $options = [])
  50. {
  51. $this->writeData($this->getCommandData($command), $options);
  52. }
  53. /**
  54. * {@inheritdoc}
  55. */
  56. protected function describeApplication(Application $application, array $options = [])
  57. {
  58. $describedNamespace = isset($options['namespace']) ? $options['namespace'] : null;
  59. $description = new ApplicationDescription($application, $describedNamespace, true);
  60. $commands = [];
  61. foreach ($description->getCommands() as $command) {
  62. $commands[] = $this->getCommandData($command);
  63. }
  64. $data = [];
  65. if ('UNKNOWN' !== $application->getName()) {
  66. $data['application']['name'] = $application->getName();
  67. if ('UNKNOWN' !== $application->getVersion()) {
  68. $data['application']['version'] = $application->getVersion();
  69. }
  70. }
  71. $data['commands'] = $commands;
  72. if ($describedNamespace) {
  73. $data['namespace'] = $describedNamespace;
  74. } else {
  75. $data['namespaces'] = array_values($description->getNamespaces());
  76. }
  77. $this->writeData($data, $options);
  78. }
  79. /**
  80. * Writes data as json.
  81. *
  82. * @return array|string
  83. */
  84. private function writeData(array $data, array $options)
  85. {
  86. $flags = isset($options['json_encoding']) ? $options['json_encoding'] : 0;
  87. $this->write(json_encode($data, $flags));
  88. }
  89. /**
  90. * @return array
  91. */
  92. private function getInputArgumentData(InputArgument $argument)
  93. {
  94. return [
  95. 'name' => $argument->getName(),
  96. 'is_required' => $argument->isRequired(),
  97. 'is_array' => $argument->isArray(),
  98. 'description' => preg_replace('/\s*[\r\n]\s*/', ' ', $argument->getDescription()),
  99. 'default' => INF === $argument->getDefault() ? 'INF' : $argument->getDefault(),
  100. ];
  101. }
  102. /**
  103. * @return array
  104. */
  105. private function getInputOptionData(InputOption $option)
  106. {
  107. return [
  108. 'name' => '--'.$option->getName(),
  109. 'shortcut' => $option->getShortcut() ? '-'.str_replace('|', '|-', $option->getShortcut()) : '',
  110. 'accept_value' => $option->acceptValue(),
  111. 'is_value_required' => $option->isValueRequired(),
  112. 'is_multiple' => $option->isArray(),
  113. 'description' => preg_replace('/\s*[\r\n]\s*/', ' ', $option->getDescription()),
  114. 'default' => INF === $option->getDefault() ? 'INF' : $option->getDefault(),
  115. ];
  116. }
  117. /**
  118. * @return array
  119. */
  120. private function getInputDefinitionData(InputDefinition $definition)
  121. {
  122. $inputArguments = [];
  123. foreach ($definition->getArguments() as $name => $argument) {
  124. $inputArguments[$name] = $this->getInputArgumentData($argument);
  125. }
  126. $inputOptions = [];
  127. foreach ($definition->getOptions() as $name => $option) {
  128. $inputOptions[$name] = $this->getInputOptionData($option);
  129. }
  130. return ['arguments' => $inputArguments, 'options' => $inputOptions];
  131. }
  132. /**
  133. * @return array
  134. */
  135. private function getCommandData(Command $command)
  136. {
  137. $command->getSynopsis();
  138. $command->mergeApplicationDefinition(false);
  139. return [
  140. 'name' => $command->getName(),
  141. 'usage' => array_merge([$command->getSynopsis()], $command->getUsages(), $command->getAliases()),
  142. 'description' => $command->getDescription(),
  143. 'help' => $command->getProcessedHelp(),
  144. 'definition' => $this->getInputDefinitionData($command->getNativeDefinition()),
  145. 'hidden' => $command->isHidden(),
  146. ];
  147. }
  148. }