LoggingTranslator.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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;
  11. use Psr\Log\LoggerInterface;
  12. use Symfony\Component\Translation\Exception\InvalidArgumentException;
  13. use Symfony\Component\Translation\TranslatorInterface as LegacyTranslatorInterface;
  14. use Symfony\Contracts\Translation\LocaleAwareInterface;
  15. use Symfony\Contracts\Translation\TranslatorInterface;
  16. /**
  17. * @author Abdellatif Ait boudad <a.aitboudad@gmail.com>
  18. */
  19. class LoggingTranslator implements TranslatorInterface, LegacyTranslatorInterface, TranslatorBagInterface
  20. {
  21. /**
  22. * @var TranslatorInterface|TranslatorBagInterface
  23. */
  24. private $translator;
  25. private $logger;
  26. /**
  27. * @param TranslatorInterface $translator The translator must implement TranslatorBagInterface
  28. */
  29. public function __construct($translator, LoggerInterface $logger)
  30. {
  31. if (!$translator instanceof LegacyTranslatorInterface && !$translator instanceof TranslatorInterface) {
  32. throw new \TypeError(sprintf('Argument 1 passed to "%s()" must be an instance of "%s", "%s" given.', __METHOD__, TranslatorInterface::class, \is_object($translator) ? \get_class($translator) : \gettype($translator)));
  33. }
  34. if (!$translator instanceof TranslatorBagInterface || !$translator instanceof LocaleAwareInterface) {
  35. throw new InvalidArgumentException(sprintf('The Translator "%s" must implement TranslatorInterface, TranslatorBagInterface and LocaleAwareInterface.', \get_class($translator)));
  36. }
  37. $this->translator = $translator;
  38. $this->logger = $logger;
  39. }
  40. /**
  41. * {@inheritdoc}
  42. */
  43. public function trans($id, array $parameters = [], $domain = null, $locale = null)
  44. {
  45. $trans = $this->translator->trans($id, $parameters, $domain, $locale);
  46. $this->log($id, $domain, $locale);
  47. return $trans;
  48. }
  49. /**
  50. * {@inheritdoc}
  51. *
  52. * @deprecated since Symfony 4.2, use the trans() method instead with a %count% parameter
  53. */
  54. public function transChoice($id, $number, array $parameters = [], $domain = null, $locale = null)
  55. {
  56. @trigger_error(sprintf('The "%s()" method is deprecated since Symfony 4.2, use the trans() one instead with a "%%count%%" parameter.', __METHOD__), \E_USER_DEPRECATED);
  57. if ($this->translator instanceof TranslatorInterface) {
  58. $trans = $this->translator->trans($id, ['%count%' => $number] + $parameters, $domain, $locale);
  59. } else {
  60. $trans = $this->translator->transChoice($id, $number, $parameters, $domain, $locale);
  61. }
  62. $this->log($id, $domain, $locale);
  63. return $trans;
  64. }
  65. /**
  66. * {@inheritdoc}
  67. */
  68. public function setLocale($locale)
  69. {
  70. $prev = $this->translator->getLocale();
  71. $this->translator->setLocale($locale);
  72. if ($prev === $locale) {
  73. return;
  74. }
  75. $this->logger->debug(sprintf('The locale of the translator has changed from "%s" to "%s".', $prev, $locale));
  76. }
  77. /**
  78. * {@inheritdoc}
  79. */
  80. public function getLocale()
  81. {
  82. return $this->translator->getLocale();
  83. }
  84. /**
  85. * {@inheritdoc}
  86. */
  87. public function getCatalogue($locale = null)
  88. {
  89. return $this->translator->getCatalogue($locale);
  90. }
  91. /**
  92. * Gets the fallback locales.
  93. *
  94. * @return array The fallback locales
  95. */
  96. public function getFallbackLocales()
  97. {
  98. if ($this->translator instanceof Translator || method_exists($this->translator, 'getFallbackLocales')) {
  99. return $this->translator->getFallbackLocales();
  100. }
  101. return [];
  102. }
  103. /**
  104. * Passes through all unknown calls onto the translator object.
  105. */
  106. public function __call($method, $args)
  107. {
  108. return $this->translator->{$method}(...$args);
  109. }
  110. /**
  111. * Logs for missing translations.
  112. */
  113. private function log(?string $id, ?string $domain, ?string $locale)
  114. {
  115. if (null === $domain) {
  116. $domain = 'messages';
  117. }
  118. $id = (string) $id;
  119. $catalogue = $this->translator->getCatalogue($locale);
  120. if ($catalogue->defines($id, $domain)) {
  121. return;
  122. }
  123. if ($catalogue->has($id, $domain)) {
  124. $this->logger->debug('Translation use fallback catalogue.', ['id' => $id, 'domain' => $domain, 'locale' => $catalogue->getLocale()]);
  125. } else {
  126. $this->logger->warning('Translation not found.', ['id' => $id, 'domain' => $domain, 'locale' => $catalogue->getLocale()]);
  127. }
  128. }
  129. }