TranslatorPathsPass.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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\Translation\DependencyInjection;
  11. use Symfony\Component\DependencyInjection\Compiler\AbstractRecursivePass;
  12. use Symfony\Component\DependencyInjection\ContainerBuilder;
  13. use Symfony\Component\DependencyInjection\Definition;
  14. use Symfony\Component\DependencyInjection\Reference;
  15. use Symfony\Component\DependencyInjection\ServiceLocator;
  16. use Symfony\Component\HttpKernel\Controller\ArgumentResolver\TraceableValueResolver;
  17. /**
  18. * @author Yonel Ceruto <yonelceruto@gmail.com>
  19. */
  20. class TranslatorPathsPass extends AbstractRecursivePass
  21. {
  22. private $translatorServiceId;
  23. private $debugCommandServiceId;
  24. private $updateCommandServiceId;
  25. private $resolverServiceId;
  26. private $level = 0;
  27. /**
  28. * @var array<string, bool>
  29. */
  30. private $paths = [];
  31. /**
  32. * @var array<int, Definition>
  33. */
  34. private $definitions = [];
  35. /**
  36. * @var array<string, array<string, bool>>
  37. */
  38. private $controllers = [];
  39. public function __construct(string $translatorServiceId = 'translator', string $debugCommandServiceId = 'console.command.translation_debug', string $updateCommandServiceId = 'console.command.translation_extract', string $resolverServiceId = 'argument_resolver.service')
  40. {
  41. if (0 < \func_num_args()) {
  42. trigger_deprecation('symfony/translation', '5.3', 'Configuring "%s" is deprecated.', __CLASS__);
  43. }
  44. $this->translatorServiceId = $translatorServiceId;
  45. $this->debugCommandServiceId = $debugCommandServiceId;
  46. $this->updateCommandServiceId = $updateCommandServiceId;
  47. $this->resolverServiceId = $resolverServiceId;
  48. }
  49. public function process(ContainerBuilder $container)
  50. {
  51. if (!$container->hasDefinition($this->translatorServiceId)) {
  52. return;
  53. }
  54. foreach ($this->findControllerArguments($container) as $controller => $argument) {
  55. $id = substr($controller, 0, strpos($controller, ':') ?: \strlen($controller));
  56. if ($container->hasDefinition($id)) {
  57. [$locatorRef] = $argument->getValues();
  58. $this->controllers[(string) $locatorRef][$container->getDefinition($id)->getClass()] = true;
  59. }
  60. }
  61. try {
  62. parent::process($container);
  63. $paths = [];
  64. foreach ($this->paths as $class => $_) {
  65. if (($r = $container->getReflectionClass($class)) && !$r->isInterface()) {
  66. $paths[] = $r->getFileName();
  67. foreach ($r->getTraits() as $trait) {
  68. $paths[] = $trait->getFileName();
  69. }
  70. }
  71. }
  72. if ($paths) {
  73. if ($container->hasDefinition($this->debugCommandServiceId)) {
  74. $definition = $container->getDefinition($this->debugCommandServiceId);
  75. $definition->replaceArgument(6, array_merge($definition->getArgument(6), $paths));
  76. }
  77. if ($container->hasDefinition($this->updateCommandServiceId)) {
  78. $definition = $container->getDefinition($this->updateCommandServiceId);
  79. $definition->replaceArgument(7, array_merge($definition->getArgument(7), $paths));
  80. }
  81. }
  82. } finally {
  83. $this->level = 0;
  84. $this->paths = [];
  85. $this->definitions = [];
  86. }
  87. }
  88. protected function processValue($value, bool $isRoot = false)
  89. {
  90. if ($value instanceof Reference) {
  91. if ((string) $value === $this->translatorServiceId) {
  92. for ($i = $this->level - 1; $i >= 0; --$i) {
  93. $class = $this->definitions[$i]->getClass();
  94. if (ServiceLocator::class === $class) {
  95. if (!isset($this->controllers[$this->currentId])) {
  96. continue;
  97. }
  98. foreach ($this->controllers[$this->currentId] as $class => $_) {
  99. $this->paths[$class] = true;
  100. }
  101. } else {
  102. $this->paths[$class] = true;
  103. }
  104. break;
  105. }
  106. }
  107. return $value;
  108. }
  109. if ($value instanceof Definition) {
  110. $this->definitions[$this->level++] = $value;
  111. $value = parent::processValue($value, $isRoot);
  112. unset($this->definitions[--$this->level]);
  113. return $value;
  114. }
  115. return parent::processValue($value, $isRoot);
  116. }
  117. private function findControllerArguments(ContainerBuilder $container): array
  118. {
  119. if (!$container->has($this->resolverServiceId)) {
  120. return [];
  121. }
  122. $resolverDef = $container->findDefinition($this->resolverServiceId);
  123. if (TraceableValueResolver::class === $resolverDef->getClass()) {
  124. $resolverDef = $container->getDefinition($resolverDef->getArgument(0));
  125. }
  126. $argument = $resolverDef->getArgument(0);
  127. if ($argument instanceof Reference) {
  128. $argument = $container->getDefinition($argument);
  129. }
  130. return $argument->getArgument(0);
  131. }
  132. }