LoggingTranslator.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. * @param LoggerInterface $logger
  29. */
  30. public function __construct($translator, LoggerInterface $logger)
  31. {
  32. if (!$translator instanceof LegacyTranslatorInterface && !$translator instanceof TranslatorInterface) {
  33. 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)));
  34. }
  35. if (!$translator instanceof TranslatorBagInterface || !$translator instanceof LocaleAwareInterface) {
  36. throw new InvalidArgumentException(sprintf('The Translator "%s" must implement TranslatorInterface, TranslatorBagInterface and LocaleAwareInterface.', \get_class($translator)));
  37. }
  38. $this->translator = $translator;
  39. $this->logger = $logger;
  40. }
  41. /**
  42. * {@inheritdoc}
  43. */
  44. public function trans($id, array $parameters = [], $domain = null, $locale = null)
  45. {
  46. $trans = $this->translator->trans($id, $parameters, $domain, $locale);
  47. $this->log($id, $domain, $locale);
  48. return $trans;
  49. }
  50. /**
  51. * {@inheritdoc}
  52. *
  53. * @deprecated since Symfony 4.2, use the trans() method instead with a %count% parameter
  54. */
  55. public function transChoice($id, $number, array $parameters = [], $domain = null, $locale = null)
  56. {
  57. @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);
  58. if ($this->translator instanceof TranslatorInterface) {
  59. $trans = $this->translator->trans($id, ['%count%' => $number] + $parameters, $domain, $locale);
  60. } else {
  61. $trans = $this->translator->transChoice($id, $number, $parameters, $domain, $locale);
  62. }
  63. $this->log($id, $domain, $locale);
  64. return $trans;
  65. }
  66. /**
  67. * {@inheritdoc}
  68. */
  69. public function setLocale($locale)
  70. {
  71. $this->translator->setLocale($locale);
  72. }
  73. /**
  74. * {@inheritdoc}
  75. */
  76. public function getLocale()
  77. {
  78. return $this->translator->getLocale();
  79. }
  80. /**
  81. * {@inheritdoc}
  82. */
  83. public function getCatalogue($locale = null)
  84. {
  85. return $this->translator->getCatalogue($locale);
  86. }
  87. /**
  88. * Gets the fallback locales.
  89. *
  90. * @return array The fallback locales
  91. */
  92. public function getFallbackLocales()
  93. {
  94. if ($this->translator instanceof Translator || method_exists($this->translator, 'getFallbackLocales')) {
  95. return $this->translator->getFallbackLocales();
  96. }
  97. return [];
  98. }
  99. /**
  100. * Passes through all unknown calls onto the translator object.
  101. */
  102. public function __call($method, $args)
  103. {
  104. return $this->translator->{$method}(...$args);
  105. }
  106. /**
  107. * Logs for missing translations.
  108. *
  109. * @param string $id
  110. * @param string|null $domain
  111. * @param string|null $locale
  112. */
  113. private function log($id, $domain, $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. }