JsonDescriptor.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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 = array())
  29. {
  30. $this->writeData($this->getInputArgumentData($argument), $options);
  31. }
  32. /**
  33. * {@inheritdoc}
  34. */
  35. protected function describeInputOption(InputOption $option, array $options = array())
  36. {
  37. $this->writeData($this->getInputOptionData($option), $options);
  38. }
  39. /**
  40. * {@inheritdoc}
  41. */
  42. protected function describeInputDefinition(InputDefinition $definition, array $options = array())
  43. {
  44. $this->writeData($this->getInputDefinitionData($definition), $options);
  45. }
  46. /**
  47. * {@inheritdoc}
  48. */
  49. protected function describeCommand(Command $command, array $options = array())
  50. {
  51. $this->writeData($this->getCommandData($command), $options);
  52. }
  53. /**
  54. * {@inheritdoc}
  55. */
  56. protected function describeApplication(Application $application, array $options = array())
  57. {
  58. $describedNamespace = isset($options['namespace']) ? $options['namespace'] : null;
  59. $description = new ApplicationDescription($application, $describedNamespace);
  60. $commands = array();
  61. foreach ($description->getCommands() as $command) {
  62. $commands[] = $this->getCommandData($command);
  63. }
  64. $data = $describedNamespace
  65. ? array('commands' => $commands, 'namespace' => $describedNamespace)
  66. : array('commands' => $commands, 'namespaces' => array_values($description->getNamespaces()));
  67. $this->writeData($data, $options);
  68. }
  69. /**
  70. * Writes data as json.
  71. *
  72. * @return array|string
  73. */
  74. private function writeData(array $data, array $options)
  75. {
  76. $this->write(json_encode($data, isset($options['json_encoding']) ? $options['json_encoding'] : 0));
  77. }
  78. /**
  79. * @return array
  80. */
  81. private function getInputArgumentData(InputArgument $argument)
  82. {
  83. return array(
  84. 'name' => $argument->getName(),
  85. 'is_required' => $argument->isRequired(),
  86. 'is_array' => $argument->isArray(),
  87. 'description' => preg_replace('/\s*[\r\n]\s*/', ' ', $argument->getDescription()),
  88. 'default' => INF === $argument->getDefault() ? 'INF' : $argument->getDefault(),
  89. );
  90. }
  91. /**
  92. * @return array
  93. */
  94. private function getInputOptionData(InputOption $option)
  95. {
  96. return array(
  97. 'name' => '--'.$option->getName(),
  98. 'shortcut' => $option->getShortcut() ? '-'.str_replace('|', '|-', $option->getShortcut()) : '',
  99. 'accept_value' => $option->acceptValue(),
  100. 'is_value_required' => $option->isValueRequired(),
  101. 'is_multiple' => $option->isArray(),
  102. 'description' => preg_replace('/\s*[\r\n]\s*/', ' ', $option->getDescription()),
  103. 'default' => INF === $option->getDefault() ? 'INF' : $option->getDefault(),
  104. );
  105. }
  106. /**
  107. * @return array
  108. */
  109. private function getInputDefinitionData(InputDefinition $definition)
  110. {
  111. $inputArguments = array();
  112. foreach ($definition->getArguments() as $name => $argument) {
  113. $inputArguments[$name] = $this->getInputArgumentData($argument);
  114. }
  115. $inputOptions = array();
  116. foreach ($definition->getOptions() as $name => $option) {
  117. $inputOptions[$name] = $this->getInputOptionData($option);
  118. }
  119. return array('arguments' => $inputArguments, 'options' => $inputOptions);
  120. }
  121. /**
  122. * @return array
  123. */
  124. private function getCommandData(Command $command)
  125. {
  126. $command->getSynopsis();
  127. $command->mergeApplicationDefinition(false);
  128. return array(
  129. 'name' => $command->getName(),
  130. 'usage' => array_merge(array($command->getSynopsis()), $command->getUsages(), $command->getAliases()),
  131. 'description' => $command->getDescription(),
  132. 'help' => $command->getProcessedHelp(),
  133. 'definition' => $this->getInputDefinitionData($command->getNativeDefinition()),
  134. );
  135. }
  136. }